diff options
author | Alex Converse <alex.converse@gmail.com> | 2017-02-09 08:28:30 -0800 |
---|---|---|
committer | Alex Converse <alex.converse@gmail.com> | 2017-02-13 09:31:13 -0800 |
commit | 3bb24fc344f0e8448b3c6826193e8ee43f7d984d (patch) | |
tree | 041b4bb3765ff08cd19bb360478362cc2772a023 /libavcodec/aacsbr.h | |
parent | 20ea8bf9390b3a68e43bbe666154aa8b5150cad3 (diff) | |
download | ffmpeg-3bb24fc344f0e8448b3c6826193e8ee43f7d984d.tar.gz |
aacsbr: Associate SBR data with AAC elements on init
Quiets some log spam on pure upsampling mode.
Fixes ticket 5163.
Diffstat (limited to 'libavcodec/aacsbr.h')
-rw-r--r-- | libavcodec/aacsbr.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/aacsbr.h b/libavcodec/aacsbr.h index 88c4d8a916..dd8b66c7bb 100644 --- a/libavcodec/aacsbr.h +++ b/libavcodec/aacsbr.h @@ -81,7 +81,7 @@ static const int8_t vlc_sbr_lav[10] = /** Initialize SBR. */ void AAC_RENAME(ff_aac_sbr_init)(void); /** Initialize one SBR context. */ -void AAC_RENAME(ff_aac_sbr_ctx_init)(AACContext *ac, SpectralBandReplication *sbr); +void AAC_RENAME(ff_aac_sbr_ctx_init)(AACContext *ac, SpectralBandReplication *sbr, int id_aac); /** Close one SBR context. */ void AAC_RENAME(ff_aac_sbr_ctx_close)(SpectralBandReplication *sbr); /** Decode one SBR element. */ |