summaryrefslogtreecommitdiff
path: root/cmdutils.c
diff options
context:
space:
mode:
authorJanne Grunau <janne-ffmpeg@jannau.net>2011-03-14 22:27:40 +0100
committerJanne Grunau <janne-libav@jannau.net>2011-03-16 21:54:39 +0100
commita03be6e1ba4cbf9984b0bbdb674704bbb2da6713 (patch)
treefdc640229695a2ec69acebe495f579bc58a62577 /cmdutils.c
parent29ba091136a5e04574f7bfc1b17536c923958f6f (diff)
use LIBAV_LICENSE and LIBAV_VERSION instead of FFMPEG_*
Diffstat (limited to 'cmdutils.c')
-rw-r--r--cmdutils.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cmdutils.c b/cmdutils.c
index 7012d04cc5..1e7aacf00d 100644
--- a/cmdutils.c
+++ b/cmdutils.c
@@ -423,7 +423,7 @@ static void print_all_libs_info(FILE* outstream, int flags)
void show_banner(void)
{
- fprintf(stderr, "%s version " FFMPEG_VERSION ", Copyright (c) %d-%d the FFmpeg developers\n",
+ fprintf(stderr, "%s version " LIBAV_VERSION ", Copyright (c) %d-%d the Libav developers\n",
program_name, program_birth_year, this_year);
fprintf(stderr, " built on %s %s with %s %s\n",
__DATE__, __TIME__, CC_TYPE, CC_VERSION);
@@ -433,7 +433,7 @@ void show_banner(void)
}
void show_version(void) {
- printf("%s " FFMPEG_VERSION "\n", program_name);
+ printf("%s " LIBAV_VERSION "\n", program_name);
print_all_libs_info(stdout, SHOW_VERSION);
}