diff options
author | Max Kellermann <max@duempel.org> | 2008-11-02 17:02:28 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-11-02 17:02:28 +0100 |
commit | 020c04e7020226a258e6dbffe3435944264823d1 (patch) | |
tree | ee7f8ec54b0a89506f89fb74f3619cd7e2fdbd17 /src/decoder_api.c | |
parent | 5b13f067cd38b23e567acf16fd8506dcbdad9b31 (diff) | |
download | mpd-020c04e7020226a258e6dbffe3435944264823d1.tar.gz mpd-020c04e7020226a258e6dbffe3435944264823d1.tar.xz mpd-020c04e7020226a258e6dbffe3435944264823d1.zip |
decoder_api: added decoder_tag()
Provide an API for submitting additional tags from the stream.
Diffstat (limited to 'src/decoder_api.c')
-rw-r--r-- | src/decoder_api.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/decoder_api.c b/src/decoder_api.c index e2879808d..bab24daed 100644 --- a/src/decoder_api.c +++ b/src/decoder_api.c @@ -190,3 +190,16 @@ decoder_data(struct decoder *decoder, return DECODE_COMMAND_NONE; } + +enum decoder_command +decoder_tag(mpd_unused struct decoder *decoder, struct input_stream *is, + const struct tag *tag) +{ + while (!music_pipe_tag(tag)) { + enum decoder_command cmd = need_chunks(is); + if (cmd != DECODE_COMMAND_NONE) + return cmd; + } + + return DECODE_COMMAND_NONE; +} |