aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2015-02-24 03:12:22 +0100
committerMichael Niedermayer <michaelni@gmx.at>2015-03-14 14:27:23 +0100
commitc4d250abcaf72f57c2937043dc6bdb502bfb9c69 (patch)
tree5051208ff11bb90c012d40e97ddafc81af1f83fa
parentd125abfa748797e80fa6458e86260f5ddb1ef2cc (diff)
downloadffmpeg-c4d250abcaf72f57c2937043dc6bdb502bfb9c69.tar.gz
avcodec/snowdec: Fix ref value check
Fixes integer overflow and out of array read. Fixes: signal_sigsegv_24169e6_3445_cov_3778346427_snow_chroma_bug.avi Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at> (cherry picked from commit 8f4cbf940212079a34753c7f4d6c6b5a43586d30) Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r--libavcodec/snowdec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/snowdec.c b/libavcodec/snowdec.c
index 79cf5a1853..7651373c2a 100644
--- a/libavcodec/snowdec.c
+++ b/libavcodec/snowdec.c
@@ -153,7 +153,7 @@ static int decode_q_branch(SnowContext *s, int level, int x, int y){
int l = left->color[0];
int cb= left->color[1];
int cr= left->color[2];
- int ref = 0;
+ unsigned ref = 0;
int ref_context= av_log2(2*left->ref) + av_log2(2*top->ref);
int mx_context= av_log2(2*FFABS(left->mx - top->mx)) + 0*av_log2(2*FFABS(tr->mx - top->mx));
int my_context= av_log2(2*FFABS(left->my - top->my)) + 0*av_log2(2*FFABS(tr->my - top->my));