[xiph-commits] r9514 - icecast/trunk/icecast/src
karl at svn.xiph.org
karl at svn.xiph.org
Sun Jun 26 19:10:20 PDT 2005
Author: karl
Date: 2005-06-26 19:10:16 -0700 (Sun, 26 Jun 2005)
New Revision: 9514
Modified:
icecast/trunk/icecast/src/format.c
Log:
merge fix, the per client intro offset can be > 0, so we need to skip over
some of the burst data
Modified: icecast/trunk/icecast/src/format.c
===================================================================
--- icecast/trunk/icecast/src/format.c 2005-06-26 18:36:49 UTC (rev 9513)
+++ icecast/trunk/icecast/src/format.c 2005-06-27 02:10:16 UTC (rev 9514)
@@ -100,7 +100,7 @@
{
long size = 0;
refbuf = source->burst_point;
- size = source->burst_size - client->intro_offset;
+ size = client->intro_offset;
while (size > 0 && refbuf->next)
{
size -= refbuf->len;
More information about the commits
mailing list