changeset 131:63eddcff3509 libpostproc

Prefer "*FUNC_NAME(" over "* FUNC_NAME(" for XXX_configuration() and XXX_license() functions, consistent with the rest of FFmpeg.
author stefano
date Sun, 03 Jan 2010 14:31:25 +0000
parents 885c7548fb5e
children a65cfe0fe4b2
files postprocess.c postprocess.h
diffstat 2 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/postprocess.c	Wed Nov 18 17:15:17 2009 +0000
+++ b/postprocess.c	Sun Jan 03 14:31:25 2010 +0000
@@ -92,12 +92,12 @@
     return LIBPOSTPROC_VERSION_INT;
 }
 
-const char * postproc_configuration(void)
+const char *postproc_configuration(void)
 {
     return FFMPEG_CONFIGURATION;
 }
 
-const char * postproc_license(void)
+const char *postproc_license(void)
 {
 #define LICENSE_PREFIX "libpostproc license: "
     return LICENSE_PREFIX FFMPEG_LICENSE + sizeof(LICENSE_PREFIX) - 1;
--- a/postprocess.h	Wed Nov 18 17:15:17 2009 +0000
+++ b/postprocess.h	Sun Jan 03 14:31:25 2010 +0000
@@ -51,12 +51,12 @@
 /**
  * Returns the libpostproc build-time configuration.
  */
-const char * postproc_configuration(void);
+const char *postproc_configuration(void);
 
 /**
  * Returns the libpostproc license.
  */
-const char * postproc_license(void);
+const char *postproc_license(void);
 
 #define PP_QUALITY_MAX 6