aboutsummaryrefslogtreecommitdiffstats
path: root/src/DecoderThread.cxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2013-10-21 20:36:34 +0200
committerMax Kellermann <max@duempel.org>2013-10-21 21:08:12 +0200
commit13e9f18403b98f8123b1b983c4680957d684e47b (patch)
treeef732995e8bbad81f41597fab84c5640004f22fd /src/DecoderThread.cxx
parent875821f2ba0beeb9556962a536c4c0011913ff15 (diff)
downloadmpd-13e9f18403b98f8123b1b983c4680957d684e47b.tar.gz
mpd-13e9f18403b98f8123b1b983c4680957d684e47b.tar.xz
mpd-13e9f18403b98f8123b1b983c4680957d684e47b.zip
DecoderPlugin: move functions into the struct
Diffstat (limited to 'src/DecoderThread.cxx')
-rw-r--r--src/DecoderThread.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/DecoderThread.cxx b/src/DecoderThread.cxx
index 83de64670..6fe1ff746 100644
--- a/src/DecoderThread.cxx
+++ b/src/DecoderThread.cxx
@@ -133,7 +133,7 @@ decoder_stream_decode(const DecoderPlugin &plugin,
decoder->dc.Unlock();
- decoder_plugin_stream_decode(plugin, decoder, input_stream);
+ plugin.StreamDecode(*decoder, *input_stream);
decoder->dc.Lock();
@@ -162,7 +162,7 @@ decoder_file_decode(const DecoderPlugin &plugin,
decoder->dc.Unlock();
- decoder_plugin_file_decode(plugin, decoder, path);
+ plugin.FileDecode(*decoder, path);
decoder->dc.Lock();