diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2003-01-05 15:57:10 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2003-01-05 15:57:10 +0000 |
commit | 826f429ae9990632a04b06bd375afa54ffe54b76 (patch) | |
tree | dce2b6a89402130f5e3c6a9426063a47991f285b /libavcodec/avcodec.h | |
parent | 70ac76c0eb13d74d2001e83d7803f3dc0299f86a (diff) | |
download | ffmpeg-826f429ae9990632a04b06bd375afa54ffe54b76.tar.gz |
qpel in mmx2/3dnow
qpel refinement quality parameter
Originally committed as revision 1393 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 08dd8c99f0..ae96558c95 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -5,8 +5,8 @@ #define LIBAVCODEC_VERSION_INT 0x000406 #define LIBAVCODEC_VERSION "0.4.6" -#define LIBAVCODEC_BUILD 4651 -#define LIBAVCODEC_BUILD_STR "4651" +#define LIBAVCODEC_BUILD 4652 +#define LIBAVCODEC_BUILD_STR "4652" enum CodecID { CODEC_ID_NONE, @@ -909,7 +909,7 @@ typedef struct AVCodecContext { * decoding: unused */ int me_pre_cmp; - + /** * ME pre pass diamond size & shape * encoding: set by user. @@ -917,6 +917,13 @@ typedef struct AVCodecContext { */ int pre_dia_size; + /** + * subpel ME quality + * encoding: set by user. + * decoding: unused + */ + int me_subpel_quality; + } AVCodecContext; typedef struct AVCodec { |