[FFmpeg-devel] [PATCH 2/3] Use CONFIG_* macros in cmdutils.c for consistency.

Diego 'Flameeyes' Pettenò flameeyes
Thu Oct 16 13:21:45 CEST 2008


---

 cmdutils.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/cmdutils.c b/cmdutils.c
index 84c6ecc..ae8a1dd 100644
--- a/cmdutils.c
+++ b/cmdutils.c
@@ -266,11 +266,11 @@ static void print_all_lib_versions(FILE* outstream, int indent)
     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
     PRINT_LIB_VERSION(outstream, swscale,  SWSCALE,  indent);
-#if ENABLE_POSTPROC
+#ifdef CONFIG_POSTPROC
     PRINT_LIB_VERSION(outstream, postproc, POSTPROC, indent);
 #endif
 }





More information about the ffmpeg-devel mailing list