[FFmpeg-cvslog] avformat/mxfdec: only probe max run in

Michael Niedermayer git at videolan.org
Sun Sep 25 01:08:38 EEST 2022


ffmpeg | branch: release/5.1 | Michael Niedermayer <michael at niedermayer.cc> | Wed Sep 21 18:23:30 2022 +0200| [a3d59e33d91402325f70b55f4a9c185a3d01e5a6] | committer: Michael Niedermayer

avformat/mxfdec: only probe max run in

Suggested-by: Tomas Härdin <tjoppen at acc.umu.se>
Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
(cherry picked from commit 1182bbb2c3226260ed672920251e3410bde8c6c9)
Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=a3d59e33d91402325f70b55f4a9c185a3d01e5a6
---

 libavformat/mxfdec.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavformat/mxfdec.c b/libavformat/mxfdec.c
index c2535f8e9f..4a31490868 100644
--- a/libavformat/mxfdec.c
+++ b/libavformat/mxfdec.c
@@ -4052,7 +4052,7 @@ static int mxf_read_close(AVFormatContext *s)
 
 static int mxf_probe(const AVProbeData *p) {
     const uint8_t *bufp = p->buf;
-    const uint8_t *end = p->buf + p->buf_size;
+    const uint8_t *end = p->buf + FFMIN(p->buf_size, RUN_IN_MAX + 1 + sizeof(mxf_header_partition_pack_key));
 
     if (p->buf_size < sizeof(mxf_header_partition_pack_key))
         return 0;



More information about the ffmpeg-cvslog mailing list