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>
This commit is contained in:
Pavel Koshevoy 2016-12-17 17:14:48 -07:00 committed by Marton Balint
parent 99af260d0b
commit 4240e5b047
1 changed files with 2 additions and 2 deletions

View 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;
}