diff options
author | Luca Abeni <lucabe72@email.it> | 2006-07-20 12:13:57 +0000 |
---|---|---|
committer | Luca Abeni <lucabe72@email.it> | 2006-07-20 12:13:57 +0000 |
commit | 94c4def23c3b212dd0f8fde902cecf47e5bee1c2 (patch) | |
tree | ba231cc7583e8f1a7b695517df31aa686034ac6a /libswscale/swscale.h | |
parent | 918a45917c4cab7f830c05d728f257a7c0ce2f34 (diff) | |
download | ffmpeg-94c4def23c3b212dd0f8fde902cecf47e5bee1c2.tar.gz |
Use libavutil in libswscale, and allow it to be built out of the mplayer tree
Originally committed as revision 19148 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
Diffstat (limited to 'libswscale/swscale.h')
-rw-r--r-- | libswscale/swscale.h | 9 |
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 |