Displaying 2 results from an estimated 2 matches for "flac_buff".
Did you mean:
flac_buffer
2006 Jun 17
3
Assistance with an encoding plugin
...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 three classes: those...
2006 Jun 19
0
Assistance with an encoding plugin
...t;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
compression) is actually co...