summaryrefslogtreecommitdiff
authorMichael Niedermayer <michaelni@gmx.at>2011-12-22 02:07:13 (GMT)
committer Michael Niedermayer <michaelni@gmx.at>2011-12-22 02:07:13 (GMT)
commit55a6d8d9fa51eede315544d87b62f466dd815b9e (patch)
treed6603fbcbea625624c7f59813f379aaf1ed24c65
parentd5874e9c2ca44e639663769bd5f5f780578c6e92 (diff)
downloadffmpeg-55a6d8d9fa51eede315544d87b62f466dd815b9e.zip
ffmpeg-55a6d8d9fa51eede315544d87b62f466dd815b9e.tar.gz
ffmpeg-55a6d8d9fa51eede315544d87b62f466dd815b9e.tar.bz2
libpostproc: increase LIBPOSTPROC_VERSION_MICRO to 100
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat
-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 22cbe25..ed5c240 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 4be7d22..61c8a04 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, \