summaryrefslogtreecommitdiffstats
path: root/libswscale/swscale.h
diff options
context:
space:
mode:
authorstefano <stefano@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-08-29 18:23:54 +0000
committerstefano <stefano@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-08-29 18:23:54 +0000
commit6c30638aa150adad54c0961e70af25f8014a9ba9 (patch)
tree7af309215e9b1f088e89b5bee23073c9db2a02fb /libswscale/swscale.h
parentfea35f288ad7f9ed355e25d2868ee566444668ba (diff)
downloadmpv-6c30638aa150adad54c0961e70af25f8014a9ba9.tar.bz2
mpv-6c30638aa150adad54c0961e70af25f8014a9ba9.tar.xz
Implement swscale_version().
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27492 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libswscale/swscale.h')
-rw-r--r--libswscale/swscale.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/libswscale/swscale.h b/libswscale/swscale.h
index a0c735b696..51ff4685c2 100644
--- a/libswscale/swscale.h
+++ b/libswscale/swscale.h
@@ -30,7 +30,7 @@
#include "libavutil/avutil.h"
#define LIBSWSCALE_VERSION_MAJOR 0
-#define LIBSWSCALE_VERSION_MINOR 5
+#define LIBSWSCALE_VERSION_MINOR 6
#define LIBSWSCALE_VERSION_MICRO 1
#define LIBSWSCALE_VERSION_INT AV_VERSION_INT(LIBSWSCALE_VERSION_MAJOR, \
@@ -43,6 +43,11 @@
#define LIBSWSCALE_IDENT "SwS" AV_STRINGIFY(LIBSWSCALE_VERSION)
+/**
+ * Returns the LIBSWSCALE_VERSION_INT constant.
+ */
+unsigned swscale_version(void);
+
/* values for the flags, the stuff on the command line is different */
#define SWS_FAST_BILINEAR 1
#define SWS_BILINEAR 2