diff options
author | Max Kellermann <max@musicpd.org> | 2016-11-18 07:59:01 +0100 |
---|---|---|
committer | Max Kellermann <max@musicpd.org> | 2016-11-18 09:03:41 +0100 |
commit | 66fb352ccaac94a1ca5b6ac261ea15e790217f16 (patch) | |
tree | d9e2731f1a7398d11cf57c252e328f477f80c4a0 /src/decoder/plugins/FaadDecoderPlugin.cxx | |
parent | fd77acc217340aeee3dc80173b6000815ebb709f (diff) |
decoder/Client: add virtual method Ready()
Replaces decoder_initialized().
Diffstat (limited to 'src/decoder/plugins/FaadDecoderPlugin.cxx')
-rw-r--r-- | src/decoder/plugins/FaadDecoderPlugin.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/decoder/plugins/FaadDecoderPlugin.cxx b/src/decoder/plugins/FaadDecoderPlugin.cxx index d9e24c1b5..8dc0d2d95 100644 --- a/src/decoder/plugins/FaadDecoderPlugin.cxx +++ b/src/decoder/plugins/FaadDecoderPlugin.cxx @@ -339,7 +339,7 @@ faad_stream_decode(DecoderClient &client, InputStream &is, /* initialize the MPD core */ - decoder_initialized(client, audio_format, false, total_time); + client.Ready(audio_format, false, total_time); /* the decoder loop */ |