avformat/tmv: Check video chunk size

This check matches the audio chunk check

Fixes: Timeout
Fixes: 62681/clusterfuzz-testcase-minimized-ffmpeg_dem_TMV_fuzzer-5299107876700160

Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpegSigned-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent fec6e84b
......@@ -103,6 +103,10 @@ static int tmv_read_header(AVFormatContext *s)
char_cols = avio_r8(pb);
char_rows = avio_r8(pb);
tmv->video_chunk_size = char_cols * char_rows * 2;
if (!tmv->video_chunk_size) {
av_log(s, AV_LOG_ERROR, "invalid video chunk size\n");
return AVERROR_INVALIDDATA;
}
features = avio_r8(pb);
if (features & ~(TMV_PADDING | TMV_STEREO)) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment