diff options
author | Michael Niedermayer | 2012-08-20 15:48:21 +0200 |
---|---|---|
committer | Michael Niedermayer | 2012-08-20 15:48:21 +0200 |
commit | 927022a75372b9e127c490c8cd87f027c3957dc3 (patch) | |
tree | 89cdb06c6861be36dfeccb833a7b14d1f0f6ad85 /ffprobe.c | |
parent | a5a0dedf111d6fd4fc41c3e82287f434c8f6c4d3 (diff) | |
parent | d3810c47fe8c9509c28c65c0244e743c1d353daf (diff) |
Merge commit 'd3810c47fe8c9509c28c65c0244e743c1d353daf'
* commit 'd3810c47fe8c9509c28c65c0244e743c1d353daf':
avconv: get rid of ugly casts in the options table.
avconv: try to match codecs by codec descriptor name as a last resort.
avtools: fix show_foo() signatures.
Conflicts:
cmdutils.c
cmdutils.h
cmdutils_common_opts.h
ffmpeg_opt.c
ffplay.c
ffprobe.c
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'ffprobe.c')
-rw-r--r-- | ffprobe.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -2072,7 +2072,7 @@ static void opt_input_file(void *optctx, const char *arg) input_filename = arg; } -static int opt_help(const char *opt, const char *arg) +static int show_help(const char *opt, const char *arg) { av_log_set_callback(log_callback_help); show_usage(); @@ -2080,7 +2080,6 @@ static int opt_help(const char *opt, const char *arg) printf("\n"); show_help_children(avformat_get_class(), AV_OPT_FLAG_DECODING_PARAM); - return 0; } |