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:
Stefano Sabatini 2010-01-03 14:31:25 +00:00
parent 8040c3b250
commit 4160069067
10 changed files with 20 additions and 20 deletions

View File

@ -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.

View File

@ -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;

View File

@ -28,12 +28,12 @@ unsigned avfilter_version(void) {
return LIBAVFILTER_VERSION_INT;
}
const char * avfilter_configuration(void)
const char *avfilter_configuration(void)
{
return FFMPEG_CONFIGURATION;
}
const char * avfilter_license(void)
const char *avfilter_license(void)
{
#define LICENSE_PREFIX "libavfilter license: "
return LICENSE_PREFIX FFMPEG_LICENSE + sizeof(LICENSE_PREFIX) - 1;

View File

@ -47,12 +47,12 @@ unsigned avfilter_version(void);
/**
* Returns the libavfilter build-time configuration.
*/
const char * avfilter_configuration(void);
const char *avfilter_configuration(void);
/**
* Returns the libavfilter license.
*/
const char * avfilter_license(void);
const char *avfilter_license(void);
typedef struct AVFilterContext AVFilterContext;

View File

@ -43,12 +43,12 @@ unsigned avformat_version(void);
/**
* Returns the libavformat build-time configuration.
*/
const char * avformat_configuration(void);
const char *avformat_configuration(void);
/**
* Returns the libavformat license.
*/
const char * avformat_license(void);
const char *avformat_license(void);
#include <time.h>
#include <stdio.h> /* FILE */

View File

@ -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;

View File

@ -56,12 +56,12 @@ unsigned avutil_version(void);
/**
* Returns the libavutil build-time configuration.
*/
const char * avutil_configuration(void);
const char *avutil_configuration(void);
/**
* Returns the libavutil license.
*/
const char * avutil_license(void);
const char *avutil_license(void);
#include "common.h"
#include "mathematics.h"

View File

@ -29,12 +29,12 @@ unsigned avutil_version(void)
return LIBAVUTIL_VERSION_INT;
}
const char * avutil_configuration(void)
const char *avutil_configuration(void)
{
return FFMPEG_CONFIGURATION;
}
const char * avutil_license(void)
const char *avutil_license(void)
{
#define LICENSE_PREFIX "libavutil license: "
return LICENSE_PREFIX FFMPEG_LICENSE + sizeof(LICENSE_PREFIX) - 1;

View File

@ -92,12 +92,12 @@ unsigned postproc_version(void)
return LIBPOSTPROC_VERSION_INT;
}
const char * postproc_configuration(void)
const char *postproc_configuration(void)
{
return FFMPEG_CONFIGURATION;
}
const char * postproc_license(void)
const char *postproc_license(void)
{
#define LICENSE_PREFIX "libpostproc license: "
return LICENSE_PREFIX FFMPEG_LICENSE + sizeof(LICENSE_PREFIX) - 1;

View File

@ -51,12 +51,12 @@ unsigned postproc_version(void);
/**
* Returns the libpostproc build-time configuration.
*/
const char * postproc_configuration(void);
const char *postproc_configuration(void);
/**
* Returns the libpostproc license.
*/
const char * postproc_license(void);
const char *postproc_license(void);
#define PP_QUALITY_MAX 6