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-05 19:54:10 +02:00
parent d19d01bf62
commit f101eab1be
22 changed files with 41 additions and 40 deletions

View File

@@ -258,7 +258,7 @@ av_cold int ff_lpc_init(LPCContext *s, int blocksize, int max_order,
s->lpc_apply_welch_window = lpc_apply_welch_window_c;
s->lpc_compute_autocorr = lpc_compute_autocorr_c;
if (HAVE_MMX)
if (ARCH_X86)
ff_lpc_init_x86(s);
return 0;