Commit 519af407 authored by stefano's avatar stefano

Make show_version()/show_banner() print the libswscale versions if

enabled.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@15031 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent e3ca7395
......@@ -28,6 +28,7 @@
#include "libavformat/avformat.h"
#include "libavfilter/avfilter.h"
#include "libavdevice/avdevice.h"
#include "libswscale/swscale.h"
#include "libavutil/avstring.h"
#include "cmdutils.h"
#include "version.h"
......@@ -212,6 +213,9 @@ void print_all_lib_versions(FILE* outstream, int indent)
#if ENABLE_AVFILTER
PRINT_LIB_VERSION(outstream, avfilter, AVFILTER, indent);
#endif
#if ENABLE_SWSCALE
PRINT_LIB_VERSION(outstream, swscale, SWSCALE, indent);
#endif
}
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