From 27565ace60d404def06d3a3b82e2e3813ca5a36d Mon Sep 17 00:00:00 2001 From: Tim Nicholson Date: Thu, 2 Apr 2015 17:41:22 +0100 Subject: [PATCH] ffmpeg_opt.c: fix regression introduced in 5743095c -vtag is an input and output option. Signed-off-by: Tim Nicholson Signed-off-by: Michael Niedermayer --- ffmpeg_opt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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" },