diff options
| author | Michael Sevakis <jethead71@rockbox.org> | 2007-02-27 14:42:38 +0000 |
|---|---|---|
| committer | Michael Sevakis <jethead71@rockbox.org> | 2007-02-27 14:42:38 +0000 |
| commit | 342337031cc7c20c141fb11a0d7aa900e89e022e (patch) | |
| tree | d289cddc70623b3029177e86059a4aa12bf59da9 | |
| parent | 6fbdb912b0416d573dd2656310a5035063df3fe5 (diff) | |
| download | rockbox-342337031cc7c20c141fb11a0d7aa900e89e022e.zip rockbox-342337031cc7c20c141fb11a0d7aa900e89e022e.tar.gz rockbox-342337031cc7c20c141fb11a0d7aa900e89e022e.tar.bz2 rockbox-342337031cc7c20c141fb11a0d7aa900e89e022e.tar.xz | |
crossfeed_data needn't be initialized for every target
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12506 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | apps/dsp.c | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -175,14 +175,15 @@ static struct dither_data dither_data[2] IBSS_ATTR; /* 0=left, 1=right */ static long dither_mask IBSS_ATTR; static long dither_bias IBSS_ATTR; /* Crossfeed */ +#ifdef DSP_CROSSFEED_DELAY_PTR struct crossfeed_data crossfeed_data IDATA_ATTR = /* A */ { -#ifdef DSP_CROSSFEED_DELAY_PTR .index = (intptr_t)crossfeed_data.delay +}; #else - .index = 0 +struct crossfeed_data crossfeed_data IBSS_ATTR; /* A */ #endif -}; + /* Equalizer */ static struct eq_state eq_data; /* A/V */ #ifdef HAVE_SW_TONE_CONTROLS |