summaryrefslogtreecommitdiff
path: root/apps/dsp_asm.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/dsp_asm.h')
-rw-r--r--apps/dsp_asm.h24
1 files changed, 17 insertions, 7 deletions
diff --git a/apps/dsp_asm.h b/apps/dsp_asm.h
index add76a07f8..aaf7e666ec 100644
--- a/apps/dsp_asm.h
+++ b/apps/dsp_asm.h
@@ -24,16 +24,26 @@
24 24
25#if defined(CPU_COLDFIRE) || defined(CPU_ARM) 25#if defined(CPU_COLDFIRE) || defined(CPU_ARM)
26#define DSP_HAVE_ASM_CROSSFEED 26#define DSP_HAVE_ASM_CROSSFEED
27void apply_crossfeed(int32_t* src[], int count); 27void apply_crossfeed(int32_t *src[], int count);
28#endif 28#endif
29 29
30#if defined (CPU_COLDFIRE) 30#if defined (CPU_COLDFIRE)
31#define DSP_HAVE_ASM_RESAMPLING 31#define DSP_HAVE_ASM_RESAMPLING
32int dsp_downsample(int channels, int count, void *resample_data, 32int dsp_downsample(int count, struct dsp_data *data, int32_t *src[], int32_t *dst[]);
33 int32_t **src, int32_t **dst); 33int dsp_upsample(int count, struct dsp_data *data, int32_t *src[], int32_t *dst[]);
34int dsp_upsample(int channels, int count, void *resample_data,
35 int32_t **src, int32_t **dst);
36#endif
37 34
38#endif /* _DSP_ASM_H */ 35#define DSP_HAVE_ASM_SOUND_CHAN_MONO
36void channels_process_sound_chan_mono(int count, int32_t *buf[]);
37#define DSP_HAVE_ASM_SOUND_CHAN_CUSTOM
38void channels_process_sound_chan_custom(int count, int32_t *buf[]);
39#define DSP_HAVE_ASM_SOUND_CHAN_KARAOKE
40void channels_process_sound_chan_karaoke(int count, int32_t *buf[]);
39 41
42#define DSP_HAVE_ASM_SAMPLE_OUTPUT_MONO
43void sample_output_mono(int count, struct dsp_data *data,
44 int32_t *src[], int16_t *dst);
45#define DSP_HAVE_ASM_SAMPLE_OUTPUT_STEREO
46void sample_output_stereo(int count, struct dsp_data *data,
47 int32_t *src[], int16_t *dst);
48#endif
49#endif /* _DSP_ASM_H */