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 /libavcodec | |
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 'libavcodec')
-rw-r--r-- | libavcodec/avcodec.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 94ae9d3808..ecfc28be09 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -33,7 +33,7 @@ #define LIBAVCODEC_VERSION_MAJOR 52 #define LIBAVCODEC_VERSION_MINOR 99 -#define LIBAVCODEC_VERSION_MICRO 0 +#define LIBAVCODEC_VERSION_MICRO 1 #define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \ LIBAVCODEC_VERSION_MINOR, \ @@ -89,10 +89,6 @@ # define FF_INTERNALC_MEM_TYPE size_t #endif -#define AV_NOPTS_VALUE INT64_C(0x8000000000000000) -#define AV_TIME_BASE 1000000 -#define AV_TIME_BASE_Q (AVRational){1, AV_TIME_BASE} - /** * Identify the syntax and semantics of the bitstream. * The principle is roughly: |