[FFmpeg-cvslog] r15149 - trunk/cmdutils.c

stefano subversion
Mon Sep 1 20:02:46 CEST 2008


Author: stefano
Date: Mon Sep  1 20:02:46 2008
New Revision: 15149

Log:
Make show_banner()/show_version() print the libpostproc version
numbers if enabled.


Modified:
   trunk/cmdutils.c

Modified: trunk/cmdutils.c
==============================================================================
--- trunk/cmdutils.c	(original)
+++ trunk/cmdutils.c	Mon Sep  1 20:02:46 2008
@@ -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* outstr
 #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)




More information about the ffmpeg-cvslog mailing list