search for: flac__seekable_stream_decoder_init

Displaying 3 results from an estimated 3 matches for "flac__seekable_stream_decoder_init".

2004 Sep 10
0
Re: FLAC 1.0.3 is out
...3 and I'm seeing some unhappiness in various regression tests: i386: | +++ libFLAC unit test: FLAC__SeekableStreamDecoder | | testing FLAC__seekable_stream_decoder_new()... OK | testing FLAC__seekable_stream_decoder_delete()... OK | testing FLAC__seekable_stream_decoder_new()... OK | testing FLAC__seekable_stream_decoder_init()... OK | testing FLAC__seekable_stream_decoder_delete()... Abort (core dumped) | ERROR during test_libFLAC | FAIL: ./test_libFLAC.sh alpha: | +++ libFLAC unit test: metadata manipulation [...] | ++++++ testing level 2 interface [...] | PASS: ./test_libFLAC.sh | Memory fault (core dumped) | ERR...
2004 Sep 10
3
FLAC 1.0.3 is out
Yes, it's finally here. See the homepage for details, but here's a summary: - 10-15% decoder speedup - 24-bit input support restored - more robust plugins - new metadata block for Vorbis-style tags - vastly improved metadata editor - fixed bug with pipes and Windows - new libFLAC++, a C++ object wrapper around libFLAC - new metadata editing interface in libFLAC and libFLAC++ - and
2004 Sep 10
2
flac_read callback not called in Windows?
...callback(flacDecoder, flac_metadata)) fprintf(stderr, "Could not set metadata cb\n"); if(!FLAC__seekable_stream_decoder_set_error_callback(flacDecoder, flac_error)) fprintf(stderr, "Could not set flac error cb\n"); fprintf(stderr, "set error decoder\n"); if(FLAC__seekable_stream_decoder_init(flacDecoder) != FLAC__SEEKABLE_STREAM_DECODER_OK) { fprintf(stderr, "flac init failed\n"); logerror("flac init failed\n"); } } else { fprintf(stderr, "flac file %s not found\n", flacFilename); } }