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 /ffmpeg.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 'ffmpeg.c')
-rw-r--r-- | ffmpeg.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -64,7 +64,7 @@ #undef exit const char program_name[] = "FFmpeg"; -static const int program_birth_year = 2000; +const int program_birth_year = 2000; /* select an input stream for an output stream */ typedef struct AVStreamMap { @@ -3777,7 +3777,7 @@ int main(int argc, char **argv) avformat_opts = av_alloc_format_context(); sws_opts = sws_getContext(16,16,0, 16,16,0, sws_flags, NULL,NULL,NULL); - show_banner(program_name, program_birth_year); + show_banner(); if (argc <= 1) { show_help(); av_exit(1); |