summaryrefslogtreecommitdiff
path: root/avconv.c
diff options
context:
space:
mode:
authorMans Rullgard <mans@mansr.com>2011-10-07 13:29:03 +0100
committerMans Rullgard <mans@mansr.com>2011-10-09 16:53:06 +0100
commit8124d8ad6654d9b26725e86f6fffbb00527975d4 (patch)
tree53173dedcc0b644764fbb531fddc06ac69350541 /avconv.c
parentf5646a325b94a077bf9849d5f6a4b3d4e69ed37b (diff)
avtools: add -v as alias for -loglevel
This saves a bit of typing. Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'avconv.c')
-rw-r--r--avconv.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/avconv.c b/avconv.c
index 9b69e1dad7..03c419dcb2 100644
--- a/avconv.c
+++ b/avconv.c
@@ -2548,12 +2548,6 @@ static int transcode(OutputFile *output_files,
return ret;
}
-static int opt_verbose(const char *opt, const char *arg)
-{
- av_log(NULL, AV_LOG_WARNING, "-%s is deprecated, use -loglevel\n", opt);
- return 0;
-}
-
static double parse_frame_aspect_ratio(const char *arg)
{
int x = 0, y = 0;
@@ -3967,7 +3961,6 @@ static const OptionDef options[] = {
{ "hex", OPT_BOOL | OPT_EXPERT, {(void*)&do_hex_dump},
"when dumping packets, also dump the payload" },
{ "re", OPT_BOOL | OPT_EXPERT | OPT_OFFSET, {.off = OFFSET(rate_emu)}, "read input at native frame rate", "" },
- { "v", HAS_ARG, {(void*)opt_verbose}, "deprecated, use -loglevel instead", "number" },
{ "target", HAS_ARG | OPT_FUNC2, {(void*)opt_target}, "specify target file type (\"vcd\", \"svcd\", \"dvd\", \"dv\", \"dv50\", \"pal-vcd\", \"ntsc-svcd\", ...)", "type" },
{ "vsync", HAS_ARG | OPT_INT | OPT_EXPERT, {(void*)&video_sync_method}, "video sync method", "" },
{ "async", HAS_ARG | OPT_INT | OPT_EXPERT, {(void*)&audio_sync_method}, "audio sync method", "" },