]> git.sesse.net Git - ffmpeg/blobdiff - ffplay.c
Added myself as maintainer of the Nellymoser codec
[ffmpeg] / ffplay.c
index 6ec1bcb34adf25f2fa80095866dff11e9cbc1657..6536e02c78fdd19fd8a5368a10408ef3707d7dc4 100644 (file)
--- a/ffplay.c
+++ b/ffplay.c
@@ -37,6 +37,9 @@
 
 #undef exit
 
+static const char program_name[] = "FFplay";
+static const int program_birth_year = 2003;
+
 //#define DEBUG_SYNC
 
 #define MAX_VIDEOQ_SIZE (5 * 256 * 1024)
@@ -2476,8 +2479,7 @@ const OptionDef options[] = {
 
 void show_help(void)
 {
-    printf("ffplay version " FFMPEG_VERSION ", Copyright (c) 2003-2007 Fabrice Bellard, et al.\n"
-           "usage: ffplay [options] input_file\n"
+    printf("usage: ffplay [options] input_file\n"
            "Simple media player\n");
     printf("\n");
     show_help_options(options, "Main options:\n",
@@ -2513,6 +2515,8 @@ int main(int argc, char **argv)
     /* register all codecs, demux and protocols */
     av_register_all();
 
+    show_banner(program_name, program_birth_year);
+
     parse_options(argc, argv, options, opt_input_file);
 
     if (!input_filename) {