mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-02-04 06:08:26 +02:00
swresample/swresample: replace always true if() by av_assert0()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
f9fefa499f
commit
6b347f519d
@ -668,8 +668,8 @@ int swr_convert(struct SwrContext *s, uint8_t *out_arg[SWR_CH_MAX], int out_coun
|
||||
continue;
|
||||
}
|
||||
|
||||
if(s->drop_output || !out_arg)
|
||||
return 0;
|
||||
av_assert0(s->drop_output);
|
||||
return 0;
|
||||
}
|
||||
|
||||
if(!in_arg){
|
||||
|
Loading…
x
Reference in New Issue
Block a user