aboutsummaryrefslogtreecommitdiff
path: root/src/decoder_internal.h
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2008-11-03 18:24:01 +0100
committerMax Kellermann <max@duempel.org>2008-11-03 18:24:01 +0100
commitac96022c1de5573b9c4ff03990ac07c4bba8e3f9 (patch)
treee40cd0334b1fd332c49e7aa48f8a7dbe308c2e0f /src/decoder_internal.h
parent8bb2da063f59e7586c61f88c1fb2d268e6191e5c (diff)
decoder_api: automatically send stream tag
If an input stream provides tags (e.g. from an icecast server), send them in the decoder_data() and decoder_tag() methods. Removed the according code from the mp3 and oggvorbis plugins - decoders shouldn't have to care about stream tags. This patch also adds the missing decoder_tag() invocation to the mp3 plugin.
Diffstat (limited to 'src/decoder_internal.h')
-rw-r--r--src/decoder_internal.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/decoder_internal.h b/src/decoder_internal.h
index 7a36e011..9d3d6abe 100644
--- a/src/decoder_internal.h
+++ b/src/decoder_internal.h
@@ -28,6 +28,9 @@ struct decoder {
struct pcm_convert_state conv_state;
bool seeking;
+
+ /** has the tag from the input stream been sent yet? */
+ bool stream_tag_sent;
};
#endif