diff avcodec.h @ 954:13aec7e50c52 libavcodec

qpel in mmx2/3dnow qpel refinement quality parameter
author michaelni
date Sun, 05 Jan 2003 15:57:10 +0000
parents 9eb066d6e0db
children c5aef83c6a3f
line wrap: on
line diff
--- a/avcodec.h	Fri Jan 03 23:21:52 2003 +0000
+++ b/avcodec.h	Sun Jan 05 15:57:10 2003 +0000
@@ -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 @@
      * decoding: unused
      */
     int me_pre_cmp;
-    
+
     /**
      * ME pre pass diamond size & shape
      * encoding: set by user.
@@ -917,6 +917,13 @@
      */
     int pre_dia_size;
 
+    /**
+     * subpel ME quality
+     * encoding: set by user.
+     * decoding: unused
+     */
+    int me_subpel_quality;
+
 } AVCodecContext;
 
 typedef struct AVCodec {