diff options
author | Tim Nicholson <tim.nicholson@bbc.co.uk> | 2015-04-02 17:41:22 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-04-02 20:04:00 +0200 |
commit | 27565ace60d404def06d3a3b82e2e3813ca5a36d (patch) | |
tree | fff89da197bd12310a86c1a78396f78575af2e30 /ffmpeg_opt.c | |
parent | c299fbbb22f59d1a3ea14819c18bb6b25526c33c (diff) | |
download | ffmpeg-27565ace60d404def06d3a3b82e2e3813ca5a36d.tar.gz |
ffmpeg_opt.c: fix regression introduced in 5743095c
-vtag is an input and output option.
Signed-off-by: Tim Nicholson <tim.nicholson@bbc.co.uk>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'ffmpeg_opt.c')
-rw-r--r-- | ffmpeg_opt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ffmpeg_opt.c b/ffmpeg_opt.c index fb7490adf6..15eee0bd32 100644 --- a/ffmpeg_opt.c +++ b/ffmpeg_opt.c @@ -3040,7 +3040,7 @@ const OptionDef options[] = { OPT_INPUT | OPT_OUTPUT, { .off = OFFSET(top_field_first) }, "top=1/bottom=0/auto=-1 field first", "" }, { "vtag", OPT_VIDEO | HAS_ARG | OPT_EXPERT | OPT_PERFILE | - OPT_OUTPUT, { .func_arg = opt_old2new }, + OPT_INPUT | OPT_OUTPUT, { .func_arg = opt_old2new }, "force video tag/fourcc", "fourcc/tag" }, { "qphist", OPT_VIDEO | OPT_BOOL | OPT_EXPERT , { &qp_hist }, "show QP histogram" }, |