aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/avcodec.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2002-12-18 10:09:43 +0000
committerMichael Niedermayer <michaelni@gmx.at>2002-12-18 10:09:43 +0000
commit17a70fdeeff1260ac9b2651ea9f36dbd23d0ced8 (patch)
tree86edc0afa4880c8ed87d5c76192dde4f120f8dda /libavcodec/avcodec.h
parent8fc698950b5fdbb947ae8718e10adca6bd1560fa (diff)
downloadffmpeg-17a70fdeeff1260ac9b2651ea9f36dbd23d0ced8.tar.gz
mb qp limits
Originally committed as revision 1340 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r--libavcodec/avcodec.h19
1 files changed, 17 insertions, 2 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h
index 1cad8c2eae..606cfd814b 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 4645
-#define LIBAVCODEC_BUILD_STR "4645"
+#define LIBAVCODEC_BUILD 4646
+#define LIBAVCODEC_BUILD_STR "4646"
enum CodecID {
CODEC_ID_NONE,
@@ -828,6 +828,7 @@ typedef struct AVCodecContext {
#define FF_DEBUG_QP 16
#define FF_DEBUG_MV 32
#define FF_DEBUG_VIS_MV 64
+#define FF_DEBUG_SKIP 128
/**
* error
@@ -835,6 +836,20 @@ typedef struct AVCodecContext {
* decoding: unused
*/
uint64_t error[4];
+
+ /**
+ * minimum MB quantizer
+ * encoding: set by user.
+ * decoding: unused
+ */
+ int mb_qmin;
+
+ /**
+ * maximum MB quantizer
+ * encoding: set by user.
+ * decoding: unused
+ */
+ int mb_qmax;
} AVCodecContext;
typedef struct AVCodec {