summaryrefslogtreecommitdiff
path: root/libavcodec/vp8dsp.c
diff options
context:
space:
mode:
authorJason Garrett-Glaser <darkshikari@gmail.com>2010-06-27 02:01:45 +0000
committerRonald S. Bultje <rsbultje@gmail.com>2010-06-27 02:01:45 +0000
commit0178d14fe53762e432f64353d36cc4c757fb867f (patch)
treeb861beb8c7032cb2b9ec602afb40e6289cd9ca5b /libavcodec/vp8dsp.c
parent21f45508ba3f4744ed456c87b2d8af035b263676 (diff)
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. Originally committed as revision 23815 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/vp8dsp.c')
-rw-r--r--libavcodec/vp8dsp.c3
1 files changed, 3 insertions, 0 deletions
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);
}