diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2011-12-22 03:07:57 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-12-22 03:07:57 +0100 |
commit | 0f91a577321e063dfeb626c2d74945b271a888e3 (patch) | |
tree | c9d30ddfd375be767b7d0268d1c6327133d9980b /libswscale | |
parent | 55a6d8d9fa51eede315544d87b62f466dd815b9e (diff) | |
download | ffmpeg-0f91a577321e063dfeb626c2d74945b271a888e3.tar.gz |
libswscale: increase LIBSWSCALE_VERSION_MICRO to 100
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libswscale')
-rw-r--r-- | libswscale/swscale.h | 2 | ||||
-rw-r--r-- | libswscale/utils.c | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/libswscale/swscale.h b/libswscale/swscale.h index 886af2d74d..f65d0767c0 100644 --- a/libswscale/swscale.h +++ b/libswscale/swscale.h @@ -33,7 +33,7 @@ #define LIBSWSCALE_VERSION_MAJOR 2 #define LIBSWSCALE_VERSION_MINOR 1 -#define LIBSWSCALE_VERSION_MICRO 0 +#define LIBSWSCALE_VERSION_MICRO 100 #define LIBSWSCALE_VERSION_INT AV_VERSION_INT(LIBSWSCALE_VERSION_MAJOR, \ LIBSWSCALE_VERSION_MINOR, \ diff --git a/libswscale/utils.c b/libswscale/utils.c index 3adf03a6e9..7d87a13617 100644 --- a/libswscale/utils.c +++ b/libswscale/utils.c @@ -51,6 +51,7 @@ unsigned swscale_version(void) { + av_assert0(LIBSWSCALE_VERSION_MICRO >= 100); return LIBSWSCALE_VERSION_INT; } |