[FFmpeg-cvslog] r15626 - trunk/cmdutils.c
flameeyes
subversion
Thu Oct 16 13:46:15 CEST 2008
Author: flameeyes
Date: Thu Oct 16 13:46:15 2008
New Revision: 15626
Log:
Use CONFIG_* macros in cmdutils.c for consistency.
Modified:
trunk/cmdutils.c
Modified: trunk/cmdutils.c
==============================================================================
--- trunk/cmdutils.c (original)
+++ trunk/cmdutils.c Thu Oct 16 13:46:15 2008
@@ -266,13 +266,13 @@ static void print_all_lib_versions(FILE*
PRINT_LIB_VERSION(outstream, avcodec, AVCODEC, indent);
PRINT_LIB_VERSION(outstream, avformat, AVFORMAT, indent);
PRINT_LIB_VERSION(outstream, avdevice, AVDEVICE, indent);
-#if ENABLE_AVFILTER
+#ifdef CONFIG_AVFILTER
PRINT_LIB_VERSION(outstream, avfilter, AVFILTER, indent);
#endif
-#if ENABLE_SWSCALE
+#ifdef CONFIG_SWSCALE
PRINT_LIB_VERSION(outstream, swscale, SWSCALE, indent);
#endif
-#if ENABLE_POSTPROC
+#ifdef CONFIG_POSTPROC
PRINT_LIB_VERSION(outstream, postproc, POSTPROC, indent);
#endif
}
More information about the ffmpeg-cvslog
mailing list