Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-05-01 19:03:59 +0400
committerMichael Niedermayer <michaelni@gmx.at>2014-05-01 19:03:59 +0400
commite77b9853ea66ef6c34b04d121c5b3d1afaa33971 (patch)
treed29ef557ca9f706269711b2a31663d956f237996 /libavcodec/avcodec.h
parente40ae8cc00ae7e485a64a5b3b40b73dbfd32b631 (diff)
parenta2941c8cb216bdc144953cace64973f5600ffa2d (diff)
Merge commit 'a2941c8cb216bdc144953cace64973f5600ffa2d'
* commit 'a2941c8cb216bdc144953cace64973f5600ffa2d': lavc: move CODEC_FLAG_MV0 to mpegvideo Conflicts: libavcodec/version.h Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r--libavcodec/avcodec.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h
index 883f6cdf1c..35ecc6df9a 100644
--- a/libavcodec/avcodec.h
+++ b/libavcodec/avcodec.h
@@ -751,7 +751,13 @@ typedef struct RcOverride{
*/
#define CODEC_FLAG_GMC 0x0020 ///< Use GMC.
#endif
-#define CODEC_FLAG_MV0 0x0040 ///< Always try a MB with MV=<0,0>.
+#if FF_API_MV0
+/**
+ * @deprecated use the flag "mv0" in the "mpv_flags" private option of the
+ * mpegvideo encoders
+ */
+#define CODEC_FLAG_MV0 0x0040
+#endif
#if FF_API_INPUT_PRESERVED
/**
* @deprecated passing reference-counted frames to the encoders replaces this