aboutsummaryrefslogtreecommitdiffstats
path: root/src/decoder/oggvorbis_plugin.c
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2008-10-29 17:29:06 +0100
committerMax Kellermann <max@duempel.org>2008-10-29 17:29:06 +0100
commit528b7c3f5e7afc155058eeba631aa93ba9f42b0c (patch)
treee7874d0c9df831872431862f60150b9566e6a696 /src/decoder/oggvorbis_plugin.c
parent74c85811afe85d7cd3024156b204a5d68f94df86 (diff)
downloadmpd-528b7c3f5e7afc155058eeba631aa93ba9f42b0c.tar.gz
mpd-528b7c3f5e7afc155058eeba631aa93ba9f42b0c.tar.xz
mpd-528b7c3f5e7afc155058eeba631aa93ba9f42b0c.zip
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().
Diffstat (limited to '')
-rw-r--r--src/decoder/oggvorbis_plugin.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/decoder/oggvorbis_plugin.c b/src/decoder/oggvorbis_plugin.c
index d6521d82c..2099d2c0f 100644
--- a/src/decoder/oggvorbis_plugin.c
+++ b/src/decoder/oggvorbis_plugin.c
@@ -326,9 +326,6 @@ oggvorbis_decode(struct decoder *decoder, struct input_stream *inStream)
freeReplayGainInfo(replayGainInfo);
ov_clear(&vf);
-
- decoder_flush(decoder);
-
return 0;
}