diff options
author | Diego Biurrun | 2009-11-18 17:15:17 +0000 |
---|---|---|
committer | Diego Biurrun | 2009-11-18 17:15:17 +0000 |
commit | c1736936982e9b0d3400462eda2b0bf410f6e003 (patch) | |
tree | f147fdb968bd17ed937618c3362fc668cdffb0ef /libavdevice/avdevice.h | |
parent | d7a0e29f3156271e4ff7c551199ba42d28e7934d (diff) |
Add functions to return library license and library configuration.
Originally committed as revision 20547 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavdevice/avdevice.h')
-rw-r--r-- | libavdevice/avdevice.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/libavdevice/avdevice.h b/libavdevice/avdevice.h index 2635423481..124cfa28a0 100644 --- a/libavdevice/avdevice.h +++ b/libavdevice/avdevice.h @@ -39,6 +39,16 @@ unsigned avdevice_version(void); /** + * Returns the libavdevice build-time configuration. + */ +const char * avdevice_configuration(void); + +/** + * Returns the libavdevice license. + */ +const char * avdevice_license(void); + +/** * Initialize libavdevice and register all the input and output devices. * @warning This function is not thread safe. */ |