summaryrefslogtreecommitdiff
path: root/cmdutils.c
diff options
context:
space:
mode:
authorStefano Sabatini <stefasab@gmail.com>2013-11-26 10:03:32 +0100
committerStefano Sabatini <stefasab@gmail.com>2013-11-26 10:03:32 +0100
commit8bf7ea8ac2104525e60cfd68097deb23430a0155 (patch)
tree29803370b48d8891b7ffde1af33db2871b59a359 /cmdutils.c
parent4c4710a745ae484d1a17288f141c96fdd664ec73 (diff)
cmdutils: remove this_year constant, use CONFIG_THIS_YEAR instead
Simplify.
Diffstat (limited to 'cmdutils.c')
-rw-r--r--cmdutils.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/cmdutils.c b/cmdutils.c
index ebb747a1a7..2608bceb3d 100644
--- a/cmdutils.c
+++ b/cmdutils.c
@@ -69,8 +69,6 @@ struct SwsContext *sws_opts;
AVDictionary *swr_opts;
AVDictionary *format_opts, *codec_opts, *resample_opts;
-const int this_year = CONFIG_THIS_YEAR;
-
static FILE *report_file;
void init_opts(void)
@@ -1072,7 +1070,7 @@ static void print_program_info(int flags, int level)
av_log(NULL, level, "%s version " FFMPEG_VERSION, program_name);
if (flags & SHOW_COPYRIGHT)
av_log(NULL, level, " Copyright (c) %d-%d the FFmpeg developers",
- program_birth_year, this_year);
+ program_birth_year, CONFIG_THIS_YEAR);
av_log(NULL, level, "\n");
av_log(NULL, level, "%sbuilt on %s %s with %s\n",
indent, __DATE__, __TIME__, CC_IDENT);