aboutsummaryrefslogtreecommitdiff
path: root/src/decoder_api.h
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2008-11-02 17:02:28 +0100
committerMax Kellermann <max@duempel.org>2008-11-02 17:02:28 +0100
commit020c04e7020226a258e6dbffe3435944264823d1 (patch)
treeee7f8ec54b0a89506f89fb74f3619cd7e2fdbd17 /src/decoder_api.h
parent5b13f067cd38b23e567acf16fd8506dcbdad9b31 (diff)
decoder_api: added decoder_tag()
Provide an API for submitting additional tags from the stream.
Diffstat (limited to 'src/decoder_api.h')
-rw-r--r--src/decoder_api.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/decoder_api.h b/src/decoder_api.h
index a755dd3c..486712d9 100644
--- a/src/decoder_api.h
+++ b/src/decoder_api.h
@@ -155,4 +155,15 @@ decoder_data(struct decoder *decoder,
void *data, size_t datalen, float data_time, uint16_t bitRate,
ReplayGainInfo * replayGainInfo);
+/**
+ * This function is called by the decoder plugin when it has
+ * successfully decoded a tag.
+ *
+ * @param is an input stream which is buffering while we are waiting
+ * for the player
+ */
+enum decoder_command
+decoder_tag(struct decoder *decoder, struct input_stream *is,
+ const struct tag *tag);
+
#endif