Displaying 1 result from an estimated 1 matches for "metadata_stream".
2004 Sep 10
2
Developing SoundFont FLAC compressor using libFLAC
...te *FLAC__metadata_to_stream (FLAC__StreamMetaData *metadata);
/*
* Parses a metadata header byte stream and populates the passed
* 'metadata' structure. If 'header_size' is not NULL then the size of
* the parsed header is stored there.
*
* Returns: TRUE on success, FALSE if metadata_stream does not contain a
* valid metadata header.
*/
FLAC__bool FLAC__metadata_parse_stream (FLAC__byte *metadata_stream,
FLAC__StreamMetaData *metadata, unsigned *header_size);
For the decoder a way to get application metadata via the metadata
callback would be nice. The way I see this being imp...