diff options
author | Benjamin Otte <otte@gnome.org> | 2003-05-10 14:38:48 +0000 |
---|---|---|
committer | Benjamin Otte <otte@gnome.org> | 2003-05-10 14:38:48 +0000 |
commit | e8bc3500f3049b76f0f223c23895facc1760a18b (patch) | |
tree | f6ff127693087ee406edc9efd393cbed7829a2f2 /gst/gstsystemclock.h | |
parent | b74e6f24f285c791baf59a5f22b6e1f001bebb3c (diff) |
SysClocks need their own mutex/cond pair, as we have multiple (via subclasses). Use a static mutex for setting THE sy...
Original commit message from CVS:
SysClocks need their own mutex/cond pair, as we have multiple (via subclasses). Use a static mutex for setting THE system clock
Diffstat (limited to 'gst/gstsystemclock.h')
-rw-r--r-- | gst/gstsystemclock.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gst/gstsystemclock.h b/gst/gstsystemclock.h index 49cffea0b..204e8bc58 100644 --- a/gst/gstsystemclock.h +++ b/gst/gstsystemclock.h @@ -41,6 +41,9 @@ typedef struct _GstSystemClockClass GstSystemClockClass; struct _GstSystemClock { GstClock clock; + + GMutex * mutex; + GCond * cond; }; struct _GstSystemClockClass { |