diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-08-22 07:55:34 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-08-31 10:23:26 +0200 |
commit | 5d4a1048ee251cf7cb2da7d24f23da6d8a34459a (patch) | |
tree | de9ba27495746f14e901a5f76184f5f810c5698b /libavcodec/avcodec.h | |
parent | faaecd47082413bcbd94a66ead544c4227fe243e (diff) | |
download | ffmpeg-5d4a1048ee251cf7cb2da7d24f23da6d8a34459a.tar.gz |
libx264: add 'intra-refresh' private option.
Deprecate CODEC_FLAG2_INTRA_REFRESH.
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 6e16625842..ea05ed4102 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -625,8 +625,8 @@ typedef struct RcOverride{ #define CODEC_FLAG2_PSY 0x00080000 ///< Use psycho visual optimizations. #if FF_API_X264_GLOBAL_OPTS #define CODEC_FLAG2_SSIM 0x00100000 ///< Compute SSIM during encoding, error[] values are undefined. -#endif #define CODEC_FLAG2_INTRA_REFRESH 0x00200000 ///< Use periodic insertion of intra blocks instead of keyframes. +#endif /* Unsupported options : * Syntax Arithmetic coding (SAC) |