mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-29 22:00:58 +02:00
ffmdec: validate sample_rate
A negative sample rate doesn't make sense and triggers assertions in av_rescale_rnd. Signed-off-by: Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>
This commit is contained in:
parent
872fcfcc0f
commit
0009457dc0
@ -432,6 +432,11 @@ static int ffm2_read_header(AVFormatContext *s)
|
||||
goto fail;
|
||||
}
|
||||
codec->sample_rate = avio_rb32(pb);
|
||||
if (codec->sample_rate <= 0) {
|
||||
av_log(s, AV_LOG_ERROR, "Invalid sample rate %d\n", codec->sample_rate);
|
||||
ret = AVERROR_INVALIDDATA;
|
||||
goto fail;
|
||||
}
|
||||
codec->channels = avio_rl16(pb);
|
||||
codec->frame_size = avio_rl16(pb);
|
||||
break;
|
||||
@ -628,6 +633,10 @@ static int ffm_read_header(AVFormatContext *s)
|
||||
break;
|
||||
case AVMEDIA_TYPE_AUDIO:
|
||||
codec->sample_rate = avio_rb32(pb);
|
||||
if (codec->sample_rate <= 0) {
|
||||
av_log(s, AV_LOG_ERROR, "Invalid sample rate %d\n", codec->sample_rate);
|
||||
goto fail;
|
||||
}
|
||||
codec->channels = avio_rl16(pb);
|
||||
codec->frame_size = avio_rl16(pb);
|
||||
break;
|
||||
|
Loading…
x
Reference in New Issue
Block a user