diff options
author | Loren Merritt <lorenm@u.washington.edu> | 2007-03-30 19:15:31 +0000 |
---|---|---|
committer | Loren Merritt <lorenm@u.washington.edu> | 2007-03-30 19:15:31 +0000 |
commit | 5900637219ccccdd39ddafa4e7181da20b8e1f1b (patch) | |
tree | 7281321fc627bdc6f48aedc5dfb98e7719f85aa1 /libavcodec/dsputil.h | |
parent | 0c0d17f3ce9dc5bbf3a7c3b85f3fe95e3dbbb482 (diff) | |
download | ffmpeg-5900637219ccccdd39ddafa4e7181da20b8e1f1b.tar.gz |
mmx 16-bit ssd. 2.3x faster svq1 encoding.
Originally committed as revision 8559 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/dsputil.h')
-rw-r--r-- | libavcodec/dsputil.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/dsputil.h b/libavcodec/dsputil.h index 157426748c..19849dd246 100644 --- a/libavcodec/dsputil.h +++ b/libavcodec/dsputil.h @@ -200,6 +200,8 @@ typedef struct DSPContext { me_cmp_func ildct_cmp[5]; //only width 16 used me_cmp_func frame_skip_cmp[5]; //only width 8 used + int (*ssd_int8_vs_int16)(int8_t *pix1, int16_t *pix2, int size); + /** * Halfpel motion compensation with rounding (a+b+1)>>1. * this is an array[4][4] of motion compensation funcions for 4 |