diff options
author | Anton Khirnov <anton@khirnov.net> | 2014-04-29 08:00:03 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2014-05-01 09:24:18 +0200 |
commit | a2941c8cb216bdc144953cace64973f5600ffa2d (patch) | |
tree | debc8a02c1758e32cf1cd061fe3cc5d533b85f47 /libavcodec/options_table.h | |
parent | 6484149158b6fc6d13d2b2ef84cb26a2d3275400 (diff) | |
download | ffmpeg-a2941c8cb216bdc144953cace64973f5600ffa2d.tar.gz |
lavc: move CODEC_FLAG_MV0 to mpegvideo
Diffstat (limited to 'libavcodec/options_table.h')
-rw-r--r-- | libavcodec/options_table.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/options_table.h b/libavcodec/options_table.h index 684286d6f7..6825e6274a 100644 --- a/libavcodec/options_table.h +++ b/libavcodec/options_table.h @@ -55,7 +55,9 @@ static const AVOption avcodec_options[] = { #if FF_API_GMC {"gmc", "use gmc", 0, AV_OPT_TYPE_CONST, {.i64 = CODEC_FLAG_GMC }, INT_MIN, INT_MAX, V|E, "flags"}, #endif +#if FF_API_MV0 {"mv0", "always try a mb with mv=<0,0>", 0, AV_OPT_TYPE_CONST, {.i64 = CODEC_FLAG_MV0 }, INT_MIN, INT_MAX, V|E, "flags"}, +#endif #if FF_API_INPUT_PRESERVED {"input_preserved", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = CODEC_FLAG_INPUT_PRESERVED }, INT_MIN, INT_MAX, 0, "flags"}, #endif |