1
0
Fork 0
forked from len0rd/rockbox

crossfeed_data needn't be initialized for every target

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12506 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Michael Sevakis 2007-02-27 14:42:38 +00:00
parent 6fbdb912b0
commit 342337031c

View file

@ -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