diff options
author | Stefano Sabatini | 2008-09-01 18:02:46 +0000 |
---|---|---|
committer | Stefano Sabatini | 2008-09-01 18:02:46 +0000 |
commit | 1981deaf6b8928fbfe7481b5708581c50b27e4f4 (patch) | |
tree | 51638652721f4d4bfb95733b6a7f179b98fa0e50 /cmdutils.c | |
parent | 2a4a62bffc513313de5b977ca6c00f560051047d (diff) |
Make show_banner()/show_version() print the libpostproc version
numbers if enabled.
Originally committed as revision 15149 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'cmdutils.c')
-rw-r--r-- | cmdutils.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/cmdutils.c b/cmdutils.c index 634ead234c..505f55b282 100644 --- a/cmdutils.c +++ b/cmdutils.c @@ -29,6 +29,7 @@ #include "libavfilter/avfilter.h" #include "libavdevice/avdevice.h" #include "libswscale/swscale.h" +#include "libpostproc/postprocess.h" #include "libavutil/avstring.h" #include "cmdutils.h" #include "version.h" @@ -216,6 +217,9 @@ void print_all_lib_versions(FILE* outstream, int indent) #if ENABLE_SWSCALE PRINT_LIB_VERSION(outstream, swscale, SWSCALE, indent); #endif +#if ENABLE_POSTPROC + PRINT_LIB_VERSION(outstream, postproc, POSTPROC, indent); +#endif } void show_banner(void) |