Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2011-12-22 06:07:13 +0400
committerMichael Niedermayer <michaelni@gmx.at>2011-12-22 06:07:13 +0400
commit55a6d8d9fa51eede315544d87b62f466dd815b9e (patch)
treed6603fbcbea625624c7f59813f379aaf1ed24c65 /libpostproc/postprocess.c
parentd5874e9c2ca44e639663769bd5f5f780578c6e92 (diff)
libpostproc: increase LIBPOSTPROC_VERSION_MICRO to 100
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libpostproc/postprocess.c')
-rw-r--r--libpostproc/postprocess.c2
1 files changed, 2 insertions, 0 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;
}