diff options
author | Max Kellermann <max@duempel.org> | 2009-02-09 16:36:06 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-02-09 16:38:22 +0100 |
commit | 7fc25ad567a0b8b4f7c05832adc17e9fdcc2cefb (patch) | |
tree | cace88c98aefb9b98c0b2c713b20e179db459176 /src/output/shout_plugin.h | |
parent | f5c43889c38c5314dacbc327ef0d5cd6fab6fe6c (diff) | |
download | mpd-7fc25ad567a0b8b4f7c05832adc17e9fdcc2cefb.tar.gz mpd-7fc25ad567a0b8b4f7c05832adc17e9fdcc2cefb.tar.xz mpd-7fc25ad567a0b8b4f7c05832adc17e9fdcc2cefb.zip |
shout: don't postpone metadata
Don't duplicate the tag received by the send_metadata() method - send
it to the shout server directly.
Diffstat (limited to '')
-rw-r--r-- | src/output/shout_plugin.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/output/shout_plugin.h b/src/output/shout_plugin.h index 5fbd6b5e8..11ecf89fd 100644 --- a/src/output/shout_plugin.h +++ b/src/output/shout_plugin.h @@ -67,7 +67,7 @@ struct shout_data { float quality; int bitrate; - struct tag *tag; + const struct tag *tag; int timeout; |