diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-01-29 04:39:37 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-02-02 01:12:46 +0100 |
commit | 006508032057824a371bec4e629b66f8cbb26c47 (patch) | |
tree | d7602d8cf26f6edac9b891109965ac692c6ba7cf /libavcodec/proresdec2.c | |
parent | e39487efe311921c9aa04b5d53bcf3de2260a523 (diff) | |
download | ffmpeg-006508032057824a371bec4e629b66f8cbb26c47.tar.gz |
proresdec: Fix read via negative index in a global array.
Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/proresdec2.c')
-rw-r--r-- | libavcodec/proresdec2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/proresdec2.c b/libavcodec/proresdec2.c index fe4cfd09b8..9f801e447a 100644 --- a/libavcodec/proresdec2.c +++ b/libavcodec/proresdec2.c @@ -302,7 +302,7 @@ static av_always_inline void decode_dc_coeffs(GetBitContext *gb, DCTELEM *out, code = 5; sign = 0; for (i = 1; i < blocks_per_slice; i++, out += 64) { - DECODE_CODEWORD(code, dc_codebook[FFMIN(code, 6)]); + DECODE_CODEWORD(code, dc_codebook[FFMIN(code, 6U)]); if(code) sign ^= -(code & 1); else sign = 0; prev_dc += (((code + 1) >> 1) ^ sign) - sign; |