x86: call most of the x86 dsp init functions under if (ARCH_X86)

Rename the called dsp init functions to *_init_x86.
This commit is contained in:
Janne Grunau
2012-10-08 11:54:05 +02:00
parent d19d01bf62
commit f101eab1be
22 changed files with 41 additions and 40 deletions
+2 -2
View File
@@ -209,8 +209,8 @@ av_cold int ff_dct_init(DCTContext *s, int nbits, enum DCTTransformType inverse)
}
s->dct32 = ff_dct32_float;
if (HAVE_MMX)
ff_dct_init_mmx(s);
if (ARCH_X86)
ff_dct_init_x86(s);
return 0;
}