Commit edb4ba5b authored by Pavel Koshevoy's avatar Pavel Koshevoy Committed by Marton Balint

Revert "lavfi/atempo: avoid false triggering an assertion failure"

This reverts commit 4240e5b0.

Fixes ticket #6540.
Signed-off-by: 's avatarMarton Balint <cus@passwd.hu>
parent f4e593f7
......@@ -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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment