summaryrefslogtreecommitdiff
path: root/apps/dsp_arm.S
diff options
context:
space:
mode:
Diffstat (limited to 'apps/dsp_arm.S')
-rw-r--r--apps/dsp_arm.S4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/dsp_arm.S b/apps/dsp_arm.S
index 5b43c3bb5b..11b7ba7141 100644
--- a/apps/dsp_arm.S
+++ b/apps/dsp_arm.S
@@ -86,7 +86,7 @@ channels_process_sound_chan_karaoke:
86 86
87/**************************************************************************** 87/****************************************************************************
88 * void sample_output_mono(int count, struct dsp_data *data, 88 * void sample_output_mono(int count, struct dsp_data *data,
89 int32_t *src[], int16_t *dst) 89 * const int32_t *src[], int16_t *dst)
90 * NOTE: The following code processes two samples at once. When count is odd, 90 * NOTE: The following code processes two samples at once. When count is odd,
91 * there is an additional obsolete sample processed, which will not be 91 * there is an additional obsolete sample processed, which will not be
92 * used by the calling functions. 92 * used by the calling functions.
@@ -136,7 +136,7 @@ sample_output_mono:
136 136
137/**************************************************************************** 137/****************************************************************************
138 * void sample_output_stereo(int count, struct dsp_data *data, 138 * void sample_output_stereo(int count, struct dsp_data *data,
139 int32_t *src[], int16_t *dst) 139 * const int32_t *src[], int16_t *dst)
140 * NOTE: The following code processes two samples at once. When count is odd, 140 * NOTE: The following code processes two samples at once. When count is odd,
141 * there is an additional obsolete sample processed, which will not be 141 * there is an additional obsolete sample processed, which will not be
142 * used by the calling functions. 142 * used by the calling functions.