[FFmpeg-cvslog] avcodec/h264_cabac: Tighten allowed coeff_abs range
Michael Niedermayer
git at videolan.org
Thu Feb 15 15:06:43 EET 2018
ffmpeg | branch: master | Michael Niedermayer <michael at niedermayer.cc> | Wed Feb 14 00:32:30 2018 +0100| [f26a63c4ee1bdbe21d7ab462cd66f8ba20b14244] | committer: Michael Niedermayer
avcodec/h264_cabac: Tighten allowed coeff_abs range
Fixes: integer overflows
Reported-by: "Xiaohan Wang (王消寒)" <xhwang at chromium.org>
Based on limits in "8.5 Transform coefficient decoding process and picture
construction process prior to deblocking filter process"
Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=f26a63c4ee1bdbe21d7ab462cd66f8ba20b14244
---
libavcodec/h264_cabac.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavcodec/h264_cabac.c b/libavcodec/h264_cabac.c
index ec5fc74b9b..815149a501 100644
--- a/libavcodec/h264_cabac.c
+++ b/libavcodec/h264_cabac.c
@@ -1735,7 +1735,7 @@ decode_cabac_residual_internal(const H264Context *h, H264SliceContext *sl,
\
if( coeff_abs >= 15 ) { \
int j = 0; \
- while (get_cabac_bypass(CC) && j < 30) { \
+ while (get_cabac_bypass(CC) && j < 16+7) { \
j++; \
} \
\
More information about the ffmpeg-cvslog
mailing list