Implement swscale_version().
authorStefano Sabatini <stefano.sabatini-lala@poste.it>
Fri, 29 Aug 2008 18:23:54 +0000 (18:23 +0000)
committerStefano Sabatini <stefano.sabatini-lala@poste.it>
Fri, 29 Aug 2008 18:23:54 +0000 (18:23 +0000)
Originally committed as revision 27492 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale

libswscale/swscale.c
libswscale/swscale.h

index ccdeae8..891f79a 100644 (file)
@@ -73,6 +73,11 @@ untested special converters
 #include "libavutil/x86_cpu.h"
 #include "libavutil/bswap.h"
 
+unsigned swscale_version(void)
+{
+    return LIBSWSCALE_VERSION_INT;
+}
+
 #undef MOVNTQ
 #undef PAVGB
 
index a0c735b..51ff468 100644 (file)
@@ -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, \
 
 #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