search for: flac__file_decoder_process_one_fram

Displaying 6 results from an estimated 6 matches for "flac__file_decoder_process_one_fram".

2004 Sep 10
1
[Flac-users] error: FLAC required!
...FlacFile.cpp: In method `bool Flac::FlacFile::open()': FlacFile.cpp:117: implicit declaration of function `int Flac::FLAC__file_decoder_process_metadata(...)' FlacFile.cpp: In method `bool Flac::FlacFile::processOneFrame()': FlacFile.cpp:150: implicit declaration of function `int Flac::FLAC__file_decoder_process_one_frame(...)' make[3]: *** [FlacFile.lo] Error 1 There's no `FLAC__file_decoder_process_one_frame' in libFLAC.so.4 again. flac and it's xmms plugin work just fine... So, have a riddle: What have I done wrong or haven't right ;) on my Slackware 8.1 (2.4.19 kernel, gcc version 2.95....
2004 Sep 10
1
Can I STOP decoding at an exact sample?
...of the cds TOC), but I then want it to stop playing when it gets to the index 00 of the next track. At the moment, I do the following, where length is the length of the song in samples: FLAC__file_decoder_seek_absolute(flac_dec, start_sample); for(int i=0; i<(length/blockSize); i++) { FLAC__file_decoder_process_one_frame(flac_dec); } This is pretty good, with the default block size of 4608 it's accurate to around a 10th of a second. I am a fussy bastard tho, so I was just wondering if theres a better way :) Also, I am not sure how the SEEKTABLE works, it looks good in theory(the "format" page) bu...
2004 Sep 10
4
[Flac-users] FLAC 1.0.4 problems
...ile.cpp: In method `bool Flac::FlacFile::open()': FlacFile.cpp:117: implicit declaration of function `int Flac::FLAC__file_decoder_process_metadata(...)' FlacFile.cpp: In method `bool Flac::FlacFile::processOneFrame()': FlacFile.cpp:150: implicit declaration of function `int Flac::FLAC__file_decoder_process_one_frame(...)' make[3]: *** [FlacFile.lo] Error 1 Any ideas? -- Alec ________________________________________________________________________ Alec Wood, Senior Programmer Analyst Network Services & Information Technologies, University of Chicago
2004 Sep 10
0
Fwd: Odd xmms plugin behavior
...et > Subject: Odd xmms plugin behavior > > While testing out the xmms plugin, I found that the 0.8 plugin would not play a > file I had just previously encoded with the 0.8 encoder. The file tested and > decoded fine. I added some debugging statements and such, and found that > FLAC__file_decoder_process_one_frame was setting status to > FLAC__FILE_DECODER_STREAM_ERROR. As I said, the 'flac' decoder could decode > the file just fine, and unless I'm mistaken, that uses the file > decoder also. > > The only odd thing about the input wave file was that it was 8bit mono > (22050H...
2004 Sep 10
0
Re: Odd xmms plugin behavior
...an <mdz@debian.org> wrote: > While testing out the xmms plugin, I found that the 0.8 plugin would > not play a > file I had just previously encoded with the 0.8 encoder. The file > tested and > decoded fine. I added some debugging statements and such, and found > that > FLAC__file_decoder_process_one_frame was setting status to > FLAC__FILE_DECODER_STREAM_ERROR. As I said, the 'flac' decoder could > decode > the file just fine, and unless I'm mistaken, that uses the file > decoder also. > > The only odd thing about the input wave file was that it was 8bit > mono &g...
2004 Sep 10
0
[Flac-users] FLAC 1.0.4 problems
...Flac::FlacFile::open()': > FlacFile.cpp:117: implicit declaration of function `int > Flac::FLAC__file_decoder_process_metadata(...)' > FlacFile.cpp: In method `bool Flac::FlacFile::processOneFrame()': > FlacFile.cpp:150: implicit declaration of function `int > Flac::FLAC__file_decoder_process_one_frame(...)' > make[3]: *** [FlacFile.lo] Error 1 The libFLAC API changed in 1.0.4 enough to break the FLAC support in alsaplayer. It had to be done but there will be much less of that in the future. It is relatively easy to fix if you pass the errors on to the author. Josh _______________...