Commit 8a42494d authored by flameeyes's avatar flameeyes

Use CONFIG_* macros in cmdutils.c for consistency.



git-svn-id: file:///var/local/repositories/ffmpeg/trunk@15626 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent b3b66337
...@@ -266,13 +266,13 @@ static void print_all_lib_versions(FILE* outstream, int indent) ...@@ -266,13 +266,13 @@ static void print_all_lib_versions(FILE* outstream, int indent)
PRINT_LIB_VERSION(outstream, avcodec, AVCODEC, indent); PRINT_LIB_VERSION(outstream, avcodec, AVCODEC, indent);
PRINT_LIB_VERSION(outstream, avformat, AVFORMAT, indent); PRINT_LIB_VERSION(outstream, avformat, AVFORMAT, indent);
PRINT_LIB_VERSION(outstream, avdevice, AVDEVICE, indent); PRINT_LIB_VERSION(outstream, avdevice, AVDEVICE, indent);
#if ENABLE_AVFILTER #ifdef CONFIG_AVFILTER
PRINT_LIB_VERSION(outstream, avfilter, AVFILTER, indent); PRINT_LIB_VERSION(outstream, avfilter, AVFILTER, indent);
#endif #endif
#if ENABLE_SWSCALE #ifdef CONFIG_SWSCALE
PRINT_LIB_VERSION(outstream, swscale, SWSCALE, indent); PRINT_LIB_VERSION(outstream, swscale, SWSCALE, indent);
#endif #endif
#if ENABLE_POSTPROC #ifdef CONFIG_POSTPROC
PRINT_LIB_VERSION(outstream, postproc, POSTPROC, indent); PRINT_LIB_VERSION(outstream, postproc, POSTPROC, indent);
#endif #endif
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment