mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-12-11 17:30:00 +01:00
aacenc: correctly zero prediction_used array
An oversight, probably because of copy-pasting the TNS line.
This commit is contained in:
@@ -659,7 +659,7 @@ static int aac_encode_frame(AVCodecContext *avctx, AVPacket *avpkt,
|
|||||||
sce = &cpe->ch[ch];
|
sce = &cpe->ch[ch];
|
||||||
coeffs[ch] = sce->coeffs;
|
coeffs[ch] = sce->coeffs;
|
||||||
sce->ics.predictor_present = 0;
|
sce->ics.predictor_present = 0;
|
||||||
memset(&sce->ics.prediction_used, 0, sizeof(sce->ics.prediction_used));
|
memset(sce->ics.prediction_used, 0, sizeof(sce->ics.prediction_used));
|
||||||
memset(&sce->tns, 0, sizeof(TemporalNoiseShaping));
|
memset(&sce->tns, 0, sizeof(TemporalNoiseShaping));
|
||||||
for (w = 0; w < 128; w++)
|
for (w = 0; w < 128; w++)
|
||||||
if (sce->band_type[w] > RESERVED_BT)
|
if (sce->band_type[w] > RESERVED_BT)
|
||||||
|
|||||||
Reference in New Issue
Block a user