diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-08-27 09:57:36 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-08-31 13:21:59 +0200 |
commit | 88262ca87df1054209ef6db255b521e412fd78fc (patch) | |
tree | 65624e7716e57ba6873c470380c3a5dd8f1cca31 /libavcodec/avcodec.h | |
parent | 2c5e1efc093084f1cb4e55b8c06c267801828965 (diff) | |
download | ffmpeg-88262ca87df1054209ef6db255b521e412fd78fc.tar.gz |
mpeg2enc: add 'non_linear_quant' private option
Deprecate CODEC_FLAG2_NON_LINEAR_QUANT
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 5791911a2f..f8a8006c89 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -625,7 +625,9 @@ typedef struct RcOverride{ #endif #define CODEC_FLAG2_SKIP_RD 0x00004000 ///< RD optimal MB level residual skipping #define CODEC_FLAG2_CHUNKS 0x00008000 ///< Input bitstream might be truncated at a packet boundaries instead of only at frame boundaries. +#if FF_API_MPEGVIDEO_GLOBAL_OPTS #define CODEC_FLAG2_NON_LINEAR_QUANT 0x00010000 ///< Use MPEG-2 nonlinear quantizer. +#endif #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) #define CODEC_FLAG2_PSY 0x00080000 ///< Use psycho visual optimizations. |