diff options
author | Max Kellermann <max@duempel.org> | 2013-11-13 19:13:47 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-11-13 19:13:47 +0100 |
commit | a80b5cf19b8d2dda6db15444cd11aa9494546380 (patch) | |
tree | 1a30f2ef79bf568683895439db87aef247ef47a1 /src/DecoderThread.cxx | |
parent | 44ac84767ee16b5445f80267589fe4a5fba0a33a (diff) | |
download | mpd-a80b5cf19b8d2dda6db15444cd11aa9494546380.tar.gz mpd-a80b5cf19b8d2dda6db15444cd11aa9494546380.tar.xz mpd-a80b5cf19b8d2dda6db15444cd11aa9494546380.zip |
DecoderInternal: move functions into the class
Diffstat (limited to 'src/DecoderThread.cxx')
-rw-r--r-- | src/DecoderThread.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DecoderThread.cxx b/src/DecoderThread.cxx index 72fc3cfb4..4d0bc13b5 100644 --- a/src/DecoderThread.cxx +++ b/src/DecoderThread.cxx @@ -356,7 +356,7 @@ decoder_run_song(DecoderControl &dc, /* flush the last chunk */ if (decoder.chunk != nullptr) - decoder_flush_chunk(decoder); + decoder.FlushChunk(); dc.Lock(); |