Displaying 2 results from an estimated 2 matches for "flac__file_decoder_seek".
2004 Sep 10
0
new checkins
...on 1.13
diff -u -r1.13 file_decoder.h
--- file_decoder.h	26 Jan 2002 17:36:39 -0000	1.13
+++ file_decoder.h	6 May 2002 15:07:21 -0000
@@ -22,6 +22,10 @@
 
 #include "stream_decoder.h"
 
+#ifdef __cplusplus
+extern "C" {
+#endif
+
 typedef enum {
     FLAC__FILE_DECODER_OK = 0,
 	FLAC__FILE_DECODER_SEEKING, /*@@@ NOTE: unused; remove this in the next minor-version */
@@ -133,5 +137,9 @@
 FLAC__bool FLAC__file_decoder_process_remaining_frames(FLAC__FileDecoder *decoder);
 
 FLAC__bool FLAC__file_decoder_seek_absolute(FLAC__FileDecoder *decoder, FLAC__uint64 sample);
+
+#ifdef __cplusplus
+}
+#endif...
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