Mercurial > mplayer.hg
changeset 30138:acc6ed68a385
Prefer "*FUNC_NAME(" over "* FUNC_NAME(" for the
swscale_configuration() and swscale_license() functions, consistent
with the rest of FFmpeg.
author | stefano |
---|---|
date | Sun, 03 Jan 2010 14:35:20 +0000 |
parents | 28ca3af546f5 |
children | 47b031706571 |
files | libswscale/swscale.c libswscale/swscale.h |
diffstat | 2 files changed, 4 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/libswscale/swscale.c Sun Jan 03 12:55:09 2010 +0000 +++ b/libswscale/swscale.c Sun Jan 03 14:35:20 2010 +0000 @@ -85,12 +85,12 @@ 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;
--- a/libswscale/swscale.h Sun Jan 03 12:55:09 2010 +0000 +++ b/libswscale/swscale.h Sun Jan 03 14:35:20 2010 +0000 @@ -51,12 +51,12 @@ /** * 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