Mercurial > libavcodec.hg
changeset 6417:82b05580c400 libavcodec
less preprocessor magic in version number macros
author | mru |
---|---|
date | Tue, 26 Feb 2008 20:37:59 +0000 |
parents | 9cd577ad9c0b |
children | eb740c8e9212 |
files | avcodec.h |
diffstat | 1 files changed, 9 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/avcodec.h Tue Feb 26 20:17:30 2008 +0000 +++ b/avcodec.h Tue Feb 26 20:37:59 2008 +0000 @@ -30,10 +30,16 @@ #include "libavutil/avutil.h" #include <sys/types.h> /* size_t */ -#define LIBAVCODEC_VERSION_TRIPLET 51,50,1 +#define LIBAVCODEC_VERSION_MAJOR 51 +#define LIBAVCODEC_VERSION_MINOR 50 +#define LIBAVCODEC_VERSION_MICRO 1 -#define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_TRIPLET) -#define LIBAVCODEC_VERSION AV_VERSION(LIBAVCODEC_VERSION_TRIPLET) +#define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \ + LIBAVCODEC_VERSION_MINOR, \ + LIBAVCODEC_VERSION_MICRO) +#define LIBAVCODEC_VERSION AV_VERSION(LIBAVCODEC_VERSION_MAJOR, \ + LIBAVCODEC_VERSION_MINOR, \ + LIBAVCODEC_VERSION_MICRO) #define LIBAVCODEC_BUILD LIBAVCODEC_VERSION_INT #define LIBAVCODEC_IDENT "Lavc" AV_STRINGIFY(LIBAVCODEC_VERSION)