You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-07-16 22:42:38 +02:00
avformat/matroskadec: Sanity check codec_id/track type
Fixes: memleak Fixes: 27766/clusterfuzz-testcase-minimized-ffmpeg_dem_MATROSKA_fuzzer-5198300814508032 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
@ -2318,6 +2318,15 @@ static int matroska_parse_tracks(AVFormatContext *s)
|
|||||||
if (!track->codec_id)
|
if (!track->codec_id)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
|
if ( track->type == MATROSKA_TRACK_TYPE_AUDIO && track->codec_id[0] != 'A'
|
||||||
|
|| track->type == MATROSKA_TRACK_TYPE_VIDEO && track->codec_id[0] != 'V'
|
||||||
|
|| track->type == MATROSKA_TRACK_TYPE_SUBTITLE && track->codec_id[0] != 'D' && track->codec_id[0] != 'S'
|
||||||
|
|| track->type == MATROSKA_TRACK_TYPE_METADATA && track->codec_id[0] != 'D' && track->codec_id[0] != 'S'
|
||||||
|
) {
|
||||||
|
av_log(matroska->ctx, AV_LOG_INFO, "Inconsistent track type\n");
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
if (track->audio.samplerate < 0 || track->audio.samplerate > INT_MAX ||
|
if (track->audio.samplerate < 0 || track->audio.samplerate > INT_MAX ||
|
||||||
isnan(track->audio.samplerate)) {
|
isnan(track->audio.samplerate)) {
|
||||||
av_log(matroska->ctx, AV_LOG_WARNING,
|
av_log(matroska->ctx, AV_LOG_WARNING,
|
||||||
|
Reference in New Issue
Block a user