Displaying 2 results from an estimated 2 matches for "write_chunk".
2004 Aug 06
2
bug report w.r.t. streaming of metadata in icecast
...his the right place to
file a bug report?
it appears that this information should be periodically inserted into the data
stream. the behavior that i was seeing was that the information was appearing
a maximum of one time and sometimes zero times.
i believe there is a bug in the following line in write_chunk_with_metadata()
in source.c. here is the original:
if (source->info.udpseqnr == clicon->food.client->udpseqnr) {
and here is the change:
if (clicon->food.client->use_udp && source->info.udpseqnr == clicon->food.client->udpseqnr) {...
2004 Aug 06
2
bug report w.r.t. streaming of metadata in icecast
On Tue, 7 Aug 2001, Brendan Cully wrote:
> On Tuesday, 07 August 2001 at 12:56, Richard Fromm wrote:
> > i believe there is a bug in the following line in write_chunk_with_metadata()
> > in source.c. here is the original:
> >
> > if (source->info.udpseqnr == clicon->food.client->udpseqnr) {
> >
> > and here is the change:
> >
> > if (clicon->food.client->use_udp && source->info.udpseqnr...