diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2006-01-04 16:31:23 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2006-01-04 16:31:23 +0000 |
commit | 27c61ac53df2876b80633ec5b69229d06f466131 (patch) | |
tree | 101f0b40585121ad3c4b120f68b5ee05b66c8051 /libavcodec/avcodec.h | |
parent | 702200358197a0ea5ea82d1d6540c785bb04fae4 (diff) | |
download | ffmpeg-27c61ac53df2876b80633ec5b69229d06f466131.tar.gz |
8x8 integer dct from x264 as cmp function (under CONFIG_GPL)
if this gives better quality then SATD then someone should port the x86 code too or maybe we could even just call it from libx264
the 4x4 one could be tried too ...
Originally committed as revision 4811 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index a9ab7962d3..0aafb03f4c 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -1402,6 +1402,7 @@ typedef struct AVCodecContext { #define FF_CMP_W53 11 #define FF_CMP_W97 12 #define FF_CMP_DCTMAX 13 +#define FF_CMP_DCT264 14 #define FF_CMP_CHROMA 256 /** |