aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/avcodec.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2003-01-02 01:29:35 +0000
committerMichael Niedermayer <michaelni@gmx.at>2003-01-02 01:29:35 +0000
commitf5fb6b34fd1053d1fcb61e4f35de8fa8befb834b (patch)
tree4ce82906776a8321eb11c553ab68c0fe343c7726 /libavcodec/avcodec.h
parent0a13093de85c0077810fcafdaceb7f98c1d75743 (diff)
downloadffmpeg-f5fb6b34fd1053d1fcb61e4f35de8fa8befb834b.tar.gz
motion estimation pre pass
Originally committed as revision 1389 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r--libavcodec/avcodec.h11
1 files changed, 9 insertions, 2 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h
index 9ad87aedd4..7833741268 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 4649
-#define LIBAVCODEC_BUILD_STR "4649"
+#define LIBAVCODEC_BUILD 4650
+#define LIBAVCODEC_BUILD_STR "4650"
enum CodecID {
CODEC_ID_NONE,
@@ -894,6 +894,13 @@ typedef struct AVCodecContext {
* decoding: unused
*/
int last_predictor_count;
+
+ /**
+ * pre pass for motion estimation
+ * encoding: set by user.
+ * decoding: unused
+ */
+ int pre_me;
} AVCodecContext;