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.S5
1 files changed, 4 insertions, 1 deletions
diff --git a/apps/dsp_arm.S b/apps/dsp_arm.S
index b90e632782..f924569bc5 100644
--- a/apps/dsp_arm.S
+++ b/apps/dsp_arm.S
@@ -18,6 +18,7 @@
18 * KIND, either express or implied. 18 * KIND, either express or implied.
19 * 19 *
20 ****************************************************************************/ 20 ****************************************************************************/
21 #include "config.h"
21 22
22/**************************************************************************** 23/****************************************************************************
23 * void channels_process_sound_chan_mono(int count, int32_t *buf[]) 24 * void channels_process_sound_chan_mono(int count, int32_t *buf[])
@@ -83,7 +84,8 @@ channels_process_sound_chan_karaoke:
83 ldmfd sp!, {r4-r5, pc} 84 ldmfd sp!, {r4-r5, pc}
84.karaokeend: 85.karaokeend:
85 .size channels_process_sound_chan_karaoke,.karaokeend-channels_process_sound_chan_karaoke 86 .size channels_process_sound_chan_karaoke,.karaokeend-channels_process_sound_chan_karaoke
86 87
88#if ARM_ARCH < 6
87/**************************************************************************** 89/****************************************************************************
88 * void sample_output_mono(int count, struct dsp_data *data, 90 * void sample_output_mono(int count, struct dsp_data *data,
89 * const int32_t *src[], int16_t *dst) 91 * const int32_t *src[], int16_t *dst)
@@ -195,6 +197,7 @@ sample_output_stereo:
195 ldmfd sp!, {r4-r10, pc} 197 ldmfd sp!, {r4-r10, pc}
196.sosend: 198.sosend:
197 .size sample_output_stereo,.sosend-sample_output_stereo 199 .size sample_output_stereo,.sosend-sample_output_stereo
200#endif /* ARM_ARCH < 6 */
198 201
199/**************************************************************************** 202/****************************************************************************
200 * void apply_crossfeed(int count, int32_t* src[]) 203 * void apply_crossfeed(int count, int32_t* src[])