diff options
author | Ramiro Polla <ramiro.polla@gmail.com> | 2009-12-21 02:15:46 +0000 |
---|---|---|
committer | Ramiro Polla <ramiro.polla@gmail.com> | 2009-12-21 02:15:46 +0000 |
commit | 7f11e745b27bfbac6b2a18daffc44173530bd6d5 (patch) | |
tree | 1a4d5a523ec090c28ea51e4221682e3630f84999 /ffplay.c | |
parent | 0c2a18cbcdbaa931cb151692a340c0b4cab05028 (diff) | |
download | ffmpeg-7f11e745b27bfbac6b2a18daffc44173530bd6d5.tar.gz |
Print usage instead of help when no files are specified.
Originally committed as revision 20905 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffplay.c')
-rw-r--r-- | ffplay.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -2546,8 +2546,9 @@ int main(int argc, char **argv) parse_options(argc, argv, options, opt_input_file); if (!input_filename) { - show_help(); + show_usage(); fprintf(stderr, "An input file must be specified\n"); + fprintf(stderr, "Use -h to get full help or, even better, run 'man ffplay'\n"); exit(1); } |