diff options
author | Janne Grunau <janne-libav@jannau.net> | 2012-10-05 19:54:10 +0200 |
---|---|---|
committer | Janne Grunau <janne-libav@jannau.net> | 2012-10-08 11:54:05 +0200 |
commit | f101eab1be1a296a1a048cd905edfcacc3b546ed (patch) | |
tree | eb1de4a50acb63166fb01fc3fedd00946c322ce2 /libavcodec/x86/rv40dsp_init.c | |
parent | d19d01bf628124e6c93dd8c15d79cc5329f56943 (diff) | |
download | ffmpeg-f101eab1be1a296a1a048cd905edfcacc3b546ed.tar.gz |
x86: call most of the x86 dsp init functions under if (ARCH_X86)
Rename the called dsp init functions to *_init_x86.
Diffstat (limited to 'libavcodec/x86/rv40dsp_init.c')
-rw-r--r-- | libavcodec/x86/rv40dsp_init.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/x86/rv40dsp_init.c b/libavcodec/x86/rv40dsp_init.c index 2b71bb0097..a7d92f724f 100644 --- a/libavcodec/x86/rv40dsp_init.c +++ b/libavcodec/x86/rv40dsp_init.c @@ -195,12 +195,12 @@ void ff_rv40dsp_init_x86(RV34DSPContext *c, DSPContext *dsp) if (EXTERNAL_MMX(mm_flags)) { c->put_chroma_pixels_tab[0] = ff_put_rv40_chroma_mc8_mmx; c->put_chroma_pixels_tab[1] = ff_put_rv40_chroma_mc4_mmx; -#if HAVE_INLINE_ASM +#if HAVE_MMX_INLINE c->put_pixels_tab[0][15] = ff_put_rv40_qpel16_mc33_mmx; c->put_pixels_tab[1][15] = ff_put_rv40_qpel8_mc33_mmx; c->avg_pixels_tab[0][15] = ff_avg_rv40_qpel16_mc33_mmx; c->avg_pixels_tab[1][15] = ff_avg_rv40_qpel8_mc33_mmx; -#endif /* HAVE_INLINE_ASM */ +#endif /* HAVE_MMX_INLINE */ #if ARCH_X86_32 QPEL_MC_SET(put_, _mmx) #endif |