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.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/dsp_asm.h b/apps/dsp_asm.h
index 64373d3eea..85db57b6ef 100644
--- a/apps/dsp_asm.h
+++ b/apps/dsp_asm.h
@@ -54,9 +54,9 @@ void dsp_apply_gain(int count, struct dsp_data *data, int32_t *buf[]);
54 54
55#ifdef DSP_HAVE_ASM_RESAMPLING 55#ifdef DSP_HAVE_ASM_RESAMPLING
56int dsp_upsample(int count, struct dsp_data *data, 56int dsp_upsample(int count, struct dsp_data *data,
57 int32_t *src[], int32_t *dst[]); 57 const int32_t *src[], int32_t *dst[]);
58int dsp_downsample(int count, struct dsp_data *data, 58int dsp_downsample(int count, struct dsp_data *data,
59 int32_t *src[], int32_t *dst[]); 59 const int32_t *src[], int32_t *dst[]);
60#endif /* DSP_HAVE_ASM_RESAMPLING */ 60#endif /* DSP_HAVE_ASM_RESAMPLING */
61 61
62#ifdef DSP_HAVE_ASM_SOUND_CHAN_MONO 62#ifdef DSP_HAVE_ASM_SOUND_CHAN_MONO
@@ -73,12 +73,12 @@ void channels_process_sound_chan_karaoke(int count, int32_t *buf[]);
73 73
74#ifdef DSP_HAVE_ASM_SAMPLE_OUTPUT_STEREO 74#ifdef DSP_HAVE_ASM_SAMPLE_OUTPUT_STEREO
75void sample_output_stereo(int count, struct dsp_data *data, 75void sample_output_stereo(int count, struct dsp_data *data,
76 int32_t *src[], int16_t *dst); 76 const int32_t *src[], int16_t *dst);
77#endif 77#endif
78 78
79#ifdef DSP_HAVE_ASM_SAMPLE_OUTPUT_MONO 79#ifdef DSP_HAVE_ASM_SAMPLE_OUTPUT_MONO
80void sample_output_mono(int count, struct dsp_data *data, 80void sample_output_mono(int count, struct dsp_data *data,
81 int32_t *src[], int16_t *dst); 81 const int32_t *src[], int16_t *dst);
82#endif 82#endif
83 83
84#endif /* _DSP_ASM_H */ 84#endif /* _DSP_ASM_H */