summaryrefslogtreecommitdiff
path: root/libavfilter
diff options
context:
space:
mode:
authorPavel Koshevoy <pkoshevoy@gmail.com>2016-12-17 17:14:48 -0700
committerMarton Balint <cus@passwd.hu>2016-12-19 21:59:13 +0100
commit4240e5b047379b29c33dd3f4438bc4e610527b83 (patch)
tree67f3cc7bf1b24d638e9b774d6564c0b1474c5366 /libavfilter
parent99af260d0b07aad075ce1a4a8d71aa65e460a4c2 (diff)
lavfi/atempo: avoid false triggering an assertion failure
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>
Diffstat (limited to 'libavfilter')
-rw-r--r--libavfilter/af_atempo.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavfilter/af_atempo.c b/libavfilter/af_atempo.c
index 59b08ec7c6..a4878820db 100644
--- a/libavfilter/af_atempo.c
+++ b/libavfilter/af_atempo.c
@@ -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;
}