diff options
author | Ramiro Polla <ramiro.polla@gmail.com> | 2009-12-21 02:09:17 +0000 |
---|---|---|
committer | Ramiro Polla <ramiro.polla@gmail.com> | 2009-12-21 02:09:17 +0000 |
commit | 27daa420fc83daeb07f2d2a4a7c4f0112d888076 (patch) | |
tree | 16d4667a4a2a453f1657532b0faaf60abea63192 /ffmpeg.c | |
parent | aaba7e6c66fab2b3b844fc10bf6308c6e01675c4 (diff) | |
download | ffmpeg-27daa420fc83daeb07f2d2a4a7c4f0112d888076.tar.gz |
First print the program description and then the basic usage line.
Originally committed as revision 20902 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffmpeg.c')
-rw-r--r-- | ffmpeg.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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); |