Mercurial > libavcodec.hg
changeset 12042:dc4feabd4dab libavcodec
Fix 100L in vp8dsp asm init
author | darkshikari |
---|---|
date | Thu, 01 Jul 2010 22:09:22 +0000 |
parents | 6681ac7bc917 |
children | f9a0bd0888a4 |
files | x86/vp8dsp-init.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/x86/vp8dsp-init.c Thu Jul 01 21:08:20 2010 +0000 +++ b/x86/vp8dsp-init.c Thu Jul 01 22:09:22 2010 +0000 @@ -243,10 +243,10 @@ 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) {