diff options
author | Paul B Mahol <onemda@gmail.com> | 2016-04-20 22:45:05 +0200 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2016-04-27 04:40:12 +0200 |
commit | e80a4ce69f0eca53f7ef2b003bfa468faf6632af (patch) | |
tree | 18a58763351861ae1dc0d051a2db37f5fa62a22b | |
parent | edc61e3abad08ac6839a4b94dc80a063f29f347e (diff) | |
download | ffmpeg-e80a4ce69f0eca53f7ef2b003bfa468faf6632af.tar.gz |
avcodec/takdec: add code that got somehow lost in process of REing
Signed-off-by: Paul B Mahol <onemda@gmail.com>
(cherry picked from commit 38797a8033d061ade58b30b8ac86da222fe42a84)
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-rw-r--r-- | libavcodec/takdec.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/takdec.c b/libavcodec/takdec.c index c83fb66c56..bd5f5cb140 100644 --- a/libavcodec/takdec.c +++ b/libavcodec/takdec.c @@ -224,6 +224,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; |