mirror of
https://github.com/nyanmisaka/ffmpeg-rockchip.git
synced 2025-10-23 09:01:00 +08:00
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:
@@ -41,12 +41,12 @@ unsigned avformat_version(void)
|
||||
return LIBAVFORMAT_VERSION_INT;
|
||||
}
|
||||
|
||||
const char * avformat_configuration(void)
|
||||
const char *avformat_configuration(void)
|
||||
{
|
||||
return FFMPEG_CONFIGURATION;
|
||||
}
|
||||
|
||||
const char * avformat_license(void)
|
||||
const char *avformat_license(void)
|
||||
{
|
||||
#define LICENSE_PREFIX "libavformat license: "
|
||||
return LICENSE_PREFIX FFMPEG_LICENSE + sizeof(LICENSE_PREFIX) - 1;
|
||||
|
Reference in New Issue
Block a user