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.h | |
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.h')
-rw-r--r-- | libavcodec/vp8dsp.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/vp8dsp.h b/libavcodec/vp8dsp.h index 18d6916985..d0cd6fb8ba 100644 --- a/libavcodec/vp8dsp.h +++ b/libavcodec/vp8dsp.h @@ -66,5 +66,6 @@ void ff_put_vp8_pixels8_c(uint8_t *dst, uint8_t *src, int stride, int h, int x, void ff_put_vp8_pixels4_c(uint8_t *dst, uint8_t *src, int stride, int h, int x, int y); void ff_vp8dsp_init(VP8DSPContext *c); +void ff_vp8dsp_init_x86(VP8DSPContext *c); #endif /* AVCODEC_VP8DSP_H */ |