search for: write_chunk_with_metadata

Displaying 3 results from an estimated 3 matches for "write_chunk_with_metadata".

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) { if the client...
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 == clicon->...
2004 Aug 06
0
bug report w.r.t. streaming of metadata in icecast
...maximum of one time and sometimes zero times. Are you sure? It should change whenever the stream source does an "updinfo" command. Otherwise the information hasn't changed and there is no point in wasting bandwidth resending it. > 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) { It'...