From b83d1ee3b41cfe8357836e2582104db2f3364cb0 Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Wed, 25 Dec 2013 17:16:05 +0100 Subject: avutil: Move library version related macros to version.h This is a more sensible place for these macros. --- libavutil/avutil.h | 17 ----------------- 1 file changed, 17 deletions(-) (limited to 'libavutil/avutil.h') diff --git a/libavutil/avutil.h b/libavutil/avutil.h index 782284d046..928a0146a1 100644 --- a/libavutil/avutil.h +++ b/libavutil/avutil.h @@ -163,23 +163,6 @@ #define AV_PRAGMA(s) _Pragma(#s) -/** - * @} - */ - -/** - * @defgroup version_utils Library Version Macros - * - * Useful to check and match library version in order to maintain - * backward compatibility. - * - * @{ - */ - -#define AV_VERSION_INT(a, b, c) (a<<16 | b<<8 | c) -#define AV_VERSION_DOT(a, b, c) a ##.## b ##.## c -#define AV_VERSION(a, b, c) AV_VERSION_DOT(a, b, c) - /** * @} */ -- cgit v1.2.3