Commit 38797a80 authored by Paul B Mahol's avatar Paul B Mahol

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

Signed-off-by: 's avatarPaul B Mahol <onemda@gmail.com>
parent e428f3b3
......@@ -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;
......
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