diff options
author | Dan Everton <dan@iocaine.org> | 2007-12-09 03:54:12 +0000 |
---|---|---|
committer | Dan Everton <dan@iocaine.org> | 2007-12-09 03:54:12 +0000 |
commit | 19f487b451b026833a6d9aaeabcec756c9e9f2b7 (patch) | |
tree | 52aa957a3741b9648b6b6a07c0c4f1c0f8dc6832 /apps/codecs | |
parent | 147980e1e59acaebbcd4755547212b709a6de5c7 (diff) |
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
Diffstat (limited to 'apps/codecs')
-rw-r--r-- | apps/codecs/libfaad/cfft.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/codecs/libfaad/cfft.c b/apps/codecs/libfaad/cfft.c index dc74ebeee8..eecfe4bc69 100644 --- a/apps/codecs/libfaad/cfft.c +++ b/apps/codecs/libfaad/cfft.c @@ -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) { - 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) { - 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) |