mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-26 19:01:44 +02:00
avformat/genh: Check nb_channels for IMA ADPCM
The check could be made more strict Fixes: signed integer overflow: 36 * 538976288 cannot be represented in type 'int' Fixes: 50993/clusterfuzz-testcase-minimized-ffmpeg_dem_GENH_fuzzer-6539389873815552 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:
parent
93db0f0740
commit
0345a88545
@ -78,6 +78,8 @@ static int genh_read_header(AVFormatContext *s)
|
||||
case 0: st->codecpar->codec_id = AV_CODEC_ID_ADPCM_PSX; break;
|
||||
case 1:
|
||||
case 11: st->codecpar->bits_per_coded_sample = 4;
|
||||
if (st->codecpar->ch_layout.nb_channels > INT_MAX / 36)
|
||||
return AVERROR_INVALIDDATA;
|
||||
st->codecpar->block_align = 36 * st->codecpar->ch_layout.nb_channels;
|
||||
st->codecpar->codec_id = AV_CODEC_ID_ADPCM_IMA_WAV; break;
|
||||
case 2: st->codecpar->codec_id = AV_CODEC_ID_ADPCM_DTK; break;
|
||||
|
Loading…
Reference in New Issue
Block a user