diff options
author | Jason Garrett-Glaser <darkshikari@gmail.com> | 2010-06-27 02:01:45 +0000 |
---|---|---|
committer | Ronald S. Bultje <rsbultje@gmail.com> | 2010-06-27 02:01:45 +0000 |
commit | 0178d14fe53762e432f64353d36cc4c757fb867f (patch) | |
tree | b861beb8c7032cb2b9ec602afb40e6289cd9ca5b /libavcodec/vp8dsp.c | |
parent | 21f45508ba3f4744ed456c87b2d8af035b263676 (diff) | |
download | ffmpeg-0178d14fe53762e432f64353d36cc4c757fb867f.tar.gz |
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.c | 3 |
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); } |