summaryrefslogtreecommitdiff
path: root/ffplay.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2009-12-13 13:49:14 +0000
committerMichael Niedermayer <michaelni@gmx.at>2009-12-13 13:49:14 +0000
commite4637d6a60af0c414f8953826a51d77e5aee508f (patch)
tree8a9551d42c24039111336b9723612ff8fa86e893 /ffplay.c
parent0dae3e13e39d8caaedeabb4b20c31da6cad4a908 (diff)
Show help if no cmd line options are provided at all.
This safes the users time to find out which of -h --help -? works. Originally committed as revision 20822 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffplay.c')
-rw-r--r--ffplay.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/ffplay.c b/ffplay.c
index 5eb5a21165..39d960a7e4 100644
--- a/ffplay.c
+++ b/ffplay.c
@@ -2539,6 +2539,7 @@ int main(int argc, char **argv)
parse_options(argc, argv, options, opt_input_file);
if (!input_filename) {
+ show_help();
fprintf(stderr, "An input file must be specified\n");
exit(1);
}