summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Everton <dan@iocaine.org>2007-12-09 03:54:12 +0000
committerDan Everton <dan@iocaine.org>2007-12-09 03:54:12 +0000
commit19f487b451b026833a6d9aaeabcec756c9e9f2b7 (patch)
tree52aa957a3741b9648b6b6a07c0c4f1c0f8dc6832
parent147980e1e59acaebbcd4755547212b709a6de5c7 (diff)
downloadrockbox-19f487b451b026833a6d9aaeabcec756c9e9f2b7.tar.gz
rockbox-19f487b451b026833a6d9aaeabcec756c9e9f2b7.zip
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
-rw-r--r--apps/codecs/libfaad/cfft.c4
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,
849 849
850void cfftf(cfft_info *cfft, complex_t *c) 850void cfftf(cfft_info *cfft, complex_t *c)
851{ 851{
852 cfftf1neg(cfft->n, c, cfft->work, (const uint16_t*)cfft->ifac, (const complex_t*)cfft->tab, (const int8_t) -1); 852 cfftf1neg(cfft->n, c, cfft->work, (const uint16_t*)cfft->ifac, (const complex_t*)cfft->tab, -1);
853} 853}
854 854
855void cfftb(cfft_info *cfft, complex_t *c) 855void cfftb(cfft_info *cfft, complex_t *c)
856{ 856{
857 cfftf1pos(cfft->n, c, cfft->work, (const uint16_t*)cfft->ifac, (const complex_t*)cfft->tab, (const int8_t) +1); 857 cfftf1pos(cfft->n, c, cfft->work, (const uint16_t*)cfft->ifac, (const complex_t*)cfft->tab, +1);
858} 858}
859 859
860static void cffti1(uint16_t n, complex_t *wa, uint16_t *ifac) 860static void cffti1(uint16_t n, complex_t *wa, uint16_t *ifac)