summaryrefslogtreecommitdiffstats
path: root/libswscale/swscale.h
diff options
context:
space:
mode:
authorlucabe <lucabe@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-07-20 12:13:57 +0000
committerlucabe <lucabe@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-07-20 12:13:57 +0000
commit0860745385f730be8615373ed834a652154e2516 (patch)
tree8cf981ea376bd06794527f82cf0f761be5158ce8 /libswscale/swscale.h
parent68deda7604af1d9270bdf5da5cc78a109272a70c (diff)
downloadmpv-0860745385f730be8615373ed834a652154e2516.tar.bz2
mpv-0860745385f730be8615373ed834a652154e2516.tar.xz
Use libavutil in libswscale, and allow it to be built out of the mplayer tree
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19148 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libswscale/swscale.h')
-rw-r--r--libswscale/swscale.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/libswscale/swscale.h b/libswscale/swscale.h
index e589e7dce0..37c5ec7490 100644
--- a/libswscale/swscale.h
+++ b/libswscale/swscale.h
@@ -29,6 +29,15 @@
extern "C" {
#endif
+#define AV_STRINGIFY(s) AV_TOSTRING(s)
+#define AV_TOSTRING(s) #s
+
+#define LIBSWSCALE_VERSION_INT ((0<<16)+(5<<8)+0)
+#define LIBSWSCALE_VERSION 0.5.0
+#define LIBSWSCALE_BUILD LIBSWSCALE_VERSION_INT
+
+#define LIBSWSCALE_IDENT "SwS" AV_STRINGIFY(LIBSWSCALE_VERSION)
+
/* values for the flags, the stuff on the command line is different */
#define SWS_FAST_BILINEAR 1
#define SWS_BILINEAR 2