From 0178d14fe53762e432f64353d36cc4c757fb867f Mon Sep 17 00:00:00 2001 From: Jason Garrett-Glaser Date: Sun, 27 Jun 2010 02:01:45 +0000 Subject: First shot at VP8 optimizations: - MMXEXT, SSE2 and SSSE3 MC functions - MMX and SSE4 IDCT dc_add functions Patch by Jason Garrett-Glaser and myself. Originally committed as revision 23815 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/vp8dsp.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'libavcodec/vp8dsp.c') diff --git a/libavcodec/vp8dsp.c b/libavcodec/vp8dsp.c index 78ca9099d8..4fb602522f 100644 --- a/libavcodec/vp8dsp.c +++ b/libavcodec/vp8dsp.c @@ -451,4 +451,7 @@ av_cold void ff_vp8dsp_init(VP8DSPContext *dsp) 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); } -- cgit v1.2.3