summaryrefslogtreecommitdiff
path: root/ffmpeg.c
diff options
context:
space:
mode:
authorStefano Sabatini <stefano.sabatini-lala@poste.it>2008-05-29 08:48:51 +0000
committerDiego Biurrun <diego@biurrun.de>2008-05-29 08:48:51 +0000
commitea9c581f6100afc50aad4cf8f405ec9749144f71 (patch)
treea12ace050cb683c104736e6ba4f840a8fd9bea28 /ffmpeg.c
parent9667a2d268e08ed15576e6776fa1eac7213dc98b (diff)
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.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ffmpeg.c b/ffmpeg.c
index 052d7a67f1..d3f21d43ce 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -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);