From 13e9f18403b98f8123b1b983c4680957d684e47b Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Mon, 21 Oct 2013 20:36:34 +0200 Subject: DecoderPlugin: move functions into the struct --- src/DecoderThread.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/DecoderThread.cxx') 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(); -- cgit v1.2.3