summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libpostproc/postprocess.c2
-rw-r--r--libpostproc/postprocess.h2
2 files changed, 3 insertions, 1 deletions
diff --git a/libpostproc/postprocess.c b/libpostproc/postprocess.c
index 22cbe25a2e..ed5c240012 100644
--- a/libpostproc/postprocess.c
+++ b/libpostproc/postprocess.c
@@ -75,6 +75,7 @@ try to unroll inner for(x=0 ... loop to avoid these damn if(x ... checks
#include "config.h"
#include "libavutil/avutil.h"
+#include "libavutil/avassert.h"
#include <inttypes.h>
#include <stdio.h>
#include <stdlib.h>
@@ -90,6 +91,7 @@ try to unroll inner for(x=0 ... loop to avoid these damn if(x ... checks
unsigned postproc_version(void)
{
+ av_assert0(LIBPOSTPROC_VERSION_MICRO >= 100);
return LIBPOSTPROC_VERSION_INT;
}
diff --git a/libpostproc/postprocess.h b/libpostproc/postprocess.h
index 4be7d2214e..61c8a0421d 100644
--- a/libpostproc/postprocess.h
+++ b/libpostproc/postprocess.h
@@ -31,7 +31,7 @@
#define LIBPOSTPROC_VERSION_MAJOR 51
#define LIBPOSTPROC_VERSION_MINOR 2
-#define LIBPOSTPROC_VERSION_MICRO 0
+#define LIBPOSTPROC_VERSION_MICRO 100
#define LIBPOSTPROC_VERSION_INT AV_VERSION_INT(LIBPOSTPROC_VERSION_MAJOR, \
LIBPOSTPROC_VERSION_MINOR, \