From 49344ecad4d202518d7e59e7bde37f0f2d34554f Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Thu, 20 Dec 2012 16:40:04 +0100 Subject: [PATCH] systemclock: add OTHER clock type Add an OTHER clock type so that subclasses are able to mark themselves as using some other clock source than the realtime or monotonic clock. --- gst/gstsystemclock.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/gst/gstsystemclock.h b/gst/gstsystemclock.h index 8df54a1..f474a4e 100644 --- a/gst/gstsystemclock.h +++ b/gst/gstsystemclock.h @@ -47,12 +47,14 @@ typedef struct _GstSystemClockPrivate GstSystemClockPrivate; * @GST_CLOCK_TYPE_REALTIME: time since Epoch * @GST_CLOCK_TYPE_MONOTONIC: monotonic time since some unspecified starting * point + * @@GST_CLOCK_TYPE_OTHER: some other time source is used * * The different kind of clocks. */ typedef enum { GST_CLOCK_TYPE_REALTIME = 0, - GST_CLOCK_TYPE_MONOTONIC = 1 + GST_CLOCK_TYPE_MONOTONIC = 1, + GST_CLOCK_TYPE_OTHER = 2 } GstClockType; /** -- 2.7.4