summaryrefslogtreecommitdiffstats
path: root/libavcodec/h264_mp4toannexb_bsf.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2015-08-21 02:49:21 +0200
committerMichael Niedermayer <michael@niedermayer.cc>2015-08-21 03:37:32 +0200
commit2bb54b82b5094fd906aa28c0443be08c95662a31 (patch)
tree4271e2c88142829741d0b8a6297b5b8b9bb328d8 /libavcodec/h264_mp4toannexb_bsf.c
parentc8890941d63df786bb7a8cab92677416499bb7c3 (diff)
downloadffmpeg-streaming-2bb54b82b5094fd906aa28c0443be08c95662a31.zip
ffmpeg-streaming-2bb54b82b5094fd906aa28c0443be08c95662a31.tar.gz
avcodec/h264_mp4toannexb_bsf: Reorder operations in nal_size check
Fixes Ticket4778 Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavcodec/h264_mp4toannexb_bsf.c')
-rw-r--r--libavcodec/h264_mp4toannexb_bsf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h264_mp4toannexb_bsf.c b/libavcodec/h264_mp4toannexb_bsf.c
index 1693989..a5da84a 100644
--- a/libavcodec/h264_mp4toannexb_bsf.c
+++ b/libavcodec/h264_mp4toannexb_bsf.c
@@ -201,7 +201,7 @@ static int h264_mp4toannexb_filter(AVBitStreamFilterContext *bsfc,
buf += ctx->length_size;
unit_type = *buf & 0x1f;
- if (buf + nal_size > buf_end || nal_size < 0)
+ if (nal_size > buf_end - buf || nal_size < 0)
goto fail;
if (unit_type == 7)
OpenPOWER on IntegriCloud