Displaying 4 results from an estimated 4 matches for "flac__seekable_stream_decoder_new".
2004 Sep 10
0
Re: FLAC 1.0.3 is out
Josh Coalson <xflac@yahoo.com> wrote:
> Yes, it's finally here.
I'm looking into updating the OpenBSD port from 1.0.2 to 1.0.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
alp...
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
2005 May 25
0
[PATCH] Fix fuction prototypes/definitions with void argument
...dist 2005-05-25 16:07:23.000000000 +0200
+++ src/libFLAC/seekable_stream_decoder.c 2005-05-25 16:07:27.000000000 +0200
@@ -135,7 +135,7 @@ FLAC_API const char * const FLAC__Seekab
*
***********************************************************************/
-FLAC_API FLAC__SeekableStreamDecoder *FLAC__seekable_stream_decoder_new()
+FLAC_API FLAC__SeekableStreamDecoder *FLAC__seekable_stream_decoder_new(void)
{
FLAC__SeekableStreamDecoder *decoder;
--- src/libFLAC/include/private/bitbuffer.h-dist 2005-05-25 16:07:23.000000000 +0200
+++ src/libFLAC/include/private/bitbuffer.h 2005-05-25 16:07:27.000000000 +0200
@@ -56,7...
2004 Sep 10
2
flac_read callback not called in Windows?
...d\n", status);
}
static void init_flac(void)
{
fprintf(stderr, "init flac\n");
sprintf(flacFilename, "%s.flac", Machine->gamedrv->name);
flacFile = mame_fopen(Machine->gamedrv->name, flacFilename,
FILETYPE_LASERDISK_FLAC, 0);
if(flacFile)
{
flacDecoder = FLAC__seekable_stream_decoder_new();
fprintf(stderr, "got decoder\n");
if(!FLAC__seekable_stream_decoder_set_read_callback(flacDecoder,
flac_read)) fprintf(stderr, "Could not set flac read cb\n");
if(!FLAC__seekable_stream_decoder_set_seek_callback(flacDecoder,
flac_seek))
fprintf(stderr, "Could...