diff options
author | Fabrice Bellard <fabrice@bellard.org> | 2003-08-24 15:29:48 +0000 |
---|---|---|
committer | Fabrice Bellard <fabrice@bellard.org> | 2003-08-24 15:29:48 +0000 |
commit | 02d504a7d3f0546374cc02ecff45390a0d4faa6b (patch) | |
tree | 2828dfbc4e4779424e5d105b981fdc23a707375e /ffplay.c | |
parent | 18bff7520e2fb844411b1d206d519ed695f63d2d (diff) | |
download | ffmpeg-02d504a7d3f0546374cc02ecff45390a0d4faa6b.tar.gz |
more sections in help - copyright fixes
Originally committed as revision 2143 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffplay.c')
-rw-r--r-- | ffplay.c | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -1634,10 +1634,14 @@ const OptionDef options[] = { void show_help(void) { - printf("usage: ffplay [options] input_file\n" + printf("ffplay version " FFMPEG_VERSION ", Copyright (c) 2003 Fabrice Bellard\n" + "usage: ffplay [options] input_file\n" "Simple media player\n"); printf("\n"); - show_help_options(options); + show_help_options(options, "Main options:\n", + OPT_EXPERT, 0); + show_help_options(options, "\nAdvanced options:\n", + OPT_EXPERT, OPT_EXPERT); printf("\nWhile playing:\n" "q, ESC quit\n" "f toggle full screen\n" |