OSDN Git Service

lavfi/atempo: avoid false triggering an assertion failure
authorPavel Koshevoy <pkoshevoy@gmail.com>
Sun, 18 Dec 2016 00:14:48 +0000 (17:14 -0700)
committerMarton Balint <cus@passwd.hu>
Mon, 19 Dec 2016 20:59:13 +0000 (21:59 +0100)
Steps to reproduce:
./ffmpeg_g -f s16be -i /dev/null -af atempo=0.5 -y /tmp/atempo.wav

Signed-off-by: Marton Balint <cus@passwd.hu>
libavfilter/af_atempo.c

index 59b08ec..a487882 100644 (file)
@@ -914,8 +914,8 @@ static int yae_flush(ATempoContext *atempo,
 
     atempo->state = YAE_FLUSH_OUTPUT;
 
-    if (atempo->position[0] == frag->position[0] + frag->nsamples &&
-        atempo->position[1] == frag->position[1] + frag->nsamples) {
+    if (atempo->position[0] >= frag->position[0] + frag->nsamples &&
+        atempo->position[1] >= frag->position[1] + frag->nsamples) {
         // the current fragment is already flushed:
         return 0;
     }