search for: flac__format_is_valid_sample_r

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

2004 Sep 10
0
new checkins
...ef __cplusplus +extern "C" { +#endif + /* changing the following values to be higher will break the framing and hence the stream format, so DON'T! */ #define FLAC__MIN_BLOCK_SIZE (16u) #define FLAC__MAX_BLOCK_SIZE (65535u) @@ -503,5 +507,9 @@ * encapsulated here: */ FLAC__bool FLAC__format_is_valid_sample_rate(unsigned sample_rate); + +#ifdef __cplusplus +} +#endif #endif Index: seek_table.h =================================================================== RCS file: /cvsroot/flac/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...
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