summaryrefslogtreecommitdiff
path: root/libswscale
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2011-12-22 03:07:57 +0100
committerMichael Niedermayer <michaelni@gmx.at>2011-12-22 03:07:57 +0100
commit0f91a577321e063dfeb626c2d74945b271a888e3 (patch)
treec9d30ddfd375be767b7d0268d1c6327133d9980b /libswscale
parent55a6d8d9fa51eede315544d87b62f466dd815b9e (diff)
libswscale: increase LIBSWSCALE_VERSION_MICRO to 100
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libswscale')
-rw-r--r--libswscale/swscale.h2
-rw-r--r--libswscale/utils.c1
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;
}