aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2020-10-22 00:37:25 +0200
committerMichael Niedermayer <michael@niedermayer.cc>2021-09-11 21:23:48 +0200
commit7d539878ca105155d0183642c609e01087110f18 (patch)
tree2db643ad94e083784e748b962af9fe1865480aee
parent4a9b5ec1e8010c0e8cc7b53bebed5a6a7c359ec6 (diff)
downloadffmpeg-7d539878ca105155d0183642c609e01087110f18.tar.gz
avformat/segafilm: Check that there is a stream
Fixes: assertion failure Fixes: 26472/clusterfuzz-testcase-minimized-ffmpeg_dem_SEGAFILM_fuzzer-5759751591559168 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Reviewed-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> (cherry picked from commit c0d7fd269beed030fc767fee28d9dbe111bc4427) Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-rw-r--r--libavformat/segafilm.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/libavformat/segafilm.c b/libavformat/segafilm.c
index 1fdef50cc7..e590deb88d 100644
--- a/libavformat/segafilm.c
+++ b/libavformat/segafilm.c
@@ -144,6 +144,9 @@ static int film_read_header(AVFormatContext *s)
film->video_type = AV_CODEC_ID_NONE;
}
+ if (!film->video_type && !film->audio_type)
+ return AVERROR_INVALIDDATA;
+
/* initialize the decoder streams */
if (film->video_type) {
st = avformat_new_stream(s, NULL);