2 * Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
3 * 2000 Wim Taymans <wtay@chello.be>
5 * gstclock.h: Header for clock subsystem
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Library General Public
9 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Library General Public License for more details.
17 * You should have received a copy of the GNU Library General Public
18 * License along with this library; if not, write to the
19 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 * Boston, MA 02111-1307, USA.
23 #ifndef __GST_CLOCK_H__
24 #define __GST_CLOCK_H__
26 #include <gst/gstobject.h>
30 /* --- standard type macros --- */
31 #define GST_TYPE_CLOCK (gst_clock_get_type ())
32 #define GST_CLOCK(clock) (G_TYPE_CHECK_INSTANCE_CAST ((clock), GST_TYPE_CLOCK, GstClock))
33 #define GST_IS_CLOCK(clock) (G_TYPE_CHECK_INSTANCE_TYPE ((clock), GST_TYPE_CLOCK))
34 #define GST_CLOCK_CLASS(cclass) (G_TYPE_CHECK_CLASS_CAST ((cclass), GST_TYPE_CLOCK, GstClockClass))
35 #define GST_IS_CLOCK_CLASS(cclass) (G_TYPE_CHECK_CLASS_TYPE ((cclass), GST_TYPE_CLOCK))
36 #define GST_CLOCK_GET_CLASS(clock) (G_TYPE_INSTANCE_GET_CLASS ((clock), GST_TYPE_CLOCK, GstClockClass))
38 typedef guint64 GstClockTime;
39 typedef gint64 GstClockTimeDiff;
40 typedef gpointer GstClockID;
42 #define GST_CLOCK_TIME_NONE ((GstClockTime)-1)
43 #define GST_CLOCK_TIME_IS_VALID(time) ((time) != GST_CLOCK_TIME_NONE)
45 #define GST_SECOND ((guint64) G_USEC_PER_SEC * G_GINT64_CONSTANT (1000))
46 #define GST_MSECOND ((guint64) GST_SECOND / G_GINT64_CONSTANT (1000))
47 #define GST_USECOND ((guint64) GST_SECOND / G_GINT64_CONSTANT (1000000))
48 #define GST_NSECOND ((guint64) GST_SECOND / G_GINT64_CONSTANT (1000000000))
50 #define GST_CLOCK_DIFF(s, e) (GstClockTimeDiff)((s) - (e))
51 #define GST_TIMEVAL_TO_TIME(tv) ((tv).tv_sec * GST_SECOND + (tv).tv_usec * GST_USECOND)
52 #define GST_TIME_TO_TIMEVAL(t,tv) \
54 (tv).tv_sec = (t) / GST_SECOND; \
55 (tv).tv_usec = ((t) / GST_USECOND) % GST_MSECOND; \
58 #define GST_CLOCK_ENTRY_TRACE_NAME "GstClockEntry"
60 typedef struct _GstClockEntry GstClockEntry;
61 typedef struct _GstClock GstClock;
62 typedef struct _GstClockClass GstClockClass;
64 /* --- prototype for async callbacks --- */
65 typedef gboolean (*GstClockCallback) (GstClock *clock, GstClockTime time,
66 GstClockID id, gpointer user_data);
69 /* --- protected --- */
71 GST_CLOCK_ENTRY_EARLY,
72 GST_CLOCK_ENTRY_RESTART
73 } GstClockEntryStatus;
76 /* --- protected --- */
77 GST_CLOCK_ENTRY_SINGLE,
78 GST_CLOCK_ENTRY_PERIODIC
81 #define GST_CLOCK_ENTRY(entry) ((GstClockEntry *)(entry))
82 #define GST_CLOCK_ENTRY_CLOCK(entry) ((entry)->clock)
83 #define GST_CLOCK_ENTRY_TYPE(entry) ((entry)->type)
84 #define GST_CLOCK_ENTRY_TIME(entry) ((entry)->time)
85 #define GST_CLOCK_ENTRY_INTERVAL(entry) ((entry)->interval)
86 #define GST_CLOCK_ENTRY_STATUS(entry) ((entry)->status)
88 struct _GstClockEntry {
89 /* --- protected --- */
91 GstClockEntryType type;
93 GstClockTime interval;
94 GstClockEntryStatus status;
95 GstClockCallback func;
101 GST_CLOCK_STOPPED = 0,
102 GST_CLOCK_TIMEOUT = 1,
105 GST_CLOCK_UNSUPPORTED = 4
110 GST_CLOCK_FLAG_CAN_DO_SINGLE_SYNC = (1 << 1),
111 GST_CLOCK_FLAG_CAN_DO_SINGLE_ASYNC = (1 << 2),
112 GST_CLOCK_FLAG_CAN_DO_PERIODIC_SYNC = (1 << 3),
113 GST_CLOCK_FLAG_CAN_DO_PERIODIC_ASYNC = (1 << 4),
114 GST_CLOCK_FLAG_CAN_SET_RESOLUTION = (1 << 5),
115 GST_CLOCK_FLAG_CAN_SET_SPEED = (1 << 6)
118 #define GST_CLOCK_FLAGS(clock) (GST_CLOCK(clock)->flags)
125 /* --- protected --- */
126 GstClockTime start_time;
127 GstClockTime last_time;
130 /* --- private --- */
131 gboolean accept_discont; /* FIXME: REMOVE! */
132 gdouble speed; /* FIXME: REMOVE! */
134 gboolean active; /* FIXME: REMOVE! */
136 GMutex *active_mutex;
140 GstClockTime last_event;
141 GstClockTime max_event_diff;
143 /* weird padding here */
144 guint8 padding[sizeof(gpointer) * GST_PADDING - sizeof (GstClockTime) * 2];
145 /*gpointer _gst_reserved[GST_PADDING];*/
148 struct _GstClockClass {
149 GstObjectClass parent_class;
152 gdouble (*change_speed) (GstClock *clock,
153 gdouble oldspeed, gdouble newspeed);
154 gdouble (*get_speed) (GstClock *clock);
155 guint64 (*change_resolution) (GstClock *clock, guint64 old_resolution,
156 guint64 new_resolution);
157 guint64 (*get_resolution) (GstClock *clock);
159 GstClockTime (*get_internal_time) (GstClock *clock);
161 /* waiting on an ID */
162 GstClockEntryStatus (*wait) (GstClock *clock, GstClockEntry *entry);
163 GstClockEntryStatus (*wait_async) (GstClock *clock, GstClockEntry *entry);
164 void (*unschedule) (GstClock *clock, GstClockEntry *entry);
165 void (*unlock) (GstClock *clock, GstClockEntry *entry);
166 gpointer _gst_reserved[GST_PADDING];
169 GType gst_clock_get_type (void);
171 #ifndef GST_DISABLE_DEPRECATED
172 gdouble gst_clock_set_speed (GstClock *clock, gdouble speed);
173 gdouble gst_clock_get_speed (GstClock *clock);
176 guint64 gst_clock_set_resolution (GstClock *clock, guint64 resolution);
177 guint64 gst_clock_get_resolution (GstClock *clock);
179 #ifndef GST_DISABLE_DEPRECATED
180 void gst_clock_set_active (GstClock *clock, gboolean active);
181 gboolean gst_clock_is_active (GstClock *clock);
182 void gst_clock_reset (GstClock *clock);
183 gboolean gst_clock_handle_discont (GstClock *clock, guint64 time);
186 GstClockTime gst_clock_get_time (GstClock *clock);
187 GstClockTime gst_clock_get_event_time (GstClock *clock);
190 /* FIXME: deprecate? */
191 #ifndef GST_DISABLE_DEPRECATED
192 GstClockID gst_clock_get_next_id (GstClock *clock);
194 /* creating IDs that can be used to get notifications */
195 GstClockID gst_clock_new_single_shot_id (GstClock *clock,
197 GstClockID gst_clock_new_periodic_id (GstClock *clock,
198 GstClockTime start_time,
199 GstClockTime interval);
201 /* operations on IDs */
202 GstClockTime gst_clock_id_get_time (GstClockID id);
203 GstClockReturn gst_clock_id_wait (GstClockID id,
204 GstClockTimeDiff *jitter);
205 GstClockReturn gst_clock_id_wait_async (GstClockID id,
206 GstClockCallback func,
208 void gst_clock_id_unschedule (GstClockID id);
209 void gst_clock_id_unlock (GstClockID id);
210 void gst_clock_id_free (GstClockID id);
216 #endif /* __GST_CLOCK_H__ */