aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/avcodec.h
diff options
context:
space:
mode:
authorChristophe Massiot <cmassiot@freebox.fr>2005-02-02 18:49:04 +0000
committerMichael Niedermayer <michaelni@gmx.at>2005-02-02 18:49:04 +0000
commit957c743a23881636dcc1da307ad9c4ac6b65f7ac (patch)
treecae7538bce03ce319f09862e58576a4af094dfce /libavcodec/avcodec.h
parentebaa7e03154e4bec5cbeb7dc839980c67b64c436 (diff)
downloadffmpeg-957c743a23881636dcc1da307ad9c4ac6b65f7ac.tar.gz
Border processing adaptive quant patch by (Christophe Massiot |cmassiot freebox fr)
Originally committed as revision 3927 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r--libavcodec/avcodec.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h
index 85b94425f9..ebb27e536c 100644
--- a/libavcodec/avcodec.h
+++ b/libavcodec/avcodec.h
@@ -17,7 +17,7 @@ extern "C" {
#define FFMPEG_VERSION_INT 0x000409
#define FFMPEG_VERSION "0.4.9-pre1"
-#define LIBAVCODEC_BUILD 4740
+#define LIBAVCODEC_BUILD 4741
#define LIBAVCODEC_VERSION_INT FFMPEG_VERSION_INT
#define LIBAVCODEC_VERSION FFMPEG_VERSION
@@ -1750,6 +1750,14 @@ typedef struct AVCodecContext {
* - decoding: unused
*/
int frame_skip_cmp;
+
+ /**
+ * border processing masking. raises the quantizer for mbs on the borders
+ * of the picture.
+ * - encoding: set by user
+ * - decoding: unused
+ */
+ float border_masking;
} AVCodecContext;