diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-12-09 17:27:33 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-12-09 17:27:33 +0000 |
commit | c61cdd0afb32fb6ea52d5f036d264d124e5cda7c (patch) | |
tree | dc22df59452e6e163cf81d42acf4a660f3b9acfd /libavcore | |
parent | 6d34323ee65f63084309ba05b09c8c2a0fca9924 (diff) | |
download | ffmpeg-c61cdd0afb32fb6ea52d5f036d264d124e5cda7c.tar.gz |
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')
-rw-r--r-- | libavcore/avcore.h | 6 |
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. |