Commit 9960a929 authored by stefano's avatar stefano

Prefer "*FUNC_NAME(" over "* FUNC_NAME(" for the

swscale_configuration() and swscale_license() functions, consistent
with the rest of FFmpeg.


git-svn-id: file:///var/local/repositories/mplayer/trunk/libswscale@30180 b3059339-0415-0410-9bf9-f77b7e298cf2
parent f95af42d
...@@ -85,12 +85,12 @@ unsigned swscale_version(void) ...@@ -85,12 +85,12 @@ unsigned swscale_version(void)
return LIBSWSCALE_VERSION_INT; return LIBSWSCALE_VERSION_INT;
} }
const char * swscale_configuration(void) const char *swscale_configuration(void)
{ {
return FFMPEG_CONFIGURATION; return FFMPEG_CONFIGURATION;
} }
const char * swscale_license(void) const char *swscale_license(void)
{ {
#define LICENSE_PREFIX "libswscale license: " #define LICENSE_PREFIX "libswscale license: "
return LICENSE_PREFIX FFMPEG_LICENSE + sizeof(LICENSE_PREFIX) - 1; return LICENSE_PREFIX FFMPEG_LICENSE + sizeof(LICENSE_PREFIX) - 1;
......
...@@ -51,12 +51,12 @@ unsigned swscale_version(void); ...@@ -51,12 +51,12 @@ unsigned swscale_version(void);
/** /**
* Returns the libswscale build-time configuration. * Returns the libswscale build-time configuration.
*/ */
const char * swscale_configuration(void); const char *swscale_configuration(void);
/** /**
* Returns the libswscale license. * 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 */ /* values for the flags, the stuff on the command line is different */
#define SWS_FAST_BILINEAR 1 #define SWS_FAST_BILINEAR 1
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment