avutil: Move library version related macros to version.h
authorDiego Biurrun <diego@biurrun.de>
Wed, 25 Dec 2013 16:16:05 +0000 (17:16 +0100)
committerDiego Biurrun <diego@biurrun.de>
Thu, 26 Dec 2013 18:05:22 +0000 (19:05 +0100)
This is a more sensible place for these macros.

libavcodec/version.h
libavdevice/version.h
libavfilter/version.h
libavformat/version.h
libavresample/version.h
libavutil/avutil.h
libavutil/utils.c
libavutil/version.h
libswscale/version.h

index 9a43e82..73c786d 100644 (file)
@@ -26,6 +26,8 @@
  * Libavcodec version macros.
  */
 
+#include "libavutil/version.h"
+
 #define LIBAVCODEC_VERSION_MAJOR 55
 #define LIBAVCODEC_VERSION_MINOR 31
 #define LIBAVCODEC_VERSION_MICRO  0
index 9731606..487b4c0 100644 (file)
@@ -25,7 +25,7 @@
  * Libavdevice version macros
  */
 
-#include "libavutil/avutil.h"
+#include "libavutil/version.h"
 
 #define LIBAVDEVICE_VERSION_MAJOR 54
 #define LIBAVDEVICE_VERSION_MINOR  0
index 9f00ffe..f41114b 100644 (file)
@@ -27,7 +27,7 @@
  * Libavfilter version macros
  */
 
-#include "libavutil/avutil.h"
+#include "libavutil/version.h"
 
 #define LIBAVFILTER_VERSION_MAJOR  4
 #define LIBAVFILTER_VERSION_MINOR  0
index 23a9d67..a170c06 100644 (file)
@@ -27,7 +27,7 @@
  * Libavformat version macros
  */
 
-#include "libavutil/avutil.h"
+#include "libavutil/version.h"
 
 #define LIBAVFORMAT_VERSION_MAJOR 55
 #define LIBAVFORMAT_VERSION_MINOR 10
index 3cc4441..fce5770 100644 (file)
@@ -25,6 +25,8 @@
  * Libavresample version macros.
  */
 
+#include "libavutil/version.h"
+
 #define LIBAVRESAMPLE_VERSION_MAJOR  1
 #define LIBAVRESAMPLE_VERSION_MINOR  1
 #define LIBAVRESAMPLE_VERSION_MICRO  0
index 782284d..928a014 100644 (file)
  */
 
 /**
- * @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)
-
-/**
- * @}
- */
-
-/**
  * @addtogroup lavu_ver
  * @{
  */
index 9b18c97..2bb27de 100644 (file)
@@ -17,7 +17,7 @@
  */
 
 #include "config.h"
-#include "avutil.h"
+#include "version.h"
 
 /**
  * @file
index 9e1f2d8..cf5cc2f 100644 (file)
 #include "avutil.h"
 
 /**
+ * @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)
+
+/**
+ * @}
+ */
+
+/**
  * @file
  * @ingroup lavu
  * Libavutil version macros
index 5483673..0f32c7a 100644 (file)
@@ -24,7 +24,7 @@
  * swscale version macros
  */
 
-#include "libavutil/avutil.h"
+#include "libavutil/version.h"
 
 #define LIBSWSCALE_VERSION_MAJOR 2
 #define LIBSWSCALE_VERSION_MINOR 1