diff options
author | jamal <jamrial@gmail.com> | 2012-09-27 11:12:19 -0300 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-09-28 15:10:18 +0200 |
commit | a70b4935f1867797b62312c20035025fad8b1f94 (patch) | |
tree | 027a5b3afd5cff29c04071cd1fd8fb2e9523aa96 /libswresample/version.h | |
parent | b75c3d2b8b1602236be2d597297187efc696f7c1 (diff) | |
download | ffmpeg-a70b4935f1867797b62312c20035025fad8b1f94.tar.gz |
Add missing version macros to libraries
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libswresample/version.h')
-rw-r--r-- | libswresample/version.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/libswresample/version.h b/libswresample/version.h index 0f610bc65e..2c7b932818 100644 --- a/libswresample/version.h +++ b/libswresample/version.h @@ -29,11 +29,17 @@ #include "libavutil/avutil.h" #define LIBSWRESAMPLE_VERSION_MAJOR 0 -#define LIBSWRESAMPLE_VERSION_MINOR 15 +#define LIBSWRESAMPLE_VERSION_MINOR 16 #define LIBSWRESAMPLE_VERSION_MICRO 100 #define LIBSWRESAMPLE_VERSION_INT AV_VERSION_INT(LIBSWRESAMPLE_VERSION_MAJOR, \ LIBSWRESAMPLE_VERSION_MINOR, \ LIBSWRESAMPLE_VERSION_MICRO) +#define LIBSWRESAMPLE_VERSION AV_VERSION(LIBSWRESAMPLE_VERSION_MAJOR, \ + LIBSWRESAMPLE_VERSION_MINOR, \ + LIBSWRESAMPLE_VERSION_MICRO) +#define LIBSWRESAMPLE_BUILD LIBSWRESAMPLE_VERSION_INT + +#define LIBSWRESAMPLE_IDENT "SwR" AV_STRINGIFY(LIBSWRESAMPLE_VERSION) #endif /* SWR_VERSION_H */ |