Browse Source

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
tags/v0.5
Stefano Sabatini Benoit Fouet 18 years ago
parent
commit
4cfac5bc51
1 changed files with 5 additions and 0 deletions
  1. +5
    -0
      ffplay.c

+ 5
- 0
ffplay.c View File

@@ -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) {


Loading…
Cancel
Save