From be90199c5ace71eb3411294159fec6adcc0d4404 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Wed, 29 Oct 2008 17:28:47 +0100 Subject: decoder_api: removed decoder_clear() Call ob_clear() in decoder_command_finished() instead of implementing that call in every decoder plugin. --- src/decoder_api.c | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'src/decoder_api.c') diff --git a/src/decoder_api.c b/src/decoder_api.c index a82b6c162..6d38685f4 100644 --- a/src/decoder_api.c +++ b/src/decoder_api.c @@ -77,6 +77,10 @@ void decoder_command_finished(mpd_unused struct decoder * decoder) assert(dc.command != DECODE_COMMAND_SEEK || dc.seekError || decoder->seeking); + if (dc.command == DECODE_COMMAND_SEEK) + /* delete frames from the old song position */ + ob_clear(); + dc.command = DECODE_COMMAND_NONE; notify_signal(&pc.notify); } @@ -209,8 +213,3 @@ void decoder_flush(mpd_unused struct decoder *decoder) { ob_flush(); } - -void decoder_clear(mpd_unused struct decoder *decoder) -{ - ob_clear(); -} -- cgit v1.2.3