OSDN Git Service

Prettify PRINT_LIB_VERSION macro
authorMåns Rullgård <mans@mansr.com>
Wed, 27 Jan 2010 12:58:26 +0000 (12:58 +0000)
committerMåns Rullgård <mans@mansr.com>
Wed, 27 Jan 2010 12:58:26 +0000 (12:58 +0000)
Originally committed as revision 21477 to svn://svn.ffmpeg.org/ffmpeg/trunk

cmdutils.c

index faf8559..7978ed2 100644 (file)
@@ -324,12 +324,15 @@ void print_error(const char *filename, int err)
     }
 }
 
-#define PRINT_LIB_VERSION(outstream,libname,LIBNAME,indent) \
-    if (CONFIG_##LIBNAME) { \
-    version= libname##_version(); \
-    fprintf(outstream, "%slib%-10s %2d.%2d.%2d / %2d.%2d.%2d\n", indent? "  " : "", #libname, \
-            LIB##LIBNAME##_VERSION_MAJOR, LIB##LIBNAME##_VERSION_MINOR, LIB##LIBNAME##_VERSION_MICRO, \
-            version >> 16, version >> 8 & 0xff, version & 0xff); \
+#define PRINT_LIB_VERSION(outstream,libname,LIBNAME,indent)             \
+    if (CONFIG_##LIBNAME) {                                             \
+        version= libname##_version();                                   \
+        fprintf(outstream, "%slib%-10s %2d.%2d.%2d / %2d.%2d.%2d\n",    \
+                indent? "  " : "", #libname,                            \
+                LIB##LIBNAME##_VERSION_MAJOR,                           \
+                LIB##LIBNAME##_VERSION_MINOR,                           \
+                LIB##LIBNAME##_VERSION_MICRO,                           \
+                version >> 16, version >> 8 & 0xff, version & 0xff);    \
     }
 
 static void print_all_lib_versions(FILE* outstream, int indent)