search for: paranoia_buffer

Displaying 2 results from an estimated 2 matches for "paranoia_buffer".

2006 Jun 17
3
Assistance with an encoding plugin
...isn't doing anything at the moment (one thing at a time :-) ). Now one thing that I see which may be causing my issue is the fact that paranoia is extracting to an int16_t buffer whereas the FLAC functions are expecting an int32_t buffer. I've tried doing the following to convert int16_t *paranoia_buffer int32_t *flac_buffer for(j = 0; j < n; ++j) flac_buffer[j] = paranoia_buffer[j]; and then using flac_buffer for the encoding, to no avail. Other than that, I have no idea what I may be doing wrong. Thanks, -- Ryan Newberry http://ripoffc.sourceforge.net "All mankind is divided into th...
2006 Jun 19
0
Assistance with an encoding plugin
...the moment (one thing at a >time :-) ). > >Now one thing that I see which may be causing my issue is the fact that >paranoia is extracting to an int16_t buffer whereas the FLAC functions >are expecting an int32_t buffer. I've tried doing the following to convert > >int16_t *paranoia_buffer >int32_t *flac_buffer > >for(j = 0; j < n; ++j) >flac_buffer[j] = paranoia_buffer[j]; > >and then using flac_buffer for the encoding, to no avail. Other than >that, I have no idea what I may be doing wrong. Have you actually checked that the data from the CD (before comp...