1
0
mirror of https://gitlab.xiph.org/xiph/icecast-server.git synced 2025-02-02 15:07:36 -05:00

setting an interval of 0 in mount should disable shoutcast metadata inserts.

svn path=/icecast/trunk/icecast/; revision=16439
This commit is contained in:
Karl Heyes 2009-08-05 22:24:04 +00:00
parent 5f927335c4
commit 1f92e2ab1c

View File

@ -206,12 +206,12 @@ static void format_mp3_apply_settings (client_t *client, format_plugin_t *format
if (mount)
{
if (mount->mp3_meta_interval > 0)
if (mount->mp3_meta_interval >= 0)
source_mp3->interval = mount->mp3_meta_interval;
if (mount->charset)
format->charset = strdup (mount->charset);
}
if (source_mp3->interval <= 0)
if (source_mp3->interval < 0)
{
const char *metadata = httpp_getvar (client->parser, "icy-metaint");
source_mp3->interval = ICY_METADATA_INTERVAL;