diff options
author | Alexander Strasser <eclipse7@gmx.net> | 2012-01-24 02:54:57 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-01-24 17:01:10 +0100 |
commit | 79f80f5c1f6e292af5d6413600e7129d36cb9be6 (patch) | |
tree | 961a032b00220f43798cacf420461f12c50ebe43 /libpostproc | |
parent | 5dfc7f73427de2c079a1cd0683696dad963f0288 (diff) | |
download | ffmpeg-79f80f5c1f6e292af5d6413600e7129d36cb9be6.tar.gz |
build: Allow building old API/ABI libpostproc version
Allows our users to still build against a libpostproc with the old
API/ABI. Distributions can use this option to defer the soname bump.
Signed-off-by: Alexander Strasser <eclipse7@gmx.net>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libpostproc')
-rw-r--r-- | libpostproc/postprocess.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libpostproc/postprocess.h b/libpostproc/postprocess.h index 64e63da002..c2c5c73240 100644 --- a/libpostproc/postprocess.h +++ b/libpostproc/postprocess.h @@ -29,9 +29,11 @@ #include "libavutil/avutil.h" +#ifndef LIBPOSTPROC_VERSION_MAJOR #define LIBPOSTPROC_VERSION_MAJOR 52 #define LIBPOSTPROC_VERSION_MINOR 0 #define LIBPOSTPROC_VERSION_MICRO 100 +#endif #define LIBPOSTPROC_VERSION_INT AV_VERSION_INT(LIBPOSTPROC_VERSION_MAJOR, \ LIBPOSTPROC_VERSION_MINOR, \ |