From 0f91a577321e063dfeb626c2d74945b271a888e3 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Thu, 22 Dec 2011 03:07:57 +0100 Subject: [PATCH] libswscale: increase LIBSWSCALE_VERSION_MICRO to 100 Signed-off-by: Michael Niedermayer --- libswscale/swscale.h | 2 +- libswscale/utils.c | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) 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; }