diff options
author | Diego Biurrun <diego@biurrun.de> | 2006-01-14 18:17:19 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2006-01-14 18:17:19 +0000 |
commit | 69e9b2cf451eda4f9500cbe3c5a0419fef821078 (patch) | |
tree | aa5e7bcc480fb6cd1718e26c7f1e0c735e299ab1 /libavcodec | |
parent | ba64106a398cb93898e26a6535b89c592b58ba46 (diff) | |
download | ffmpeg-69e9b2cf451eda4f9500cbe3c5a0419fef821078.tar.gz |
Define separate version number for libpostproc.
Originally committed as revision 4859 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/libpostproc/postprocess.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libavcodec/libpostproc/postprocess.h b/libavcodec/libpostproc/postprocess.h index c5481fbe85..114c88a38d 100644 --- a/libavcodec/libpostproc/postprocess.h +++ b/libavcodec/libpostproc/postprocess.h @@ -29,6 +29,12 @@ extern "C" { #endif +#define LIBPOSTPROC_VERSION_INT ((51<<16)+(1<<8)+0) +#define LIBPOSTPROC_VERSION 51.1.0 +#define LIBPOSTPROC_BUILD LIBPOSTPROC_VERSION_INT + +#define LIBPOSTPROC_IDENT "postproc" AV_STRINGIFY(LIBPOSTPROC_VERSION) + #define PP_QUALITY_MAX 6 #define QP_STORE_T int8_t |