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/options_table.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/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 b48a4fd543..684286d6f7 100644 --- a/libavcodec/options_table.h +++ b/libavcodec/options_table.h @@ -52,7 +52,9 @@ static const AVOption avcodec_options[] = { {"qpel", "use 1/4-pel motion compensation", 0, AV_OPT_TYPE_CONST, {.i64 = CODEC_FLAG_QPEL }, INT_MIN, INT_MAX, V|E, "flags"}, {"loop", "use loop filter", 0, AV_OPT_TYPE_CONST, {.i64 = CODEC_FLAG_LOOP_FILTER }, INT_MIN, INT_MAX, V|E, "flags"}, {"qscale", "use fixed qscale", 0, AV_OPT_TYPE_CONST, {.i64 = CODEC_FLAG_QSCALE }, INT_MIN, INT_MAX, 0, "flags"}, +#if FF_API_GMC {"gmc", "use gmc", 0, AV_OPT_TYPE_CONST, {.i64 = CODEC_FLAG_GMC }, INT_MIN, INT_MAX, V|E, "flags"}, +#endif {"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"}, #if FF_API_INPUT_PRESERVED {"input_preserved", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = CODEC_FLAG_INPUT_PRESERVED }, INT_MIN, INT_MAX, 0, "flags"}, |