diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-09-01 13:15:09 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-09-07 07:27:18 +0200 |
commit | 0635a8aa21d0495575c24f1883c1e6832d882657 (patch) | |
tree | bd2eec67ab06168fb23b4205022f68c20dfa96e3 /libavcodec/avcodec.h | |
parent | 7042337673ee75300a6f668fbcf3074213b06977 (diff) | |
download | ffmpeg-0635a8aa21d0495575c24f1883c1e6832d882657.tar.gz |
libx264: add 'partitions' private option
Deprecate AVCodecContext.partitions.
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 828382a0b5..7eb4a01291 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -2472,19 +2472,19 @@ typedef struct AVCodecContext { * - decoding: unused */ attribute_deprecated int deblockbeta; -#endif /** * macroblock subpartition sizes to consider - p8x8, p4x4, b8x8, i8x8, i4x4 * - encoding: Set by user. * - decoding: unused */ - int partitions; + attribute_deprecated int partitions; #define X264_PART_I4X4 0x001 /* Analyze i4x4 */ #define X264_PART_I8X8 0x002 /* Analyze i8x8 (requires 8x8 transform) */ #define X264_PART_P8X8 0x010 /* Analyze p16x8, p8x16 and p8x8 */ #define X264_PART_P4X4 0x020 /* Analyze p8x4, p4x8, p4x4 */ #define X264_PART_B8X8 0x100 /* Analyze b16x8, b8x16 and b8x8 */ +#endif /** * direct MV prediction mode - 0 (none), 1 (spatial), 2 (temporal), 3 (auto) |