Commit 8434fc26 authored by Jason Garrett-Glaser's avatar Jason Garrett-Glaser

Fix 100L in vp8dsp asm init

Originally committed as revision 23946 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent d9da8f10
...@@ -243,10 +243,10 @@ av_cold void ff_vp8dsp_init_x86(VP8DSPContext* 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; c->vp8_luma_dc_wht = ff_vp8_luma_dc_wht_mmxext;
VP8_LUMA_MC_FUNC(0, 16, mmxext); VP8_LUMA_MC_FUNC(0, 16, mmxext);
VP8_MC_FUNC(1, 8, 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(0, 16, mmxext);
VP8_BILINEAR_MC_FUNC(1, 8, 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) { if (mm_flags & FF_MM_SSE) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment