x86: rv40dsp: Move inline assembly optimizations out of YASM init section
authorDiego Biurrun <diego@biurrun.de>
Tue, 20 Aug 2013 13:26:02 +0000 (15:26 +0200)
committerDiego Biurrun <diego@biurrun.de>
Wed, 28 Aug 2013 21:59:24 +0000 (23:59 +0200)
libavcodec/x86/rv40dsp_init.c

index d9b66af..aeb9072 100644 (file)
@@ -213,18 +213,21 @@ static void avg_rv40_qpel16_mc33_mmx(uint8_t *dst, uint8_t *src,
 
 av_cold void ff_rv40dsp_init_x86(RV34DSPContext *c)
 {
-#if HAVE_YASM
     int cpu_flags = av_get_cpu_flags();
 
-    if (EXTERNAL_MMX(cpu_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_MMX_INLINE
+    if (INLINE_MMX(cpu_flags)) {
         c->put_pixels_tab[0][15] = put_rv40_qpel16_mc33_mmx;
         c->put_pixels_tab[1][15] = put_rv40_qpel8_mc33_mmx;
         c->avg_pixels_tab[0][15] = avg_rv40_qpel16_mc33_mmx;
         c->avg_pixels_tab[1][15] = avg_rv40_qpel8_mc33_mmx;
+    }
 #endif /* HAVE_MMX_INLINE */
+
+#if HAVE_YASM
+    if (EXTERNAL_MMX(cpu_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 ARCH_X86_32
         QPEL_MC_SET(put_, _mmx)
 #endif