diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2007-03-01 10:29:03 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2007-03-01 10:29:03 +0000 |
commit | 6b936ec6622e0ffe4181ba4fb9a9a192f3f2b79f (patch) | |
tree | 60b19a02dbf555ac420b59a21df520c3a1c154b3 /libavcodec/avcodec.h | |
parent | abd6a4fc5394f211b95a003a45a632b2ca8ee4df (diff) | |
download | ffmpeg-6b936ec6622e0ffe4181ba4fb9a9a192f3f2b79f.tar.gz |
get rid of CODEC_FLAG_H263P_AIC with next major bump
Originally committed as revision 8167 to svn://svn.ffmpeg.org/ffmpeg/trunk
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 ebba4257d6..1b36cda5d3 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -355,7 +355,9 @@ typedef struct RcOverride{ #define CODEC_FLAG_GLOBAL_HEADER 0x00400000 ///< place global headers in extradata instead of every keyframe #define CODEC_FLAG_BITEXACT 0x00800000 ///< use only bitexact stuff (except (i)dct) /* Fx : Flag for h263+ extra options */ +#if LIBAVCODEC_VERSION_INT < ((52<<16)+(0<<8)+0) #define CODEC_FLAG_H263P_AIC 0x01000000 ///< H263 Advanced intra coding / MPEG4 AC prediction (remove this) +#endif #define CODEC_FLAG_AC_PRED 0x01000000 ///< H263 Advanced intra coding / MPEG4 AC prediction #define CODEC_FLAG_H263P_UMV 0x02000000 ///< Unlimited motion vector #define CODEC_FLAG_CBP_RD 0x04000000 ///< use rate distortion optimization for cbp |