comparison src/aac/libfaad2/cfft.c @ 2316:62391135da44

fixed some warnings
author Cristi Magherusan <majeru@atheme.org>
date Tue, 15 Jan 2008 12:35:54 +0200
parents e6c5fdae6e88
children 31754b406cd6
comparison
equal deleted inserted replaced
2315:8f3476f7a696 2316:62391135da44
847 } 847 }
848 } 848 }
849 849
850 void cfftf(cfft_info *cfft, complex_t *c) 850 void 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, -1); 852 cfftf1neg(cfft->n, c, cfft->work, (const uint16_t*)cfft->ifac, (const complex_t*)(void*)&(cfft->tab), -1);
853 } 853 }
854 854
855 void cfftb(cfft_info *cfft, complex_t *c) 855 void 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, +1); 857 cfftf1pos(cfft->n, c, cfft->work, (const uint16_t*)cfft->ifac, (const complex_t*)(void*)&(cfft->tab), +1);
858 } 858 }
859 859
860 static void cffti1(uint16_t n, complex_t *wa, uint16_t *ifac) 860 static void cffti1(uint16_t n, complex_t *wa, uint16_t *ifac)
861 { 861 {
862 static uint16_t ntryh[4] = {3, 4, 2, 5}; 862 static uint16_t ntryh[4] = {3, 4, 2, 5};