diff options
author | Max Kellermann <max@duempel.org> | 2009-12-31 17:18:10 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-12-31 18:27:48 +0100 |
commit | 6b96f5d566a6a36bfcdb70c8a27771717eb3d038 (patch) | |
tree | 4792f3d8f9e16c3ba3416e46cc613e7457428cde /src/decoder | |
parent | 7a2e07e124ebaae8ecc55de6ea24cbb10c32cebd (diff) | |
download | mpd-6b96f5d566a6a36bfcdb70c8a27771717eb3d038.tar.gz mpd-6b96f5d566a6a36bfcdb70c8a27771717eb3d038.tar.xz mpd-6b96f5d566a6a36bfcdb70c8a27771717eb3d038.zip |
decoder_plugin: added method stream_tag()
This is like tag_dup(), but works with an input_stream object instead
of a file path.
Diffstat (limited to 'src/decoder')
-rw-r--r-- | src/decoder/sidplay_plugin.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/decoder/sidplay_plugin.cxx b/src/decoder/sidplay_plugin.cxx index 9bfe98f3d..79cd9cb03 100644 --- a/src/decoder/sidplay_plugin.cxx +++ b/src/decoder/sidplay_plugin.cxx @@ -411,6 +411,7 @@ const struct decoder_plugin sidplay_decoder_plugin = { NULL, /* stream_decode() */ sidplay_file_decode, sidplay_tag_dup, + NULL, /* stream_tag() */ sidplay_container_scan, sidplay_suffixes, NULL, /* mime_types */ |