summaryrefslogtreecommitdiff
path: root/libavutil/avutil.h
diff options
context:
space:
mode:
authorStefano Sabatini <stefano.sabatini-lala@poste.it>2008-08-08 18:32:20 +0000
committerStefano Sabatini <stefano.sabatini-lala@poste.it>2008-08-08 18:32:20 +0000
commit7f0026dded7b2acbb93a762468c2d37eaa486083 (patch)
tree4d850a2f64d146387d171ec6c000ecccb1eb52ab /libavutil/avutil.h
parent3241ec1d6f2bddb7416438ad28503df9b203c956 (diff)
Implement avutil_version().
Originally committed as revision 14665 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil/avutil.h')
-rw-r--r--libavutil/avutil.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/libavutil/avutil.h b/libavutil/avutil.h
index 6ce70ac5b9..6b5096e58b 100644
--- a/libavutil/avutil.h
+++ b/libavutil/avutil.h
@@ -35,7 +35,7 @@
#define AV_VERSION(a, b, c) AV_VERSION_DOT(a, b, c)
#define LIBAVUTIL_VERSION_MAJOR 49
-#define LIBAVUTIL_VERSION_MINOR 7
+#define LIBAVUTIL_VERSION_MINOR 8
#define LIBAVUTIL_VERSION_MICRO 0
#define LIBAVUTIL_VERSION_INT AV_VERSION_INT(LIBAVUTIL_VERSION_MAJOR, \
@@ -48,6 +48,10 @@
#define LIBAVUTIL_IDENT "Lavu" AV_STRINGIFY(LIBAVUTIL_VERSION)
+/**
+ * Returns the LIBAVUTIL_VERSION_INT constant.
+ */
+unsigned avutil_version(void);
#include "common.h"
#include "mathematics.h"