summaryrefslogtreecommitdiff
path: root/libavcodec
diff options
context:
space:
mode:
authorJason Garrett-Glaser <darkshikari@gmail.com>2010-07-01 22:09:22 +0000
committerJason Garrett-Glaser <darkshikari@gmail.com>2010-07-01 22:09:22 +0000
commit8434fc26ebc677320a42d86fcdcd1775d55f7c5a (patch)
treebcb582c84824b65caa1100bc7e06729941d94653 /libavcodec
parentd9da8f101fa6061d5e9cb63a990ae04d976c7c37 (diff)
Fix 100L in vp8dsp asm init
Originally committed as revision 23946 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/x86/vp8dsp-init.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/x86/vp8dsp-init.c b/libavcodec/x86/vp8dsp-init.c
index 4958ff794b..fbdc2c70c8 100644
--- a/libavcodec/x86/vp8dsp-init.c
+++ b/libavcodec/x86/vp8dsp-init.c
@@ -243,10 +243,10 @@ av_cold void ff_vp8dsp_init_x86(VP8DSPContext* c)
c->vp8_luma_dc_wht = ff_vp8_luma_dc_wht_mmxext;
VP8_LUMA_MC_FUNC(0, 16, mmxext);
VP8_MC_FUNC(1, 8, mmxext);
- VP8_MC_FUNC(1, 4, mmxext);
+ VP8_MC_FUNC(2, 4, mmxext);
VP8_BILINEAR_MC_FUNC(0, 16, mmxext);
VP8_BILINEAR_MC_FUNC(1, 8, mmxext);
- VP8_BILINEAR_MC_FUNC(1, 4, mmxext);
+ VP8_BILINEAR_MC_FUNC(2, 4, mmxext);
}
if (mm_flags & FF_MM_SSE) {