Merge commit '3ca14aa596'
* commit '3ca14aa596': rl2: Avoid a division by zero See:f371396dfbMerged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
commit
2a930fa29e
1 changed files with 3 additions and 1 deletions
|
|
@ -136,8 +136,10 @@ static av_cold int rl2_read_header(AVFormatContext *s)
|
|||
|
||||
/** setup audio stream if present */
|
||||
if(sound_rate){
|
||||
if(channels <= 0)
|
||||
if (!channels || channels > 42) {
|
||||
av_log(s, AV_LOG_ERROR, "Invalid number of channels: %d\n", channels);
|
||||
return AVERROR_INVALIDDATA;
|
||||
}
|
||||
|
||||
pts_num = def_sound_size;
|
||||
pts_den = rate;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue