summaryrefslogtreecommitdiff
path: root/libavcodec/x86/vc1dsp_mmx.c
diff options
context:
space:
mode:
authorMichael Kostylev <michael.kostylev@gmail.com>2012-05-11 12:26:44 +0200
committerDiego Biurrun <diego@biurrun.de>2012-05-12 14:02:45 +0200
commitea60dfe284b82fc74569bbd562e68ec48f69f154 (patch)
tree6d568f2c9b4b2a2da1ec6ef29fc821035dbb8f31 /libavcodec/x86/vc1dsp_mmx.c
parentec2dbec84d94129207ed0f2a1151679fab305060 (diff)
x86: vc1: drop MMX loop filter implementation, which uses MMX2 instructions.
Diffstat (limited to 'libavcodec/x86/vc1dsp_mmx.c')
-rw-r--r--libavcodec/x86/vc1dsp_mmx.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/libavcodec/x86/vc1dsp_mmx.c b/libavcodec/x86/vc1dsp_mmx.c
index a525aeeeae..e1f5145735 100644
--- a/libavcodec/x86/vc1dsp_mmx.c
+++ b/libavcodec/x86/vc1dsp_mmx.c
@@ -701,7 +701,6 @@ static void vc1_h_loop_filter16_ ## EXT(uint8_t *src, int stride, int pq) \
}
#if HAVE_YASM
-LOOP_FILTER(mmx)
LOOP_FILTER(mmx2)
LOOP_FILTER(sse2)
LOOP_FILTER(ssse3)
@@ -790,7 +789,6 @@ void ff_vc1dsp_init_mmx(VC1DSPContext *dsp)
#if HAVE_YASM
if (mm_flags & AV_CPU_FLAG_MMX) {
- ASSIGN_LF(mmx);
dsp->put_no_rnd_vc1_chroma_pixels_tab[0]= ff_put_vc1_chroma_mc8_mmx_nornd;
}
return;