comparison postprocess.c @ 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 0397ed4317ef
comparison
equal deleted inserted replaced
130:885c7548fb5e 131:63eddcff3509
90 unsigned postproc_version(void) 90 unsigned postproc_version(void)
91 { 91 {
92 return LIBPOSTPROC_VERSION_INT; 92 return LIBPOSTPROC_VERSION_INT;
93 } 93 }
94 94
95 const char * postproc_configuration(void) 95 const char *postproc_configuration(void)
96 { 96 {
97 return FFMPEG_CONFIGURATION; 97 return FFMPEG_CONFIGURATION;
98 } 98 }
99 99
100 const char * postproc_license(void) 100 const char *postproc_license(void)
101 { 101 {
102 #define LICENSE_PREFIX "libpostproc license: " 102 #define LICENSE_PREFIX "libpostproc license: "
103 return LICENSE_PREFIX FFMPEG_LICENSE + sizeof(LICENSE_PREFIX) - 1; 103 return LICENSE_PREFIX FFMPEG_LICENSE + sizeof(LICENSE_PREFIX) - 1;
104 } 104 }
105 105