mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-23 11:39:49 +00:00
avformat/oggdec: Disable mid stream codec changes
Fixes: 22082/clusterfuzz-testcase-minimized-ffmpeg_DEMUXER_fuzzer-5688619118624768 Fixes: crash from V-codecs/Theora/theora_testsuite_broken/multi2.ogg Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Suggested-by: Lynne on IRC Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
e53235f06c
commit
70277f1232
@ -226,9 +226,10 @@ static int ogg_replace_stream(AVFormatContext *s, uint32_t serial, char *magic,
|
||||
return AVERROR_INVALIDDATA;
|
||||
}
|
||||
|
||||
/* We only have a single stream anyway, so if there's a new stream with
|
||||
* a different codec just replace it */
|
||||
os = &ogg->streams[0];
|
||||
if (os->codec != codec)
|
||||
return AVERROR(EINVAL);
|
||||
|
||||
os->serial = serial;
|
||||
os->codec = codec;
|
||||
os->serial = serial;
|
||||
|
Loading…
Reference in New Issue
Block a user