diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-08-27 10:16:14 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-08-31 13:27:59 +0200 |
commit | e3922d1110772baee10def844367f961c8c728d5 (patch) | |
tree | 50cbebc0f9fccb219ad45305e4fe3694714188c4 /libavcodec/avcodec.h | |
parent | 9bb2d1a3f0ea3595fafad32d6ee1261506f57bb4 (diff) | |
download | ffmpeg-e3922d1110772baee10def844367f961c8c728d5.tar.gz |
h263p encoder: add 'aiv' private option.
Deprecate CODEC_FLAG_H263P_AIV
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 bc01f4559c..993ed785e8 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -604,7 +604,9 @@ typedef struct RcOverride{ #endif #define CODEC_FLAG_CBP_RD 0x04000000 ///< Use rate distortion optimization for cbp. #define CODEC_FLAG_QP_RD 0x08000000 ///< Use rate distortion optimization for qp selectioon. +#if FF_API_MPEGVIDEO_GLOBAL_OPTS #define CODEC_FLAG_H263P_AIV 0x00000008 ///< H.263 alternative inter VLC +#endif #define CODEC_FLAG_OBMC 0x00000001 ///< OBMC #define CODEC_FLAG_LOOP_FILTER 0x00000800 ///< loop filter #define CODEC_FLAG_H263P_SLICE_STRUCT 0x10000000 |