Module: libav Branch: release/0.8 Commit: c5f9c272e9df0e226503cfc8029308a64d72aae4
Author: Thilo Borgmann <[email protected]> Committer: Reinhard Tartler <[email protected]> Date: Sun Mar 11 16:56:23 2012 +0100 alsdec: Fix out of ltp_gain_values read. Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <[email protected]> Signed-off-by: Justin Ruggles <[email protected]> (cherry picked from commit 97f0efbfb86d24f081b2caa39f6249e05c95c2ef) Signed-off-by: Reinhard Tartler <[email protected]> --- libavcodec/alsdec.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/libavcodec/alsdec.c b/libavcodec/alsdec.c index eec6a16..4c8e5a9 100644 --- a/libavcodec/alsdec.c +++ b/libavcodec/alsdec.c @@ -741,7 +741,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]; _______________________________________________ libav-commits mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-commits
