[FFmpeg-devel] [PATCH] Move AV_NOPTS_VALUE, AV_TIME_BASE, AV_TIME_BASE_Q symbols from libavcodec to libavcore.

Stefano Sabatini stefano.sabatini-lala
Wed Dec 8 19:52:59 CET 2010


Remove last compile-time dependancy of libavfilter on libavcodec.
---
 libavcodec/avcodec.h |    4 ----
 libavcore/avcore.h   |    4 ++++
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h
index 94ae9d3..a482216 100644
--- a/libavcodec/avcodec.h
+++ b/libavcodec/avcodec.h
@@ -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:
diff --git a/libavcore/avcore.h b/libavcore/avcore.h
index b19efe8..a3fa1fb 100644
--- a/libavcore/avcore.h
+++ b/libavcore/avcore.h
@@ -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.
-- 
1.7.2.3




More information about the ffmpeg-devel mailing list