diff options
author | Anton Khirnov <anton@khirnov.net> | 2014-04-29 08:08:43 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2014-05-01 09:24:02 +0200 |
commit | 6484149158b6fc6d13d2b2ef84cb26a2d3275400 (patch) | |
tree | e05317f2538eba8042c44d890457b07d5e90eaa4 /libavcodec/avcodec.h | |
parent | b2c31710c96fa47d9dcd40b64d39663e8957f683 (diff) | |
download | ffmpeg-6484149158b6fc6d13d2b2ef84cb26a2d3275400.tar.gz |
lavc: make the xvid-specific "gmc" flag a private option of libxvid
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 6c430fecaf..6ffc717b23 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -669,7 +669,12 @@ typedef struct RcOverride{ #define CODEC_FLAG_4MV 0x0004 ///< 4 MV per MB allowed / advanced prediction for H.263. #define CODEC_FLAG_OUTPUT_CORRUPT 0x0008 ///< Output even those frames that might be corrupted #define CODEC_FLAG_QPEL 0x0010 ///< Use qpel MC. +#if FF_API_GMC +/** + * @deprecated use the "gmc" private option of the libxvid encoder + */ #define CODEC_FLAG_GMC 0x0020 ///< Use GMC. +#endif #define CODEC_FLAG_MV0 0x0040 ///< Always try a MB with MV=<0,0>. #if FF_API_INPUT_PRESERVED /** |