# HG changeset patch # User stefano # Date 1262529085 0 # Node ID 4546d91de818f423ce7a919f5c67b127947be4e7 # Parent 98bf00fa95cdf409b5b401fbb5067b50e97c335b Prefer "*FUNC_NAME(" over "* FUNC_NAME(" for XXX_configuration() and XXX_license() functions, consistent with the rest of FFmpeg. diff -r 98bf00fa95cd -r 4546d91de818 avcodec.h --- a/avcodec.h Sat Jan 02 17:48:08 2010 +0000 +++ b/avcodec.h Sun Jan 03 14:31:25 2010 +0000 @@ -3083,12 +3083,12 @@ /** * Returns the libavcodec build-time configuration. */ -const char * avcodec_configuration(void); +const char *avcodec_configuration(void); /** * Returns the libavcodec license. */ -const char * avcodec_license(void); +const char *avcodec_license(void); /** * Initializes libavcodec. diff -r 98bf00fa95cd -r 4546d91de818 utils.c --- a/utils.c Sat Jan 02 17:48:08 2010 +0000 +++ b/utils.c Sun Jan 03 14:31:25 2010 +0000 @@ -895,12 +895,12 @@ return LIBAVCODEC_VERSION_INT; } -const char * avcodec_configuration(void) +const char *avcodec_configuration(void) { return FFMPEG_CONFIGURATION; } -const char * avcodec_license(void) +const char *avcodec_license(void) { #define LICENSE_PREFIX "libavcodec license: " return LICENSE_PREFIX FFMPEG_LICENSE + sizeof(LICENSE_PREFIX) - 1;