Commit 1981deaf authored by Stefano Sabatini's avatar Stefano Sabatini

Make show_banner()/show_version() print the libpostproc version

numbers if enabled.

Originally committed as revision 15149 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 2a4a62bf
...@@ -29,6 +29,7 @@ ...@@ -29,6 +29,7 @@
#include "libavfilter/avfilter.h" #include "libavfilter/avfilter.h"
#include "libavdevice/avdevice.h" #include "libavdevice/avdevice.h"
#include "libswscale/swscale.h" #include "libswscale/swscale.h"
#include "libpostproc/postprocess.h"
#include "libavutil/avstring.h" #include "libavutil/avstring.h"
#include "cmdutils.h" #include "cmdutils.h"
#include "version.h" #include "version.h"
...@@ -216,6 +217,9 @@ void print_all_lib_versions(FILE* outstream, int indent) ...@@ -216,6 +217,9 @@ void print_all_lib_versions(FILE* outstream, int indent)
#if ENABLE_SWSCALE #if ENABLE_SWSCALE
PRINT_LIB_VERSION(outstream, swscale, SWSCALE, indent); PRINT_LIB_VERSION(outstream, swscale, SWSCALE, indent);
#endif #endif
#if ENABLE_POSTPROC
PRINT_LIB_VERSION(outstream, postproc, POSTPROC, indent);
#endif
} }
void show_banner(void) void show_banner(void)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment