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/audiofile_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/audiofile_plugin.c')
-rw-r--r-- | src/inputPlugins/audiofile_plugin.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/inputPlugins/audiofile_plugin.c b/src/inputPlugins/audiofile_plugin.c index 0cc357135..faa58fe64 100644 --- a/src/inputPlugins/audiofile_plugin.c +++ b/src/inputPlugins/audiofile_plugin.c @@ -18,7 +18,7 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "../inputPlugin.h" +#include "../decoder_api.h" #ifdef HAVE_AUDIOFILE @@ -40,7 +40,7 @@ static int getAudiofileTotalTime(char *file) return total_time; } -static int audiofile_decode(mpd_unused struct decoder * decoder, char *path) +static int audiofile_decode(struct decoder * decoder, char *path) { int fs, frame_count; AFfilehandle af_fp; @@ -85,7 +85,7 @@ static int audiofile_decode(mpd_unused struct decoder * decoder, char *path) fs = (int)afGetVirtualFrameSize(af_fp, AF_DEFAULT_TRACK, 1); - dc.state = DECODE_STATE_DECODE; + decoder_initialized(decoder); { int ret, eof = 0, current = 0; char chunk[CHUNK_SIZE]; |