summaryrefslogtreecommitdiff
path: root/avconv_opt.c
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2012-08-11 19:33:27 +0200
committerAnton Khirnov <anton@khirnov.net>2012-08-19 19:21:03 +0200
commitdc4c24a3d35603957aecf2b075ac25902d18a190 (patch)
tree78ccdd568412fe73054f78fecef7bc12ef0ad74a /avconv_opt.c
parent79600a83543afd7c485e30e1e9958765aadf7882 (diff)
avtools: move some newlines to show_help_options().
Don't require every caller to supply them.
Diffstat (limited to 'avconv_opt.c')
-rw-r--r--avconv_opt.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/avconv_opt.c b/avconv_opt.c
index 295cc27ba3..8915a865c9 100644
--- a/avconv_opt.c
+++ b/avconv_opt.c
@@ -1794,24 +1794,24 @@ static int show_help(const char *opt, const char *arg)
int flags = AV_OPT_FLAG_DECODING_PARAM | AV_OPT_FLAG_ENCODING_PARAM;
av_log_set_callback(log_callback_help);
show_usage();
- show_help_options(options, "Main options:\n",
+ show_help_options(options, "Main options:",
OPT_EXPERT | OPT_AUDIO | OPT_VIDEO | OPT_SUBTITLE, 0);
- show_help_options(options, "\nAdvanced options:\n",
+ show_help_options(options, "Advanced options:",
OPT_EXPERT | OPT_AUDIO | OPT_VIDEO | OPT_SUBTITLE,
OPT_EXPERT);
- show_help_options(options, "\nVideo options:\n",
+ show_help_options(options, "Video options:",
OPT_EXPERT | OPT_AUDIO | OPT_VIDEO,
OPT_VIDEO);
- show_help_options(options, "\nAdvanced Video options:\n",
+ show_help_options(options, "Advanced Video options:",
OPT_EXPERT | OPT_AUDIO | OPT_VIDEO,
OPT_VIDEO | OPT_EXPERT);
- show_help_options(options, "\nAudio options:\n",
+ show_help_options(options, "Audio options:",
OPT_EXPERT | OPT_AUDIO | OPT_VIDEO,
OPT_AUDIO);
- show_help_options(options, "\nAdvanced Audio options:\n",
+ show_help_options(options, "Advanced Audio options:",
OPT_EXPERT | OPT_AUDIO | OPT_VIDEO,
OPT_AUDIO | OPT_EXPERT);
- show_help_options(options, "\nSubtitle options:\n",
+ show_help_options(options, "Subtitle options:",
OPT_SUBTITLE, OPT_SUBTITLE);
printf("\n");
show_help_children(avcodec_get_class(), flags);