Tizen 2.1 base
[profile/ivi/gst-plugins-bad0.10.git] / sys / winks / gstksclock.h
1 /*
2  * Copyright (C) 2008 Ole André Vadla Ravnås <ole.andre.ravnas@tandberg.com>
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Library General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20 #ifndef __GST_KS_CLOCK_H__
21 #define __GST_KS_CLOCK_H__
22
23 #include <gst/gst.h>
24 #include <windows.h>
25
26 #include "ksvideohelpers.h"
27
28 G_BEGIN_DECLS
29
30 #define GST_TYPE_KS_CLOCK \
31   (gst_ks_clock_get_type ())
32 #define GST_KS_CLOCK(obj) \
33   (G_TYPE_CHECK_INSTANCE_CAST ((obj), GST_TYPE_KS_CLOCK, GstKsClock))
34 #define GST_KS_CLOCK_CLASS(klass) \
35   (G_TYPE_CHECK_CLASS_CAST ((klass), GST_TYPE_KS_CLOCK, GstKsClockClass))
36 #define GST_IS_KS_CLOCK(obj) \
37   (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GST_TYPE_KS_CLOCK))
38 #define GST_IS_KS_CLOCK_CLASS(klass) \
39   (G_TYPE_CHECK_CLASS_TYPE ((klass), GST_TYPE_KS_CLOCK))
40
41 typedef struct _GstKsClock        GstKsClock;
42 typedef struct _GstKsClockClass   GstKsClockClass;
43 typedef struct _GstKsClockPrivate GstKsClockPrivate;
44
45 struct _GstKsClock
46 {
47   GObject parent;
48
49   GstKsClockPrivate *priv;
50 };
51
52 struct _GstKsClockClass
53 {
54   GObjectClass parent_class;
55 };
56
57 GType gst_ks_clock_get_type (void);
58
59 gboolean gst_ks_clock_open (GstKsClock * self);
60 void gst_ks_clock_close (GstKsClock * self);
61
62 HANDLE gst_ks_clock_get_handle (GstKsClock * self);
63
64 void gst_ks_clock_prepare (GstKsClock * self);
65 void gst_ks_clock_start (GstKsClock * self);
66
67 void gst_ks_clock_provide_master_clock (GstKsClock * self,
68     GstClock * master_clock);
69
70 G_END_DECLS
71
72 #endif /* __GST_KS_CLOCK_H__ */