summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2017-02-19 22:40:29 +0100
committerMichael Niedermayer <michael@niedermayer.cc>2017-02-19 22:41:40 +0100
commit258763ad0e1efff82bbe2beb97527d3c19f40932 (patch)
tree1359e66435a5dee0bd4cce031995d479174c714a
parentaa2b75263e17651187b1475551a02aa2f4ff65fe (diff)
avcodec/h264_cabac: runtime error: signed integer overflow: 2147483647 + 14 cannot be represented in type 'int'
Fixes: 614/clusterfuzz-testcase-4931860079575040 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/targets/ffmpeg Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-rw-r--r--libavcodec/h264_cabac.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h264_cabac.c b/libavcodec/h264_cabac.c
index fe83425d13..17a4bdadd6 100644
--- a/libavcodec/h264_cabac.c
+++ b/libavcodec/h264_cabac.c
@@ -1743,7 +1743,7 @@ decode_cabac_residual_internal(const H264Context *h, H264SliceContext *sl,
while( j-- ) { \
coeff_abs += coeff_abs + get_cabac_bypass( CC ); \
} \
- coeff_abs+= 14; \
+ coeff_abs+= 14U; \
} \
\
if( is_dc ) { \