diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2008-08-29 18:25:14 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2008-08-29 18:25:14 +0000 |
commit | db6d50c754d71737a562487b5f1b3b3547ae3237 (patch) | |
tree | f37533b65a2b246800a74499e86f5bba13017cb6 | |
parent | b3e03fa7b0574c5e1a4f89ef82dc327271118e54 (diff) | |
download | ffmpeg-db6d50c754d71737a562487b5f1b3b3547ae3237.tar.gz |
Make show_version()/show_banner() print the libswscale versions if
enabled.
Originally committed as revision 15031 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | cmdutils.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/cmdutils.c b/cmdutils.c index 2904ca953d..716985124d 100644 --- a/cmdutils.c +++ b/cmdutils.c @@ -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) |