2002-02-03 20:07:09 +00:00
|
|
|
/* GStreamer
|
|
|
|
* Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
|
|
|
|
* 2000 Wim Taymans <wtay@chello.be>
|
docs/design/part-states.txt: Some more docs.
Original commit message from CVS:
* docs/design/part-states.txt:
Some more docs.
* gst/gstbin.c: (gst_bin_set_clock_func), (gst_bin_recalc_state),
(gst_bin_change_state_func), (bin_bus_handler):
Doc updates. Don't distribute the same clock over and over again.
* gst/gstclock.c:
* gst/gstclock.h:
Doc updates.
* gst/gstpad.c: (gst_flow_get_name), (gst_flow_to_quark),
(gst_pad_get_type), (gst_pad_push), (gst_pad_push_event),
(gst_pad_send_event):
* gst/gstpad.h:
Make probe emission threadsafe again.
Register quarks and move _get_name() from utils.
Doc updates.
* gst/gstpipeline.c: (gst_pipeline_class_init),
(gst_pipeline_change_state), (gst_pipeline_provide_clock_func):
Only redistribute the clock of it changed.
* gst/gstsystemclock.h:
Doc updates.
* gst/gstutils.c:
* gst/gstutils.h:
Moved the _flow_get_name() to GstPad.
2005-10-11 11:08:52 +00:00
|
|
|
* 2005 Wim Taymans <wim@fluendo.com>
|
2002-02-03 20:07:09 +00:00
|
|
|
*
|
2005-05-30 15:48:45 +00:00
|
|
|
* gstsystemclock.h: A clock implementation based on system time
|
2002-02-03 20:07:09 +00:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef __GST_SYSTEM_CLOCK_H__
|
|
|
|
#define __GST_SYSTEM_CLOCK_H__
|
|
|
|
|
|
|
|
#include <gst/gstclock.h>
|
|
|
|
|
2002-07-08 19:07:30 +00:00
|
|
|
G_BEGIN_DECLS
|
2004-03-15 14:43:35 +00:00
|
|
|
|
2009-08-28 14:07:16 +00:00
|
|
|
#define GST_TYPE_SYSTEM_CLOCK (gst_system_clock_get_type ())
|
|
|
|
#define GST_SYSTEM_CLOCK(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GST_TYPE_SYSTEM_CLOCK, GstSystemClock))
|
|
|
|
#define GST_SYSTEM_CLOCK_CAST(obj) ((GstSystemClock *)(obj))
|
|
|
|
#define GST_IS_SYSTEM_CLOCK(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GST_TYPE_SYSTEM_CLOCK))
|
|
|
|
#define GST_SYSTEM_CLOCK_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GST_TYPE_SYSTEM_CLOCK, GstSystemClockClass))
|
|
|
|
#define GST_IS_SYSTEM_CLOCK_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GST_TYPE_SYSTEM_CLOCK))
|
|
|
|
#define GST_SYSTEM_CLOCK_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GST_TYPE_SYSTEM_CLOCK, GstSystemClockClass))
|
2004-03-15 14:43:35 +00:00
|
|
|
|
|
|
|
|
2002-02-03 20:07:09 +00:00
|
|
|
typedef struct _GstSystemClock GstSystemClock;
|
|
|
|
typedef struct _GstSystemClockClass GstSystemClockClass;
|
2009-02-03 17:04:46 +00:00
|
|
|
typedef struct _GstSystemClockPrivate GstSystemClockPrivate;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* GstClockType:
|
|
|
|
* @GST_CLOCK_TYPE_REALTIME: time since Epoch
|
|
|
|
* @GST_CLOCK_TYPE_MONOTONIC: monotonic time since some unspecified starting
|
|
|
|
* point
|
2009-04-14 17:12:52 +00:00
|
|
|
*
|
|
|
|
* The different kind of clocks.
|
2009-02-03 17:04:46 +00:00
|
|
|
*/
|
|
|
|
typedef enum {
|
2009-08-28 14:07:16 +00:00
|
|
|
GST_CLOCK_TYPE_REALTIME = 0,
|
|
|
|
GST_CLOCK_TYPE_MONOTONIC = 1
|
2009-02-03 17:04:46 +00:00
|
|
|
} GstClockType;
|
2002-02-03 20:07:09 +00:00
|
|
|
|
2005-10-28 18:14:24 +00:00
|
|
|
/**
|
|
|
|
* GstSystemClock:
|
|
|
|
* @clock: The parent clock
|
|
|
|
*
|
|
|
|
* The default implementation of a #GstClock that uses the system time.
|
|
|
|
*/
|
2004-03-15 14:43:35 +00:00
|
|
|
struct _GstSystemClock {
|
2009-08-28 14:07:16 +00:00
|
|
|
GstClock clock;
|
2003-05-10 14:38:48 +00:00
|
|
|
|
2005-03-07 18:27:42 +00:00
|
|
|
/*< private >*/
|
2009-08-28 14:07:16 +00:00
|
|
|
GThread *thread; /* thread for async notify */
|
|
|
|
gboolean stopping;
|
2003-10-07 21:58:42 +00:00
|
|
|
|
2009-02-03 17:04:46 +00:00
|
|
|
/* ABI added */
|
|
|
|
GstSystemClockPrivate *priv;
|
|
|
|
|
2011-02-22 15:04:12 +00:00
|
|
|
gpointer _gst_reserved[GST_PADDING];
|
2002-02-03 20:07:09 +00:00
|
|
|
};
|
|
|
|
|
2004-03-15 14:43:35 +00:00
|
|
|
struct _GstSystemClockClass {
|
|
|
|
GstClockClass parent_class;
|
2003-10-07 21:58:42 +00:00
|
|
|
|
2005-03-07 18:27:42 +00:00
|
|
|
/*< private >*/
|
2003-12-09 02:39:31 +00:00
|
|
|
gpointer _gst_reserved[GST_PADDING];
|
2002-02-03 20:07:09 +00:00
|
|
|
};
|
|
|
|
|
2009-08-28 14:07:16 +00:00
|
|
|
GType gst_system_clock_get_type (void);
|
2002-02-03 20:07:09 +00:00
|
|
|
|
2009-08-28 14:07:16 +00:00
|
|
|
GstClock* gst_system_clock_obtain (void);
|
2002-02-03 20:07:09 +00:00
|
|
|
|
2002-07-08 19:07:30 +00:00
|
|
|
G_END_DECLS
|
2004-03-15 14:43:35 +00:00
|
|
|
|
2002-02-03 20:07:09 +00:00
|
|
|
#endif /* __GST_SYSTEM_CLOCK_H__ */
|