diff options
author | mru <mru@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2008-02-19 22:52:28 +0000 |
---|---|---|
committer | mru <mru@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2008-02-19 22:52:28 +0000 |
commit | f4cab7e69a11fcb513f36436118bc944da2f6d12 (patch) | |
tree | b733d08fc1d23805adc0236f287bc357dbc08a89 | |
parent | 3e7edf6233f3867c0a47bdea317bc49327cbee23 (diff) |
Clean up lib* version definitions
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26034 b3059339-0415-0410-9bf9-f77b7e298cf2
-rw-r--r-- | libswscale/swscale.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/libswscale/swscale.h b/libswscale/swscale.h index 275b5673bf..4dd38d6d87 100644 --- a/libswscale/swscale.h +++ b/libswscale/swscale.h @@ -29,8 +29,10 @@ #include "avutil.h" -#define LIBSWSCALE_VERSION_INT ((0<<16)+(5<<8)+0) -#define LIBSWSCALE_VERSION 0.5.0 +#define LIBSWSCALE_VERSION_TRIPLET 0,5,0 + +#define LIBSWSCALE_VERSION_INT AV_VERSION_INT(LIBSWSCALE_VERSION_TRIPLET) +#define LIBSWSCALE_VERSION AV_VERSION(LIBSWSCALE_VERSION_TRIPLET) #define LIBSWSCALE_BUILD LIBSWSCALE_VERSION_INT #define LIBSWSCALE_IDENT "SwS" AV_STRINGIFY(LIBSWSCALE_VERSION) |