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

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
pull/87/head
Michael Niedermayer 10 years ago
parent f9fefa499f
commit 6b347f519d
  1. 4
      libswresample/swresample.c

@ -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…
Cancel
Save