Commit 780dba01 authored by Rostislav Pehlivanov's avatar Rostislav Pehlivanov

aacenc_ltp: fix assertion

A value of 2048 will overflow 11 bits.
parent 92a26261
......@@ -101,7 +101,7 @@ void ff_aac_update_ltp(AACEncContext *s, SingleChannelElement *sce)
lag = i;
}
}
lag = av_clip(lag, 0, 2048); /* 11 bits => 2^11 = 2048 */
lag = av_clip(lag, 0, 2047); /* 11 bits => 2^11 = 0->2047 */
if (!lag) {
sce->ics.ltp.lag = lag;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment