1
0
Fork 0
forked from len0rd/rockbox

Modify the ffmpeg source files in apps/codecs/libwmapro in order to compile the codec standalone.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25764 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Mohamed Tarek 2010-04-30 12:20:25 +00:00
parent cf43e5083b
commit fe147cec65
18 changed files with 123 additions and 52 deletions

View file

@ -109,11 +109,11 @@ av_cold int ff_fft_init(FFTContext *s, int nbits, int inverse)
#endif
s->exptab1 = NULL;
s->split_radix = 1;
#if 0
if (ARCH_ARM) ff_fft_init_arm(s);
if (HAVE_ALTIVEC) ff_fft_init_altivec(s);
if (HAVE_MMX) ff_fft_init_mmx(s);
#endif
if (s->split_radix) {
for(j=4; j<=nbits; j++) {
ff_init_ff_cos_tabs(j);