diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2008-05-29 08:48:51 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2008-05-29 08:48:51 +0000 |
commit | ea9c581f6100afc50aad4cf8f405ec9749144f71 (patch) | |
tree | a12ace050cb683c104736e6ba4f840a8fd9bea28 /ffplay.c | |
parent | 9667a2d268e08ed15576e6776fa1eac7213dc98b (diff) | |
download | ffmpeg-ea9c581f6100afc50aad4cf8f405ec9749144f71.tar.gz |
Simplify show_banner() so that it does not require arguments, similar
to what was previously done with show_version().
patch by Stefano Sabatini, stefano.sabatini-lala poste it
Originally committed as revision 13526 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffplay.c')
-rw-r--r-- | ffplay.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -40,7 +40,7 @@ #undef exit const char program_name[] = "FFplay"; -static const int program_birth_year = 2003; +const int program_birth_year = 2003; //#define DEBUG_SYNC @@ -2509,7 +2509,7 @@ int main(int argc, char **argv) avdevice_register_all(); av_register_all(); - show_banner(program_name, program_birth_year); + show_banner(); parse_options(argc, argv, options, opt_input_file); |