diff vp8dsp.c @ 11975:c3afb5be0d9b libavcodec

First shot at VP8 optimizations: - MMXEXT, SSE2 and SSSE3 MC functions - MMX and SSE4 IDCT dc_add functions Patch by Jason Garrett-Glaser <darkshikari gmail com> and myself.
author rbultje
date Sun, 27 Jun 2010 02:01:45 +0000
parents 356b20a6566d
children 1cffcc7b1470
line wrap: on
line diff
--- a/vp8dsp.c	Sun Jun 27 01:46:29 2010 +0000
+++ b/vp8dsp.c	Sun Jun 27 02:01:45 2010 +0000
@@ -451,4 +451,7 @@
     VP8_BILINEAR_MC_FUNC(0, 16);
     VP8_BILINEAR_MC_FUNC(1, 8);
     VP8_BILINEAR_MC_FUNC(2, 4);
+
+    if (ARCH_X86)
+        ff_vp8dsp_init_x86(dsp);
 }