From 528b7c3f5e7afc155058eeba631aa93ba9f42b0c Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Wed, 29 Oct 2008 17:29:06 +0100 Subject: decoder: automatically flush the output buffer after decoder exits A decoder_flush() invocation was missing in the FLAC plugin, resulting in casual assertion failures due to a wrong assumption about the last chunk's audio format. It's much easier to remove that decoder_flush() function and make the decoder thread call ob_flush(). --- src/decoder/mod_plugin.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'src/decoder/mod_plugin.c') diff --git a/src/decoder/mod_plugin.c b/src/decoder/mod_plugin.c index 5916a24ab..bdf71ec37 100644 --- a/src/decoder/mod_plugin.c +++ b/src/decoder/mod_plugin.c @@ -210,8 +210,6 @@ static int mod_decode(struct decoder * decoder, char *path) total_time, 0, NULL); } - decoder_flush(decoder); - mod_close(data); MikMod_Exit(); -- cgit v1.2.3