Displaying 3 results from an estimated 3 matches for "set_md5_check".
2011 Sep 28
1
Compiling - Win - GNU Compiler
...The same as in C (above) AND ... :
flac.o:flac.cpp:(.text+0xc): undefined reference to
`FLAC__StreamDecoderErrorStatusString'
flac.o:flac.cpp:(.text+0x565): undefined reference to
`FLAC::Decoder::File::File()'
flac.o:flac.cpp:(.text+0x592): undefined reference to
`FLAC::Decoder::Stream::set_md5_checking(bool)'
flac.o:flac.cpp:(.text+0x5a1): undefined reference to
`FLAC::Decoder::File::init(char const*)'
What is the missing link? Any idea?
Thanks a lot!
Regards
Thomas
2006 May 11
2
C++ Set_Metadata Problem
I refer to a problem that appeared on the flac list last August that was
either solved off-list or abandoned.
(http://lists.xiph.org/pipermail/flac/2005-August/000468.html)
The problem is with using the C++ encoder classes, particularly the
FLAC::Encoder::File:set_metadata
function. JC said that the developers version of how to add a simple
metadata block looked right, but it did not work for
2004 Sep 10
0
http streaming in the xmms plugin
...ataCallback) (const void *decoder, const FLAC__StreamMetadata *metadata, void *client_data);
+ typedef void (*ErrorCallback) (const void *decoder, FLAC__StreamDecoderErrorStatus status, void *client_data);
+
+ typedef struct {
+ FLAC__bool seekable;
+ void* (*new_decoder) (void);
+ FLAC__bool (*set_md5_checking) (void *decoder, FLAC__bool value);
+ FLAC__bool (*set_source) (void *decoder, const char* source);
+ FLAC__bool (*set_metadata_ignore_all) (void *decoder);
+ FLAC__bool (*set_metadata_respond) (void *decoder, FLAC__MetadataType type);
+ FLAC__bool (*set_write_callback) (void *decoder, Write...