From 0dd5d0937a5f41711501d36c08afac2adc96e040 Mon Sep 17 00:00:00 2001 From: reimar Date: Tue, 12 Jan 2010 22:21:21 +0000 Subject: Avoid linking in assembler-optimized code that will never be used. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30297 b3059339-0415-0410-9bf9-f77b7e298cf2 --- libmpeg2/motion_comp_mmx.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/libmpeg2/motion_comp_mmx.c b/libmpeg2/motion_comp_mmx.c index b550f8c7c9..d89c2bd591 100644 --- a/libmpeg2/motion_comp_mmx.c +++ b/libmpeg2/motion_comp_mmx.c @@ -36,6 +36,7 @@ #define CPU_3DNOW 1 +#if HAVE_MMX /* MMX code - needs a rewrite */ /* @@ -496,6 +497,7 @@ static void MC_put_y_8_mmx (uint8_t * dest, const uint8_t * ref, MPEG2_MC_EXTERN (mmx) +#endif /* HAVE_MMX */ @@ -802,6 +804,8 @@ static inline void MC_avg4_16 (int height, uint8_t * dest, const uint8_t * ref, } while (--height); } +#if HAVE_MMX2 + static void MC_avg_o_16_mmxext (uint8_t * dest, const uint8_t * ref, int stride, int height) { @@ -901,7 +905,9 @@ static void MC_put_xy_8_mmxext (uint8_t * dest, const uint8_t * ref, MPEG2_MC_EXTERN (mmxext) +#endif /* HAVE_MMX2 */ +#if HAVE_AMD3DNOW static void MC_avg_o_16_3dnow (uint8_t * dest, const uint8_t * ref, int stride, int height) @@ -1002,4 +1008,6 @@ static void MC_put_xy_8_3dnow (uint8_t * dest, const uint8_t * ref, MPEG2_MC_EXTERN (3dnow) +#endif /* HAVE_AMD3DNOW */ + #endif -- cgit v1.2.3