diff --git a/libavcodec/aacenc.c b/libavcodec/aacenc.c index 7015895e95c6f0d856eada28cac6cc70f8def5be..f122fe11acb7eb7002b13e4e760c66697c9a86b1 100644 --- a/libavcodec/aacenc.c +++ b/libavcodec/aacenc.c @@ -529,7 +529,8 @@ static int aac_encode_frame(AVCodecContext *avctx, wi[j].num_windows = 1; wi[j].grouping[0] = 1; } else { - wi[j] = ff_psy_suggest_window(&s->psy, samples2, la, start_ch + j, ics->window_sequence[0]); + wi[j] = ff_psy_suggest_window(&s->psy, samples2, la, start_ch + j, + ics->window_sequence[0]); } ics->window_sequence[1] = ics->window_sequence[0]; ics->window_sequence[0] = wi[j].window_type[0];