summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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)