summaryrefslogtreecommitdiff
path: root/cmdutils.c
diff options
context:
space:
mode:
authorSimon Thelen <ffmpeg-dev@c-14.de>2014-06-11 01:58:44 +0200
committerLou Logan <lou@lrcd.com>2014-06-16 10:24:28 -0800
commit389d45351e06a065df613f2151069aae47f68319 (patch)
tree41315bedb609b9c1af16f5c2d5db1a27a077bc81 /cmdutils.c
parente6f9fc4adc16d366713912839625776486c3d543 (diff)
version string: add copyright line to version string
Show the copyright when running `ffmpeg -version'. This is useful for end users trying to determine whether they are using FFmpeg or Libav. Signed-off-by: Simon Thelen <ffmpeg@c-14.de>
Diffstat (limited to 'cmdutils.c')
-rw-r--r--cmdutils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmdutils.c b/cmdutils.c
index e7e8f639e6..eb60ac487e 100644
--- a/cmdutils.c
+++ b/cmdutils.c
@@ -1115,7 +1115,7 @@ void show_banner(int argc, char **argv, const OptionDef *options)
int show_version(void *optctx, const char *opt, const char *arg)
{
av_log_set_callback(log_callback_help);
- print_program_info (0 , AV_LOG_INFO);
+ print_program_info (SHOW_COPYRIGHT, AV_LOG_INFO);
print_all_libs_info(SHOW_VERSION, AV_LOG_INFO);
return 0;