search for: flac__seek_table_is_valid

Displaying 2 results from an estimated 2 matches for "flac__seek_table_is_valid".

2004 Sep 10
0
new checkins
...ac/flac/include/FLAC/seek_table.h,v retrieving revision 1.3 diff -u -r1.3 seek_table.h --- seek_table.h 26 Jan 2002 18:05:12 -0000 1.3 +++ seek_table.h 6 May 2002 15:07:22 -0000 @@ -22,6 +22,15 @@ #include "format.h" +#ifdef __cplusplus +extern "C" { +#endif + + FLAC__bool FLAC__seek_table_is_valid(const FLAC__StreamMetaData_SeekTable *seek_table); + +#ifdef __cplusplus +} +#endif #endif Index: seekable_stream_decoder.h =================================================================== RCS file: /cvsroot/flac/flac/include/FLAC/seekable_stream_decoder.h,v retrieving revision 1.2 diff -u -r...
2004 Sep 10
3
new checkins
FYI, I have checked in a few interesting things. One is a speedup to the decoder (about 15% improvement in overall decode time). Another is a new interface to FLAC file metadata. If you're curious look at include/FLAC/metadata.h. It is basically a collection of object manipulation routines and iterators that make it pretty easy to add/edit/delete FLAC metadata in files efficiently. The