Displaying 2 results from an estimated 2 matches for "write_data_with_metadata".
2004 Aug 06
2
bug report w.r.t. streaming of metadata in icecast
i've been trying to get title streaming of metadata to work with icecast
1.3.10. i've found what i believe to be a bug -- is this 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
2004 Aug 06
2
bug report w.r.t. streaming of metadata in icecast
...use_meta_data)
write_chunk_with_metadata (source, clicon);
else {
write_chunk (source, clicon);
what i didn't get is why, in the 1.3.10 source, does add_chunk repeatedly add
metadata to a chunk, then source_write_to_client calls
write_chunk_with_metadata which calls write_data_with_metadata, yet,
write_data_with_metadata has two paths, one of which writes the metadata and
one does not? looking at the cvs comment for source.c 1.22 makes it a little
clearer that maybe that's just the way it's supposed to be, although i'm still
a little confused.
if the metadata is not writ...