[FFmpeg-cvslog] r30180 - in trunk/libswscale: swscale.c swscale.h

stefano subversion
Sun Jan 3 15:35:20 CET 2010


Author: stefano
Date: Sun Jan  3 15:35:20 2010
New Revision: 30180

Log:
Prefer "*FUNC_NAME(" over "* FUNC_NAME(" for the
swscale_configuration() and swscale_license() functions, consistent
with the rest of FFmpeg.

Modified:
   trunk/libswscale/swscale.c
   trunk/libswscale/swscale.h

Modified: trunk/libswscale/swscale.c
==============================================================================
--- trunk/libswscale/swscale.c	Sun Jan  3 13:55:09 2010	(r30179)
+++ trunk/libswscale/swscale.c	Sun Jan  3 15:35:20 2010	(r30180)
@@ -85,12 +85,12 @@ unsigned swscale_version(void)
     return LIBSWSCALE_VERSION_INT;
 }
 
-const char * swscale_configuration(void)
+const char *swscale_configuration(void)
 {
     return FFMPEG_CONFIGURATION;
 }
 
-const char * swscale_license(void)
+const char *swscale_license(void)
 {
 #define LICENSE_PREFIX "libswscale license: "
     return LICENSE_PREFIX FFMPEG_LICENSE + sizeof(LICENSE_PREFIX) - 1;

Modified: trunk/libswscale/swscale.h
==============================================================================
--- trunk/libswscale/swscale.h	Sun Jan  3 13:55:09 2010	(r30179)
+++ trunk/libswscale/swscale.h	Sun Jan  3 15:35:20 2010	(r30180)
@@ -51,12 +51,12 @@ unsigned swscale_version(void);
 /**
  * Returns the libswscale build-time configuration.
  */
-const char * swscale_configuration(void);
+const char *swscale_configuration(void);
 
 /**
  * Returns the libswscale license.
  */
-const char * swscale_license(void);
+const char *swscale_license(void);
 
 /* values for the flags, the stuff on the command line is different */
 #define SWS_FAST_BILINEAR     1



More information about the ffmpeg-cvslog mailing list