[FFmpeg-devel] [PATCH v2 2/3] lavc/hevc_mp4toannexb: Simplify error check
Andriy Gelman
andriy.gelman at gmail.com
Wed Dec 4 02:04:10 EET 2019
From: Andriy Gelman <andriy.gelman at gmail.com>
Signed-off-by: Andriy Gelman <andriy.gelman at gmail.com>
---
libavcodec/hevc_mp4toannexb_bsf.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/libavcodec/hevc_mp4toannexb_bsf.c b/libavcodec/hevc_mp4toannexb_bsf.c
index bf4c25b3b7b..faf516634b2 100644
--- a/libavcodec/hevc_mp4toannexb_bsf.c
+++ b/libavcodec/hevc_mp4toannexb_bsf.c
@@ -152,8 +152,7 @@ static int hevc_mp4toannexb_filter(AVBSFContext *ctx, AVPacket *out)
extra_size = add_extradata * ctx->par_out->extradata_size;
got_irap |= is_irap;
- if (INT_MAX < 4 + (uint64_t)nalu_size ||
- INT_MAX - 4 < extra_size + (uint64_t)nalu_size) {
+ if (INT_MAX < 4 + (uint64_t)nalu_size + extra_size) {
ret = AVERROR_INVALIDDATA;
goto fail;
}
--
2.24.0
More information about the ffmpeg-devel
mailing list