diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2004-12-08 18:02:56 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2004-12-08 18:02:56 +0000 |
commit | 0fd6aea1f1cc1ceaf2da578ce22d53427ddc4047 (patch) | |
tree | bfdbeb798149ef065faef506b7cafdf58dc81548 /libavcodec/dsputil.h | |
parent | bbf18b21b76f61da7df206a3084cd34341de44d0 (diff) | |
download | ffmpeg-0fd6aea1f1cc1ceaf2da578ce22d53427ddc4047.tar.gz |
more flexible frame skip decission
Originally committed as revision 3743 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 10c0360e10..2eb1ed404b 100644 --- a/libavcodec/dsputil.h +++ b/libavcodec/dsputil.h @@ -172,12 +172,14 @@ typedef struct DSPContext { me_cmp_func nsse[5]; me_cmp_func w53[5]; me_cmp_func w97[5]; + me_cmp_func dct_max[5]; me_cmp_func me_pre_cmp[5]; me_cmp_func me_cmp[5]; me_cmp_func me_sub_cmp[5]; me_cmp_func mb_cmp[5]; me_cmp_func ildct_cmp[5]; //only width 16 used + me_cmp_func frame_skip_cmp[5]; //only width 8 used /** * Halfpel motion compensation with rounding (a+b+1)>>1. |