Browse Source

First print the program description and then the basic usage line.

Originally committed as revision 20902 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.6
Ramiro Polla 15 years ago
parent
commit
27daa420fc
2 changed files with 4 additions and 4 deletions
  1. +2
    -2
      ffmpeg.c
  2. +2
    -2
      ffplay.c

+ 2
- 2
ffmpeg.c View File

@@ -3566,8 +3566,8 @@ static void log_callback_help(void* ptr, int level, const char* fmt, va_list vl)
static void show_help(void)
{
av_log_set_callback(log_callback_help);
printf("usage: ffmpeg [[infile options] -i infile]... {[outfile options] outfile}...\n"
"Hyper fast Audio and Video encoder\n");
printf("Hyper fast Audio and Video encoder\n");
printf("usage: ffmpeg [[infile options] -i infile]... {[outfile options] outfile}...\n");
printf("\n");
show_help_options(options, "Main options:\n",
OPT_EXPERT | OPT_AUDIO | OPT_VIDEO | OPT_SUBTITLE | OPT_GRAB, 0);


+ 2
- 2
ffplay.c View File

@@ -2492,8 +2492,8 @@ static const OptionDef options[] = {

static void show_help(void)
{
printf("usage: ffplay [options] input_file\n"
"Simple media player\n");
printf("Simple media player\n");
printf("usage: ffplay [options] input_file\n");
printf("\n");
show_help_options(options, "Main options:\n",
OPT_EXPERT, 0);


Loading…
Cancel
Save