forked from len0rd/rockbox
Fix resampling clicking as much as possible at the moment. 1) Upsampling clicked because of size inaccuracies returned by DSP. Fix by simplifying audio system to use per-channel sample count from codec to pcm buffer. 2) Downsampling affected by 1) and was often starting passed the end of the data when not enough was available to generate an output sample. Fix by clamping input range to last sample in buffer and using the last sample value in the buffer. A perfect fix will require a double buffering scheme on the resampler to sufficient data during small data transients on both ends at all times of the down ratio on input and the up ratio on output.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12218 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
dd50c863e6
commit
aba6ca0881
21 changed files with 170 additions and 256 deletions
|
@ -78,7 +78,6 @@ struct codec_api ci = {
|
|||
0, /* seek_time */
|
||||
NULL, /* get_codec_memory */
|
||||
NULL, /* pcmbuf_insert */
|
||||
NULL, /* pcmbuf_insert_split */
|
||||
NULL, /* set_elapsed */
|
||||
NULL, /* read_filebuf */
|
||||
NULL, /* request_buffer */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue