From: Stefano Sabatini Date: Thu, 27 Sep 2007 13:52:33 +0000 (+0000) Subject: Make ffplay show a banner at startup. X-Git-Tag: v0.5~7381 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4cfac5bc51cb644195573810515f1fe6cfda73cd;p=platform%2Fupstream%2Flibav.git Make ffplay show a banner at startup. patch by Stefano Sabatini stefano sabatini-lala poste it Originally committed as revision 10603 to svn://svn.ffmpeg.org/ffmpeg/trunk --- diff --git a/ffplay.c b/ffplay.c index 6ec1bcb..06aa6ea 100644 --- 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) @@ -2513,6 +2516,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) {