summaryrefslogtreecommitdiff
path: root/libavcodec/alsdec.c
diff options
context:
space:
mode:
authorThilo Borgmann <thilo.borgmann@googlemail.com>2012-03-11 16:56:23 +0100
committerMichael Niedermayer <michaelni@gmx.at>2012-03-11 16:56:23 +0100
commit599881b028456ac362b2b1f0d2f1ddd4ed06da76 (patch)
treed2fedad70912a7b55ba2995525373abe8e849d1e /libavcodec/alsdec.c
parentdaeffccd98e97a4ec69026f9ef2d65000596a996 (diff)
alsdec: Fix out of ltp_gain_values read.
Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/alsdec.c')
-rw-r--r--libavcodec/alsdec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/alsdec.c b/libavcodec/alsdec.c
index 0a2768a5b9..63e58ff55a 100644
--- a/libavcodec/alsdec.c
+++ b/libavcodec/alsdec.c
@@ -731,7 +731,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];