1
0
mirror of https://gitlab.xiph.org/xiph/icecast-server.git synced 2024-09-29 04:25:55 -04:00

send StreamTitle in the initial metadata block, if not real/helix has

trouble with playback

svn path=/icecast/trunk/icecast/; revision=9376
This commit is contained in:
Karl Heyes 2005-06-06 15:39:26 +00:00
parent 2896db1f3c
commit b8f6429198

View File

@ -104,9 +104,8 @@ int format_mp3_get_plugin (source_t *source)
/* initial metadata needs to be blank for sending to clients and for
comparing with new metadata */
meta = refbuf_new (2);
memcpy (meta->data, "\0\0", 2);
meta->len = 1;
meta = refbuf_new (17);
memcpy (meta->data, "\001StreamTitle='';", 17);
state->metadata = meta;
state->interval = -1;