diff avcodec.h @ 1086:d3b93dc997a3 libavcodec

user specified motion estimation range limit h263 me range fixed (was smaller then needed)
author michaelni
date Thu, 27 Feb 2003 22:56:07 +0000
parents 9acf4b552047
children 03df246fb06b
line wrap: on
line diff
--- a/avcodec.h	Wed Feb 26 17:26:20 2003 +0000
+++ b/avcodec.h	Thu Feb 27 22:56:07 2003 +0000
@@ -16,8 +16,8 @@
 
 #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 @@
 #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);