Browse code

Use CONFIG_* macros in cmdutils.c for consistency.

Originally committed as revision 15626 to svn://svn.ffmpeg.org/ffmpeg/trunk

Diego Pettenò authored on 2008/10/16 20:46:15
Showing 1 changed files
... ...
@@ -266,13 +266,13 @@ static void print_all_lib_versions(FILE* outstream, int indent)
266 266
     PRINT_LIB_VERSION(outstream, avcodec,  AVCODEC,  indent);
267 267
     PRINT_LIB_VERSION(outstream, avformat, AVFORMAT, indent);
268 268
     PRINT_LIB_VERSION(outstream, avdevice, AVDEVICE, indent);
269
-#if ENABLE_AVFILTER
269
+#ifdef CONFIG_AVFILTER
270 270
     PRINT_LIB_VERSION(outstream, avfilter, AVFILTER, indent);
271 271
 #endif
272
-#if ENABLE_SWSCALE
272
+#ifdef CONFIG_SWSCALE
273 273
     PRINT_LIB_VERSION(outstream, swscale,  SWSCALE,  indent);
274 274
 #endif
275
-#if ENABLE_POSTPROC
275
+#ifdef CONFIG_POSTPROC
276 276
     PRINT_LIB_VERSION(outstream, postproc, POSTPROC, indent);
277 277
 #endif
278 278
 }