diff options
author | Anton Khirnov <anton@khirnov.net> | 2013-02-18 16:32:18 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2013-04-19 09:28:08 +0200 |
commit | 5e83d9aced2fc2b2e1360452794c58aba55d497c (patch) | |
tree | 8504e1b7e82eae9ff30a42db618bbfa73610a049 /libavcodec/options_table.h | |
parent | a7f46586bf47174b5fa00a905b767b1781ec8b72 (diff) | |
download | ffmpeg-5e83d9aced2fc2b2e1360452794c58aba55d497c.tar.gz |
h264: fully support cropping.
Based on a patch by Vittorio Giovara <vittorio.giovara@gmail.com>
Fixes Bug 378.
Diffstat (limited to 'libavcodec/options_table.h')
-rw-r--r-- | libavcodec/options_table.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/options_table.h b/libavcodec/options_table.h index e1b124b31c..5595c0e4f5 100644 --- a/libavcodec/options_table.h +++ b/libavcodec/options_table.h @@ -46,6 +46,7 @@ static const AVOption options[]={ "to minimum/maximum bitrate. Lowering tolerance too much has an adverse effect on quality.", OFFSET(bit_rate_tolerance), AV_OPT_TYPE_INT, {.i64 = AV_CODEC_DEFAULT_BITRATE*20 }, 1, INT_MAX, V|E}, {"flags", NULL, OFFSET(flags), AV_OPT_TYPE_FLAGS, {.i64 = DEFAULT }, 0, UINT_MAX, V|A|E|D, "flags"}, +{"unaligned", "allow decoders to produce unaligned output", 0, AV_OPT_TYPE_CONST, { .i64 = CODEC_FLAG_UNALIGNED }, INT_MIN, INT_MAX, V | D, "flags" }, {"mv4", "use four motion vectors per macroblock (MPEG-4)", 0, AV_OPT_TYPE_CONST, {.i64 = CODEC_FLAG_4MV }, INT_MIN, INT_MAX, V|E, "flags"}, {"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"}, |