diff options
author | Rostislav Pehlivanov <atomnuker@gmail.com> | 2015-09-01 06:20:24 +0100 |
---|---|---|
committer | Rostislav Pehlivanov <atomnuker@gmail.com> | 2015-09-01 06:20:24 +0100 |
commit | 5ed5ca706fcef919960d2342f5a97f1b38153c6b (patch) | |
tree | 68f02c289c959f978a9a0515850391190e01ed6c | |
parent | 63fb5a6aefb4223334001fd2c0d82a5e22e3b528 (diff) | |
download | ffmpeg-5ed5ca706fcef919960d2342f5a97f1b38153c6b.tar.gz |
aacenc: populate tns_max_bands
Needed for the following commits.
Signed-off-by: Rostislav Pehlivanov <atomnuker@gmail.com>
-rw-r--r-- | libavcodec/aacenc.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavcodec/aacenc.c b/libavcodec/aacenc.c index a32f0d415e..62dba34ee4 100644 --- a/libavcodec/aacenc.c +++ b/libavcodec/aacenc.c @@ -525,6 +525,9 @@ static int aac_encode_frame(AVCodecContext *avctx, AVPacket *avpkt, ics->swb_offset = wi[ch].window_type[0] == EIGHT_SHORT_SEQUENCE ? ff_swb_offset_128 [s->samplerate_index]: ff_swb_offset_1024[s->samplerate_index]; + ics->tns_max_bands = wi[ch].window_type[0] == EIGHT_SHORT_SEQUENCE ? + ff_tns_max_bands_128 [s->samplerate_index]: + ff_tns_max_bands_1024[s->samplerate_index]; clip_avoidance_factor = 0.0f; for (w = 0; w < ics->num_windows; w++) ics->group_len[w] = wi[ch].grouping[w]; |