mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-02-09 14:14:39 +02:00
Merge commit '68ff9981283a56c731f00c2ee7901103665092fc'
* commit '68ff9981283a56c731f00c2ee7901103665092fc': vqf: Make sure the bitrate is in the valid range Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
commit
b24f7cf950
@ -187,6 +187,13 @@ static int vqf_read_header(AVFormatContext *s)
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (read_bitrate / st->codec->channels < 8 ||
|
||||||
|
read_bitrate / st->codec->channels > 48) {
|
||||||
|
av_log(s, AV_LOG_ERROR, "Invalid bitrate per channel %d\n",
|
||||||
|
read_bitrate / st->codec->channels);
|
||||||
|
return AVERROR_INVALIDDATA;
|
||||||
|
}
|
||||||
|
|
||||||
switch (((st->codec->sample_rate/1000) << 8) +
|
switch (((st->codec->sample_rate/1000) << 8) +
|
||||||
read_bitrate/st->codec->channels) {
|
read_bitrate/st->codec->channels) {
|
||||||
case (11<<8) + 8 :
|
case (11<<8) + 8 :
|
||||||
|
Loading…
x
Reference in New Issue
Block a user