diff options
author | Erik Slagter <erik@slagter.name> | 2009-12-08 20:01:46 +0000 |
---|---|---|
committer | Jason Garrett-Glaser <darkshikari@gmail.com> | 2009-12-08 20:01:46 +0000 |
commit | 25a42948c63e347391c98f3e95524244e7e7f628 (patch) | |
tree | 4c918c119f47ccc7202556d9a920ace310fcf9ad /libavcodec/avcodec.h | |
parent | f6586314193048073e7d8771e9114c4beb3917cc (diff) | |
download | ffmpeg-25a42948c63e347391c98f3e95524244e7e7f628.tar.gz |
Add MBtree support for libx264
Patch by Erik Slagter
Originally committed as revision 20774 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index f4fe7d676a..90f29963da 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -580,6 +580,7 @@ typedef struct RcOverride{ #define CODEC_FLAG2_CHUNKS 0x00008000 ///< Input bitstream might be truncated at a packet boundaries instead of only at frame boundaries. #define CODEC_FLAG2_NON_LINEAR_QUANT 0x00010000 ///< Use MPEG-2 nonlinear quantizer. #define CODEC_FLAG2_BIT_RESERVOIR 0x00020000 ///< Use a bit reservoir when encoding if possible +#define CODEC_FLAG2_MBTREE 0x00040000 ///< Use macroblock tree ratecontrol (x264 only) /* Unsupported options : * Syntax Arithmetic coding (SAC) |