1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-07-28 23:08:22 +02:00

avcodec/takdec: add code that got somehow lost in process of REing

Signed-off-by: Paul B Mahol <onemda@gmail.com>
This commit is contained in:
Paul B Mahol 2016-04-20 22:45:05 +02:00
parent e428f3b30c
commit 38797a8033

View File

@ -236,6 +236,7 @@ static void decode_lpc(int32_t *coeffs, int mode, int length)
int a3 = coeffs[2];
int a4 = a3 + a1;
int a5 = a4 + a2;
coeffs[2] = a5;
coeffs += 3;
for (i = 0; i < length - 3; i++) {
a3 += *coeffs;