summaryrefslogtreecommitdiffstats
path: root/audio/filter/af.c
diff options
context:
space:
mode:
Diffstat (limited to 'audio/filter/af.c')
-rw-r--r--audio/filter/af.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/audio/filter/af.c b/audio/filter/af.c
index cfe4b401df..edee4bef65 100644
--- a/audio/filter/af.c
+++ b/audio/filter/af.c
@@ -697,8 +697,6 @@ struct mp_audio *af_play(struct af_stream *s, struct mp_audio *data)
struct af_instance *af = s->first;
// Iterate through all filters
do {
- if (data->len <= 0)
- break;
data = af->play(af, data);
af = af->next;
} while (af && data);