]> git.sesse.net Git - ffmpeg/commitdiff
swresample/swresample: fix sample drop loop end condition
authorMichael Niedermayer <michaelni@gmx.at>
Sun, 5 Oct 2014 23:08:20 +0000 (01:08 +0200)
committerMichael Niedermayer <michaelni@gmx.at>
Sun, 5 Oct 2014 23:29:06 +0000 (01:29 +0200)
Fixes Ticket3985

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
libswresample/swresample.c

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