2005-11-16 16:49:49 +00:00
|
|
|
/* GStreamer
|
|
|
|
* Copyright (C) 2005 Andy Wingo <wingo@pobox.com>
|
2006-09-05 08:35:20 +00:00
|
|
|
* 2006 Joni Valtanen <joni.valtanen@movial.fi>
|
2010-05-05 15:33:51 +00:00
|
|
|
* Copyright (C) 2012 Collabora Ltd. <tim.muller@collabora.co.uk>
|
2005-11-16 16:49:49 +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
|
2012-11-03 20:44:48 +00:00
|
|
|
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
2005-11-16 16:49:49 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef __GST_NET_TIME_PROVIDER_H__
|
|
|
|
#define __GST_NET_TIME_PROVIDER_H__
|
|
|
|
|
|
|
|
#include <gst/gst.h>
|
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
|
|
#define GST_TYPE_NET_TIME_PROVIDER \
|
|
|
|
(gst_net_time_provider_get_type())
|
|
|
|
#define GST_NET_TIME_PROVIDER(obj) \
|
|
|
|
(G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_NET_TIME_PROVIDER,GstNetTimeProvider))
|
|
|
|
#define GST_NET_TIME_PROVIDER_CLASS(klass) \
|
2006-06-01 18:22:14 +00:00
|
|
|
(G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_NET_TIME_PROVIDER,GstNetTimeProviderClass))
|
2005-11-16 16:49:49 +00:00
|
|
|
#define GST_IS_NET_TIME_PROVIDER(obj) \
|
|
|
|
(G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_NET_TIME_PROVIDER))
|
2006-06-01 18:22:14 +00:00
|
|
|
#define GST_IS_NET_TIME_PROVIDER_CLASS(klass) \
|
2005-11-16 16:49:49 +00:00
|
|
|
(G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_NET_TIME_PROVIDER))
|
|
|
|
|
|
|
|
typedef struct _GstNetTimeProvider GstNetTimeProvider;
|
|
|
|
typedef struct _GstNetTimeProviderClass GstNetTimeProviderClass;
|
Use a private stuct to not break ABI.
Original commit message from CVS:
* docs/libs/gstreamer-libs-sections.txt:
* libs/gst/net/gstnetclientclock.c:
(gst_net_client_clock_class_init), (gst_net_client_clock_init),
(gst_net_client_clock_finalize), (gst_net_client_clock_do_select),
(gst_net_client_clock_thread), (gst_net_client_clock_start),
(gst_net_client_clock_stop), (gst_net_client_clock_new):
* libs/gst/net/gstnetclientclock.h:
* libs/gst/net/gstnettimeprovider.c:
(gst_net_time_provider_class_init), (gst_net_time_provider_init),
(gst_net_time_provider_finalize), (gst_net_time_provider_thread),
(gst_net_time_provider_start), (gst_net_time_provider_stop),
(gst_net_time_provider_new):
* libs/gst/net/gstnettimeprovider.h:
Use a private stuct to not break ABI.
2008-02-27 19:01:12 +00:00
|
|
|
typedef struct _GstNetTimeProviderPrivate GstNetTimeProviderPrivate;
|
|
|
|
|
2005-11-24 09:44:07 +00:00
|
|
|
/**
|
|
|
|
* GstNetTimeProvider:
|
|
|
|
*
|
|
|
|
* Opaque #GstNetTimeProvider structure.
|
|
|
|
*/
|
2005-11-16 16:49:49 +00:00
|
|
|
struct _GstNetTimeProvider {
|
|
|
|
GstObject parent;
|
|
|
|
|
libs/gst/: Documentation updates.
Original commit message from CVS:
* libs/gst/base/gstadapter.c:
* libs/gst/base/gstadapter.h:
* libs/gst/base/gstbasesink.c: (gst_base_sink_class_init),
(gst_base_sink_get_position):
* libs/gst/base/gstbasesink.h:
* libs/gst/base/gstbasesrc.c: (gst_base_src_class_init),
(gst_base_src_default_query), (gst_base_src_default_do_seek),
(gst_base_src_do_seek), (gst_base_src_perform_seek),
(gst_base_src_send_event), (gst_base_src_update_length),
(gst_base_src_get_range), (gst_base_src_loop),
(gst_base_src_start):
* libs/gst/base/gstbasesrc.h:
* libs/gst/base/gstbasetransform.h:
* libs/gst/base/gstcollectpads.h:
* libs/gst/base/gstpushsrc.c:
* libs/gst/base/gstpushsrc.h:
* libs/gst/dataprotocol/dataprotocol.c:
* libs/gst/dataprotocol/dataprotocol.h:
* libs/gst/net/gstnetclientclock.h:
* libs/gst/net/gstnettimeprovider.h:
Documentation updates.
2005-12-18 16:04:41 +00:00
|
|
|
/*< private >*/
|
Use a private stuct to not break ABI.
Original commit message from CVS:
* docs/libs/gstreamer-libs-sections.txt:
* libs/gst/net/gstnetclientclock.c:
(gst_net_client_clock_class_init), (gst_net_client_clock_init),
(gst_net_client_clock_finalize), (gst_net_client_clock_do_select),
(gst_net_client_clock_thread), (gst_net_client_clock_start),
(gst_net_client_clock_stop), (gst_net_client_clock_new):
* libs/gst/net/gstnetclientclock.h:
* libs/gst/net/gstnettimeprovider.c:
(gst_net_time_provider_class_init), (gst_net_time_provider_init),
(gst_net_time_provider_finalize), (gst_net_time_provider_thread),
(gst_net_time_provider_start), (gst_net_time_provider_stop),
(gst_net_time_provider_new):
* libs/gst/net/gstnettimeprovider.h:
Use a private stuct to not break ABI.
2008-02-27 19:01:12 +00:00
|
|
|
GstNetTimeProviderPrivate *priv;
|
|
|
|
|
2011-11-03 13:26:12 +00:00
|
|
|
gpointer _gst_reserved[GST_PADDING];
|
2005-11-16 16:49:49 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct _GstNetTimeProviderClass {
|
|
|
|
GstObjectClass parent_class;
|
2011-11-11 16:17:43 +00:00
|
|
|
|
|
|
|
gpointer _gst_reserved[GST_PADDING];
|
2005-11-16 16:49:49 +00:00
|
|
|
};
|
|
|
|
|
2011-11-11 16:17:43 +00:00
|
|
|
GType gst_net_time_provider_get_type (void);
|
2010-05-05 15:33:51 +00:00
|
|
|
|
2011-11-11 16:17:43 +00:00
|
|
|
GstNetTimeProvider* gst_net_time_provider_new (GstClock *clock,
|
2005-11-16 16:49:49 +00:00
|
|
|
const gchar *address,
|
|
|
|
gint port);
|
|
|
|
|
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* __GST_NET_TIME_PROVIDER_H__ */
|