Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Nicholson <tim.nicholson@bbc.co.uk>2015-04-02 19:41:22 +0300
committerMichael Niedermayer <michaelni@gmx.at>2015-04-02 21:04:00 +0300
commit27565ace60d404def06d3a3b82e2e3813ca5a36d (patch)
treefff89da197bd12310a86c1a78396f78575af2e30 /ffmpeg_opt.c
parentc299fbbb22f59d1a3ea14819c18bb6b25526c33c (diff)
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.c2
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" },