summaryrefslogtreecommitdiff
path: root/libavcore/avcore.h
diff options
context:
space:
mode:
authorStefano Sabatini <stefano.sabatini-lala@poste.it>2010-12-09 17:27:33 +0000
committerStefano Sabatini <stefano.sabatini-lala@poste.it>2010-12-09 17:27:33 +0000
commitc61cdd0afb32fb6ea52d5f036d264d124e5cda7c (patch)
treedc22df59452e6e163cf81d42acf4a660f3b9acfd /libavcore/avcore.h
parent6d34323ee65f63084309ba05b09c8c2a0fca9924 (diff)
Move AV_NOPTS_VALUE, AV_TIME_BASE, AV_TIME_BASE_Q symbols from
libavcodec to libavcore. Remove another compile-time dependancy of libavfilter on libavcodec. Originally committed as revision 25923 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcore/avcore.h')
-rw-r--r--libavcore/avcore.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/libavcore/avcore.h b/libavcore/avcore.h
index b19efe8cdb..714eac4bbf 100644
--- a/libavcore/avcore.h
+++ b/libavcore/avcore.h
@@ -27,7 +27,7 @@
#include "libavutil/avutil.h"
#define LIBAVCORE_VERSION_MAJOR 0
-#define LIBAVCORE_VERSION_MINOR 15
+#define LIBAVCORE_VERSION_MINOR 16
#define LIBAVCORE_VERSION_MICRO 0
#define LIBAVCORE_VERSION_INT AV_VERSION_INT(LIBAVCORE_VERSION_MAJOR, \
@@ -55,6 +55,10 @@ const char *avcore_configuration(void);
*/
const char *avcore_license(void);
+#define AV_NOPTS_VALUE INT64_C(0x8000000000000000)
+#define AV_TIME_BASE 1000000
+#define AV_TIME_BASE_Q (AVRational){1, AV_TIME_BASE}
+
/**
* Those FF_API_* defines are not part of public API.
* They may change, break or disappear at any time.