diff options
author | Diego Biurrun <diego@biurrun.de> | 2009-11-18 17:15:17 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2009-11-18 17:15:17 +0000 |
commit | c1736936982e9b0d3400462eda2b0bf410f6e003 (patch) | |
tree | f147fdb968bd17ed937618c3362fc668cdffb0ef /libavcodec | |
parent | d7a0e29f3156271e4ff7c551199ba42d28e7934d (diff) | |
download | ffmpeg-c1736936982e9b0d3400462eda2b0bf410f6e003.tar.gz |
Add functions to return library license and library configuration.
Originally committed as revision 20547 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/avcodec.h | 10 | ||||
-rw-r--r-- | libavcodec/utils.c | 11 |
2 files changed, 21 insertions, 0 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index fbe138a7ca..7ffbd95955 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -3067,6 +3067,16 @@ AVCodec *av_codec_next(AVCodec *c); unsigned avcodec_version(void); /** + * Returns the libavcodec build-time configuration. + */ +const char * avcodec_configuration(void); + +/** + * Returns the libavcodec license. + */ +const char * avcodec_license(void); + +/** * Initializes libavcodec. * * @warning This function must be called before any other libavcodec diff --git a/libavcodec/utils.c b/libavcodec/utils.c index ddd11606dc..6be9d724ae 100644 --- a/libavcodec/utils.c +++ b/libavcodec/utils.c @@ -905,6 +905,17 @@ unsigned avcodec_version( void ) return LIBAVCODEC_VERSION_INT; } +const char * avcodec_configuration(void) +{ + return FFMPEG_CONFIGURATION; +} + +const char * avcodec_license(void) +{ +#define LICENSE_PREFIX "libavcodec license: " + return LICENSE_PREFIX FFMPEG_LICENSE + sizeof(LICENSE_PREFIX) - 1; +} + void avcodec_init(void) { static int initialized = 0; |