Mercurial > libavcodec.hg
changeset 10764:4546d91de818 libavcodec
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 | 98bf00fa95cd |
children | 8963dc7bb923 |
files | avcodec.h utils.c |
diffstat | 2 files changed, 4 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- 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.
--- 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;