diff options
author | Diego Pettenò <flameeyes@gmail.com> | 2008-10-16 11:46:15 +0000 |
---|---|---|
committer | Diego Pettenò <flameeyes@gmail.com> | 2008-10-16 11:46:15 +0000 |
commit | a14b362fc650a5e036d413033d9709a526662d89 (patch) | |
tree | 51a3d51e961eaed78486c981a15391a1e8b6ee1e | |
parent | ede935a1bd35d041c889a6883596bfa305757b62 (diff) | |
download | ffmpeg-a14b362fc650a5e036d413033d9709a526662d89.tar.gz |
Use CONFIG_* macros in cmdutils.c for consistency.
Originally committed as revision 15626 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | cmdutils.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cmdutils.c b/cmdutils.c index 5dad258743..5c6715dd13 100644 --- a/cmdutils.c +++ b/cmdutils.c @@ -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, 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 } |