diff options
author | Diego Biurrun <diego@biurrun.de> | 2009-11-18 17:16:02 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2009-11-18 17:16:02 +0000 |
commit | bd381fd3f60ca93ec9d383b87577a14f2951ff69 (patch) | |
tree | d4b2b0b4bd4940e3ce6d55e3598fd5f9ba78af9e /libswscale/swscale.h | |
parent | c1736936982e9b0d3400462eda2b0bf410f6e003 (diff) | |
download | ffmpeg-bd381fd3f60ca93ec9d383b87577a14f2951ff69.tar.gz |
Add functions to return library license and library configuration.
Originally committed as revision 29932 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
Diffstat (limited to 'libswscale/swscale.h')
-rw-r--r-- | libswscale/swscale.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/libswscale/swscale.h b/libswscale/swscale.h index 9a088af3fc..aec6a38e94 100644 --- a/libswscale/swscale.h +++ b/libswscale/swscale.h @@ -48,6 +48,16 @@ */ unsigned swscale_version(void); +/** + * Returns the libswscale build-time configuration. + */ +const char * swscale_configuration(void); + +/** + * Returns the libswscale license. + */ +const char * swscale_license(void); + /* values for the flags, the stuff on the command line is different */ #define SWS_FAST_BILINEAR 1 #define SWS_BILINEAR 2 |