summaryrefslogtreecommitdiff
path: root/ffmpeg.c
diff options
context:
space:
mode:
authorBaptiste Coudurier <baptiste.coudurier@gmail.com>2010-05-12 01:47:14 +0000
committerBaptiste Coudurier <baptiste.coudurier@gmail.com>2010-05-12 01:47:14 +0000
commit521cfa4aaea59b9c3ea85019aa05171635fddfe7 (patch)
treeabcd43ffed13b4fc1db8016918d7f360e61a0fd1 /ffmpeg.c
parent3b7117b73a2b88e8c36ed9bd23324370b027f2ee (diff)
rename -vfilters cli option to -vf
Originally committed as revision 23100 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffmpeg.c')
-rw-r--r--ffmpeg.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ffmpeg.c b/ffmpeg.c
index a782a5c09f..5889a05ef4 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -2819,7 +2819,7 @@ static void opt_frame_size(const char *arg)
}
static void opt_pad(const char *arg) {
- fprintf(stderr, "Please use vfilters=pad\n");
+ fprintf(stderr, "Please use vf=pad\n");
av_exit(1);
}
@@ -4197,7 +4197,7 @@ static const OptionDef options[] = {
{ "vstats", OPT_EXPERT | OPT_VIDEO, {(void*)&opt_vstats}, "dump video coding statistics to file" },
{ "vstats_file", HAS_ARG | OPT_EXPERT | OPT_VIDEO, {(void*)opt_vstats_file}, "dump video coding statistics to file", "file" },
#if CONFIG_AVFILTER
- { "vfilters", OPT_STRING | HAS_ARG, {(void*)&vfilters}, "video filters", "filter list" },
+ { "vf", OPT_STRING | HAS_ARG, {(void*)&vfilters}, "video filters", "filter list" },
#endif
{ "intra_matrix", HAS_ARG | OPT_EXPERT | OPT_VIDEO, {(void*)opt_intra_matrix}, "specify intra matrix coeffs", "matrix" },
{ "inter_matrix", HAS_ARG | OPT_EXPERT | OPT_VIDEO, {(void*)opt_inter_matrix}, "specify inter matrix coeffs", "matrix" },