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

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

Originally committed as revision 30180 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
This commit is contained in:
Stefano Sabatini 2010-01-03 14:35:20 +00:00
parent 4160069067
commit 997980f0d8
2 changed files with 4 additions and 4 deletions

View File

@ -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;

View File

@ -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