diff options
author | Steve Bavin <pondlife@pondlife.me> | 2009-06-12 07:20:50 +0000 |
---|---|---|
committer | Steve Bavin <pondlife@pondlife.me> | 2009-06-12 07:20:50 +0000 |
commit | fb2380790edbdb2176a21fe28739a41fb978ce6e (patch) | |
tree | 29ad077356a1463394ceb22f81a057f300ee57d7 /apps/dsp_cf.S | |
parent | 9e3255fdb043d8651bfdbd8be06986d12a7d66eb (diff) |
FS#8894 - Add time stretching feature to all SWCODEC targets - the current algorithm is best for spoken word.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21258 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/dsp_cf.S')
-rw-r--r-- | apps/dsp_cf.S | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/dsp_cf.S b/apps/dsp_cf.S index d8869fcb09..cda811a7d5 100644 --- a/apps/dsp_cf.S +++ b/apps/dsp_cf.S @@ -191,7 +191,7 @@ dsp_downsample: /**************************************************************************** * int dsp_upsample(int count, struct dsp_data *dsp, - * int32_t *src[], int32_t *dst[]) + * const int32_t *src[], int32_t *dst[]) */ .section .text .align 2 @@ -395,7 +395,7 @@ channels_process_sound_chan_karaoke: /**************************************************************************** * void sample_output_stereo(int count, struct dsp_data *data, - * int32_t *src[], int16_t *dst) + * const int32_t *src[], int16_t *dst) * * Framework based on the ubiquitous Rockbox line transfer logic for * Coldfire CPUs. @@ -517,7 +517,7 @@ sample_output_stereo: /**************************************************************************** * void sample_output_mono(int count, struct dsp_data *data, - * int32_t *src[], int16_t *dst) + * const int32_t *src[], int16_t *dst) * * Same treatment as sample_output_stereo but for one channel. */ |