Revert previous 'fix'. Did not actually fix the warning as I wasn't paying attention.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15899 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
147980e1e5
commit
19f487b451
1 changed files with 2 additions and 2 deletions
|
@ -849,12 +849,12 @@ static INLINE void cfftf1neg(uint16_t n, complex_t *c, complex_t *ch,
|
||||||
|
|
||||||
void cfftf(cfft_info *cfft, complex_t *c)
|
void cfftf(cfft_info *cfft, complex_t *c)
|
||||||
{
|
{
|
||||||
cfftf1neg(cfft->n, c, cfft->work, (const uint16_t*)cfft->ifac, (const complex_t*)cfft->tab, (const int8_t) -1);
|
cfftf1neg(cfft->n, c, cfft->work, (const uint16_t*)cfft->ifac, (const complex_t*)cfft->tab, -1);
|
||||||
}
|
}
|
||||||
|
|
||||||
void cfftb(cfft_info *cfft, complex_t *c)
|
void cfftb(cfft_info *cfft, complex_t *c)
|
||||||
{
|
{
|
||||||
cfftf1pos(cfft->n, c, cfft->work, (const uint16_t*)cfft->ifac, (const complex_t*)cfft->tab, (const int8_t) +1);
|
cfftf1pos(cfft->n, c, cfft->work, (const uint16_t*)cfft->ifac, (const complex_t*)cfft->tab, +1);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void cffti1(uint16_t n, complex_t *wa, uint16_t *ifac)
|
static void cffti1(uint16_t n, complex_t *wa, uint16_t *ifac)
|
||||||
|
|
Loading…
Reference in a new issue