diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2011-12-22 03:07:13 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-12-22 03:07:13 +0100 |
commit | 55a6d8d9fa51eede315544d87b62f466dd815b9e (patch) | |
tree | d6603fbcbea625624c7f59813f379aaf1ed24c65 /libpostproc/postprocess.c | |
parent | d5874e9c2ca44e639663769bd5f5f780578c6e92 (diff) | |
download | ffmpeg-55a6d8d9fa51eede315544d87b62f466dd815b9e.tar.gz |
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.c | 2 |
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; } |