Commit 6b347f51 authored by Michael Niedermayer's avatar Michael Niedermayer

swresample/swresample: replace always true if() by av_assert0()

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent f9fefa49
......@@ -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){
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment