summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/dsp.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/apps/dsp.c b/apps/dsp.c
index 1da7372de6..d27df0500c 100644
--- a/apps/dsp.c
+++ b/apps/dsp.c
@@ -175,14 +175,15 @@ static struct dither_data dither_data[2] IBSS_ATTR; /* 0=left, 1=right */
175static long dither_mask IBSS_ATTR; 175static long dither_mask IBSS_ATTR;
176static long dither_bias IBSS_ATTR; 176static long dither_bias IBSS_ATTR;
177/* Crossfeed */ 177/* Crossfeed */
178#ifdef DSP_CROSSFEED_DELAY_PTR
178struct crossfeed_data crossfeed_data IDATA_ATTR = /* A */ 179struct crossfeed_data crossfeed_data IDATA_ATTR = /* A */
179{ 180{
180#ifdef DSP_CROSSFEED_DELAY_PTR
181 .index = (intptr_t)crossfeed_data.delay 181 .index = (intptr_t)crossfeed_data.delay
182};
182#else 183#else
183 .index = 0 184struct crossfeed_data crossfeed_data IBSS_ATTR; /* A */
184#endif 185#endif
185}; 186
186/* Equalizer */ 187/* Equalizer */
187static struct eq_state eq_data; /* A/V */ 188static struct eq_state eq_data; /* A/V */
188#ifdef HAVE_SW_TONE_CONTROLS 189#ifdef HAVE_SW_TONE_CONTROLS