gstreamer_core/gst/gstsystemclock.h
changeset 0 0e761a78d257
child 8 4a7fac7dd34a
equal deleted inserted replaced
-1:000000000000 0:0e761a78d257
       
     1 /* GStreamer
       
     2  * Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
       
     3  *                    2000 Wim Taymans <wtay@chello.be>
       
     4  *                    2005 Wim Taymans <wim@fluendo.com>
       
     5  *
       
     6  * gstsystemclock.h: A clock implementation based on system time
       
     7  *
       
     8  * This library is free software; you can redistribute it and/or
       
     9  * modify it under the terms of the GNU Library General Public
       
    10  * License as published by the Free Software Foundation; either
       
    11  * version 2 of the License, or (at your option) any later version.
       
    12  *
       
    13  * This library is distributed in the hope that it will be useful,
       
    14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
       
    15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
       
    16  * Library General Public License for more details.
       
    17  *
       
    18  * You should have received a copy of the GNU Library General Public
       
    19  * License along with this library; if not, write to the
       
    20  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
       
    21  * Boston, MA 02111-1307, USA.
       
    22  */
       
    23 
       
    24 
       
    25 #ifndef __GST_SYSTEM_CLOCK_H__
       
    26 #define __GST_SYSTEM_CLOCK_H__
       
    27 
       
    28 #include <gst/gstclock.h>
       
    29 
       
    30 G_BEGIN_DECLS
       
    31 
       
    32 #define GST_TYPE_SYSTEM_CLOCK 			(gst_system_clock_get_type ())
       
    33 #define GST_SYSTEM_CLOCK(obj) 			(G_TYPE_CHECK_INSTANCE_CAST ((obj), GST_TYPE_SYSTEM_CLOCK, GstSystemClock))
       
    34 #define GST_IS_SYSTEM_CLOCK(obj) 		(G_TYPE_CHECK_INSTANCE_TYPE ((obj), GST_TYPE_SYSTEM_CLOCK))
       
    35 #define GST_SYSTEM_CLOCK_CLASS(klass) 		(G_TYPE_CHECK_CLASS_CAST ((klass), GST_TYPE_SYSTEM_CLOCK, GstSystemClockClass))
       
    36 #define GST_IS_SYSTEM_CLOCK_CLASS(klass) 	(G_TYPE_CHECK_CLASS_TYPE ((klass), GST_TYPE_SYSTEM_CLOCK))
       
    37 #define GST_SYSTEM_CLOCK_GET_CLASS(obj) 	(G_TYPE_INSTANCE_GET_CLASS ((obj), GST_TYPE_SYSTEM_CLOCK, GstSystemClockClass))
       
    38 
       
    39 
       
    40 typedef struct _GstSystemClock GstSystemClock;
       
    41 typedef struct _GstSystemClockClass GstSystemClockClass;
       
    42 
       
    43 /**
       
    44  * GstSystemClock:
       
    45  * @clock: The parent clock
       
    46  *
       
    47  * The default implementation of a #GstClock that uses the system time.
       
    48  */
       
    49 struct _GstSystemClock {
       
    50   GstClock 	 clock;
       
    51 
       
    52   /*< private >*/
       
    53   GThread	*thread;	/* thread for async notify */
       
    54   gboolean 	 stopping;
       
    55 
       
    56   gpointer _gst_reserved[GST_PADDING];
       
    57 };
       
    58 
       
    59 struct _GstSystemClockClass {
       
    60   GstClockClass  parent_class;
       
    61 
       
    62   /*< private >*/
       
    63   gpointer _gst_reserved[GST_PADDING];
       
    64 };
       
    65 #ifdef __SYMBIAN32__
       
    66 IMPORT_C
       
    67 #endif
       
    68 
       
    69 
       
    70 GType 			gst_system_clock_get_type 	(void);
       
    71 #ifdef __SYMBIAN32__
       
    72 IMPORT_C
       
    73 #endif
       
    74 
       
    75 
       
    76 GstClock*		gst_system_clock_obtain		(void);
       
    77 
       
    78 G_END_DECLS
       
    79 
       
    80 #endif /* __GST_SYSTEM_CLOCK_H__ */