mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-24 13:56:33 +02:00
swr: fix assert failure
Bug found by: Oana Stratulat GCI-id: 7211207 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
1fa0ee127e
commit
aa1c590b29
@ -202,7 +202,12 @@ int swr_init(struct SwrContext *s){
|
||||
if(!s->out.ch_count)
|
||||
s->out.ch_count= av_get_channel_layout_nb_channels(s->out_ch_layout);
|
||||
|
||||
av_assert0(s-> in.ch_count);
|
||||
if(!s-> in.ch_count){
|
||||
av_assert0(!s->in_ch_layout);
|
||||
av_log(s, AV_LOG_ERROR, "Input channel count and layout are unset\n");
|
||||
return -1;
|
||||
}
|
||||
|
||||
av_assert0(s->used_ch_count);
|
||||
av_assert0(s->out.ch_count);
|
||||
s->resample_first= RSC*s->out.ch_count/s->in.ch_count - RSC < s->out_sample_rate/(float)s-> in_sample_rate - 1.0;
|
||||
|
Loading…
x
Reference in New Issue
Block a user