search for: flac__file_decoder_delet

Displaying 5 results from an estimated 5 matches for "flac__file_decoder_delet".

2004 Sep 10
1
[Flac-users] Trouble Building flac-1.1.0
...file_decoder.c:117: dereferencing pointer to incomplete type file_decoder.c:118: dereferencing pointer to incomplete type file_decoder.c:125: dereferencing pointer to incomplete type file_decoder.c: At top level: file_decoder.c:134: syntax error before "void" file_decoder.c: In function `FLAC__file_decoder_delete': file_decoder.c:143: dereferencing pointer to incomplete type file_decoder.c: At top level: file_decoder.c:156: syntax error before "FLAC__FileDecoderState" file_decoder.c: In function `FLAC__file_decoder_init':
2004 Sep 10
0
flac-1.0.3_beta released
...#3 0x4120accb in FLAC__bitbuffer_delete (bb=0x81c1bd8) at bitbuffer.c:261 #4 0x4121fa3b in FLAC__stream_decoder_delete (decoder=0x81c1ba8) at stream_decoder.c:193 #5 0x4121cc69 in FLAC__seekable_stream_decoder_delete (decoder=0x81c1b88) at seekable_stream_decoder.c:158 #6 0x4120f759 in FLAC__file_decoder_delete (decoder=0x81c1b48) at file_decoder.c:140 #7 0x41140f26 in safe_decoder_delete_ (decoder=0x81c1b48) at plugin.c:393 #8 0x41140659 in FLAC_XMMS__cleanup () at plugin.c:216 #9 0x0805f123 in cleanup_plugins () at pluginenum.c:417 #10 0x0806be6c in mainwin_quit_cb () at main.c:904 #11 0x08064a7...
2004 Sep 10
1
flac-1.0.3_beta released
...delete (bb=0x81c1bd8) at > bitbuffer.c:261 > #4 0x4121fa3b in FLAC__stream_decoder_delete (decoder=0x81c1ba8) > at stream_decoder.c:193 > #5 0x4121cc69 in FLAC__seekable_stream_decoder_delete > (decoder=0x81c1b88) > at seekable_stream_decoder.c:158 > #6 0x4120f759 in FLAC__file_decoder_delete (decoder=0x81c1b48) > at file_decoder.c:140 > #7 0x41140f26 in safe_decoder_delete_ (decoder=0x81c1b48) at > plugin.c:393 > #8 0x41140659 in FLAC_XMMS__cleanup () at plugin.c:216 > #9 0x0805f123 in cleanup_plugins () at pluginenum.c:417 > #10 0x0806be6c in mainwin_quit_cb...
2004 Sep 10
11
flac-1.0.3_beta released
I have just released a source distribution which is the candidate for the 1.0.3 release. At this time I would ask anyone who is willing to help test it to do the following: 1. download the tarball and unzip it: http://prdownloads.sourceforge.net/flac/flac-1.0.3_beta-src.tar.gz?download 2. do ./configure && make && make check This will build all code and run all the tests.
2004 Sep 10
0
http streaming in the xmms plugin
...ish_(FLAC__FileDecoder *decoder) { ! if(decoder && FLAC__file_decoder_get_state(decoder) != FLAC__FILE_DECODER_UNINITIALIZED) ! FLAC__file_decoder_finish(decoder); } ! void safe_decoder_delete_(FLAC__FileDecoder *decoder) { if(decoder) { ! safe_decoder_finish_(decoder); ! FLAC__file_decoder_delete(decoder); } } ! FLAC__StreamDecoderWriteStatus write_callback_(const FLAC__FileDecoder *decoder, const FLAC__Frame *frame, const FLAC__int32 * const buffer[], void *client_data) { file_info_struct *file_info = (file_info_struct *)client_data; const unsigned channels = file_info-&gt...