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 /libavutil/utils.c | |
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 'libavutil/utils.c')
-rw-r--r-- | libavutil/utils.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/libavutil/utils.c b/libavutil/utils.c index 2521d3401e..26499b8389 100644 --- a/libavutil/utils.c +++ b/libavutil/utils.c @@ -16,6 +16,7 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ +#include "config.h" #include "avutil.h" /** @@ -27,3 +28,14 @@ unsigned avutil_version(void) { return LIBAVUTIL_VERSION_INT; } + +const char * avutil_configuration(void) +{ + return FFMPEG_CONFIGURATION; +} + +const char * avutil_license(void) +{ +#define LICENSE_PREFIX "libavutil license: " + return LICENSE_PREFIX FFMPEG_LICENSE + sizeof(LICENSE_PREFIX) - 1; +} |