diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-01-03 14:31:25 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-01-03 14:31:25 +0000 |
commit | 41600690673d6e49026c3309c708d6da17c603c6 (patch) | |
tree | 48ec152b08d9c23f95546ac413083902f26f1abd /libavcodec | |
parent | 8040c3b25085999042fe97763bc7367f05898599 (diff) | |
download | ffmpeg-41600690673d6e49026c3309c708d6da17c603c6.tar.gz |
Prefer "*FUNC_NAME(" over "* FUNC_NAME(" for XXX_configuration() and
XXX_license() functions, consistent with the rest of FFmpeg.
Originally committed as revision 21005 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/avcodec.h | 4 | ||||
-rw-r--r-- | libavcodec/utils.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index bb31919c44..e7b9752331 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -3083,12 +3083,12 @@ unsigned avcodec_version(void); /** * 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 --git a/libavcodec/utils.c b/libavcodec/utils.c index d91cbc0428..99c97c1895 100644 --- a/libavcodec/utils.c +++ b/libavcodec/utils.c @@ -895,12 +895,12 @@ unsigned avcodec_version( void ) 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; |