diff options
author | Thilo Borgmann <thilo.borgmann@googlemail.com> | 2012-03-11 16:56:23 +0100 |
---|---|---|
committer | Reinhard Tartler <siretart@tauware.de> | 2013-01-04 07:43:38 +0100 |
commit | 1b48a426a96f361ee659f2054a48da312f69fc8a (patch) | |
tree | 36f766c03540ae1f9cd8864752df6f538311f1ee | |
parent | e3e369f6962cb73ead3ca5d49a5cc313eb85e5fc (diff) | |
download | ffmpeg-1b48a426a96f361ee659f2054a48da312f69fc8a.tar.gz |
alsdec: Fix out of ltp_gain_values read.
Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Signed-off-by: Justin Ruggles <justin.ruggles@gmail.com>
(cherry picked from commit 97f0efbfb86d24f081b2caa39f6249e05c95c2ef)
Signed-off-by: Reinhard Tartler <siretart@tauware.de>
-rw-r--r-- | libavcodec/alsdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/alsdec.c b/libavcodec/alsdec.c index 4f4176ecee..25a9c5433e 100644 --- a/libavcodec/alsdec.c +++ b/libavcodec/alsdec.c @@ -740,7 +740,7 @@ static int read_var_block_data(ALSDecContext *ctx, ALSBlockData *bd) bd->ltp_gain[0] = decode_rice(gb, 1) << 3; bd->ltp_gain[1] = decode_rice(gb, 2) << 3; - r = get_unary(gb, 0, 4); + r = get_unary(gb, 0, 3); c = get_bits(gb, 2); bd->ltp_gain[2] = ltp_gain_values[r][c]; |