summaryrefslogtreecommitdiff
path: root/ffplay.c
diff options
context:
space:
mode:
authorFabrice Bellard <fabrice@bellard.org>2003-08-24 15:29:48 +0000
committerFabrice Bellard <fabrice@bellard.org>2003-08-24 15:29:48 +0000
commit02d504a7d3f0546374cc02ecff45390a0d4faa6b (patch)
tree2828dfbc4e4779424e5d105b981fdc23a707375e /ffplay.c
parent18bff7520e2fb844411b1d206d519ed695f63d2d (diff)
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.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/ffplay.c b/ffplay.c
index 553b1186ff..c596306e79 100644
--- a/ffplay.c
+++ b/ffplay.c
@@ -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"