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:
parent
6fbdb912b0
commit
342337031c
1 changed files with 4 additions and 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_mask IBSS_ATTR;
|
||||||
static long dither_bias IBSS_ATTR;
|
static long dither_bias IBSS_ATTR;
|
||||||
/* Crossfeed */
|
/* Crossfeed */
|
||||||
|
#ifdef DSP_CROSSFEED_DELAY_PTR
|
||||||
struct crossfeed_data crossfeed_data IDATA_ATTR = /* A */
|
struct crossfeed_data crossfeed_data IDATA_ATTR = /* A */
|
||||||
{
|
{
|
||||||
#ifdef DSP_CROSSFEED_DELAY_PTR
|
|
||||||
.index = (intptr_t)crossfeed_data.delay
|
.index = (intptr_t)crossfeed_data.delay
|
||||||
|
};
|
||||||
#else
|
#else
|
||||||
.index = 0
|
struct crossfeed_data crossfeed_data IBSS_ATTR; /* A */
|
||||||
#endif
|
#endif
|
||||||
};
|
|
||||||
/* Equalizer */
|
/* Equalizer */
|
||||||
static struct eq_state eq_data; /* A/V */
|
static struct eq_state eq_data; /* A/V */
|
||||||
#ifdef HAVE_SW_TONE_CONTROLS
|
#ifdef HAVE_SW_TONE_CONTROLS
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue