diff options
author | Max Kellermann <max@duempel.org> | 2008-08-26 08:27:04 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-08-26 08:27:04 +0200 |
commit | 2bf7ec4f3935c68e6d129ffac17820411b3ea44d (patch) | |
tree | 8689514b06b6e9220def40fc1a82ead33dd17455 /src/inputPlugins/oggflac_plugin.c | |
parent | 154aa496e8c18bba3dc10c607987c187f4686ae4 (diff) | |
download | mpd-2bf7ec4f3935c68e6d129ffac17820411b3ea44d.tar.gz mpd-2bf7ec4f3935c68e6d129ffac17820411b3ea44d.tar.xz mpd-2bf7ec4f3935c68e6d129ffac17820411b3ea44d.zip |
added decoder_initialized()
decoder_initialized() sets the state to DECODE_STATE_DECODE and wakes
up the player thread. It is called by the decoder plugin after its
internal initialization is finished. More arguments will be added
later to prevent direct accesses to the DecoderControl struct.
Diffstat (limited to 'src/inputPlugins/oggflac_plugin.c')
-rw-r--r-- | src/inputPlugins/oggflac_plugin.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/inputPlugins/oggflac_plugin.c b/src/inputPlugins/oggflac_plugin.c index a365f73cc..91b4de435 100644 --- a/src/inputPlugins/oggflac_plugin.c +++ b/src/inputPlugins/oggflac_plugin.c @@ -346,7 +346,7 @@ static int oggflac_decode(struct decoder * mpd_decoder, InputStream * inStream) goto fail; } - dc.state = DECODE_STATE_DECODE; + decoder_initialized(mpd_decoder); while (1) { OggFLAC__seekable_stream_decoder_process_single(decoder); |