diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2003-02-27 22:56:07 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2003-02-27 22:56:07 +0000 |
commit | ebbcdc9ac0ea190748a1605bda86ce84466c8b4e (patch) | |
tree | bb06272b6bbbdbdc0bf2e198a516834c9e59dd6f /libavcodec/avcodec.h | |
parent | 3a13f6bd48be7774d16e6b82df7e96aaaf1d71f5 (diff) | |
download | ffmpeg-ebbcdc9ac0ea190748a1605bda86ce84466c8b4e.tar.gz |
user specified motion estimation range limit
h263 me range fixed (was smaller then needed)
Originally committed as revision 1610 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 0ca39ab936..2d3cec0494 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -16,8 +16,8 @@ extern "C" { #define LIBAVCODEC_VERSION_INT 0x000406 #define LIBAVCODEC_VERSION "0.4.6" -#define LIBAVCODEC_BUILD 4658 -#define LIBAVCODEC_BUILD_STR "4658" +#define LIBAVCODEC_BUILD 4659 +#define LIBAVCODEC_BUILD_STR "4659" enum CodecID { CODEC_ID_NONE, @@ -971,6 +971,15 @@ typedef struct AVCodecContext { #define FF_DTG_AFD_16_9_SP_14_9 14 #define FF_DTG_AFD_SP_4_3 15 + int me_range; + /** + * Maximum motion estimation search range in subpel units. + * if 0 then no limit + * + * encoding: set by user. + * decoding: unused. + */ + } AVCodecContext; //void avcodec_getopt(AVCodecContext* avctx, const char* str, avc_config_t** config); |