Browse Source

swresample/swresample: fix sample drop loop end condition

Fixes Ticket3985

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.5
Michael Niedermayer 10 years ago
parent
commit
f9fefa499f
1 changed files with 2 additions and 0 deletions
  1. +2
    -0
      libswresample/swresample.c

+ 2
- 0
libswresample/swresample.c View File

@@ -663,6 +663,8 @@ int swr_convert(struct SwrContext *s, uint8_t *out_arg[SWR_CH_MAX], int out_coun
in_count = 0; in_count = 0;
if(ret>0) { if(ret>0) {
s->drop_output -= ret; s->drop_output -= ret;
if (!s->drop_output && !out_arg)
return 0;
continue; continue;
} }




Loading…
Cancel
Save