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
This commit is contained in:
parent
8040c3b250
commit
4160069067
10 changed files with 20 additions and 20 deletions
|
|
@ -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.
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue