summaryrefslogtreecommitdiff
path: root/apps/dsp.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/dsp.c')
-rw-r--r--apps/dsp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/dsp.c b/apps/dsp.c
index 21bd00eb52..81a1d29e11 100644
--- a/apps/dsp.c
+++ b/apps/dsp.c
@@ -226,7 +226,7 @@ static int channels_mode = 0;
226static int32_t sw_gain, sw_cross; 226static int32_t sw_gain, sw_cross;
227 227
228extern int current_codec; 228extern int current_codec;
229struct dsp_config *dsp; 229static struct dsp_config *dsp;
230 230
231/* The internal format is 32-bit samples, non-interleaved, stereo. This 231/* The internal format is 32-bit samples, non-interleaved, stereo. This
232 * format is similar to the raw output from several codecs, so the amount 232 * format is similar to the raw output from several codecs, so the amount
@@ -563,7 +563,7 @@ void dsp_set_crossfeed_cross_params(long lf_gain, long hf_gain, long cutoff)
563 * to listen to on headphones with no crossfeed. 563 * to listen to on headphones with no crossfeed.
564 */ 564 */
565#ifndef DSP_HAVE_ASM_CROSSFEED 565#ifndef DSP_HAVE_ASM_CROSSFEED
566void apply_crossfeed(int32_t* src[], int count) 566static void apply_crossfeed(int32_t* src[], int count)
567{ 567{
568 int32_t *hist_l = &crossfeed_data.history[0]; 568 int32_t *hist_l = &crossfeed_data.history[0];
569 int32_t *hist_r = &crossfeed_data.history[2]; 569 int32_t *hist_r = &crossfeed_data.history[2];