diff options
author | Simon Thelen <ffmpeg-dev@c-14.de> | 2014-06-11 01:58:44 +0200 |
---|---|---|
committer | Lou Logan <lou@lrcd.com> | 2014-06-16 10:24:28 -0800 |
commit | 389d45351e06a065df613f2151069aae47f68319 (patch) | |
tree | 41315bedb609b9c1af16f5c2d5db1a27a077bc81 /cmdutils.c | |
parent | e6f9fc4adc16d366713912839625776486c3d543 (diff) | |
download | ffmpeg-389d45351e06a065df613f2151069aae47f68319.tar.gz |
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.c | 2 |
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; |