2005-11-17 17:55:17 +00:00
|
|
|
/* GStreamer
|
|
|
|
* Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
|
|
|
|
* 2005 Wim Taymans <wim@fluendo.com>
|
|
|
|
* 2005 Andy Wingo <wingo@pobox.com>
|
2010-05-05 15:33:51 +00:00
|
|
|
* Copyright (C) 2012 Collabora Ltd. <tim.muller@collabora.co.uk>
|
2005-11-17 17:55:17 +00:00
|
|
|
*
|
|
|
|
* gstnetclientclock.h: clock that synchronizes itself to a time provider over
|
|
|
|
* the network
|
|
|
|
*
|
|
|
|
* 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-17 17:55:17 +00:00
|
|
|
*/
|
2005-11-24 09:44:07 +00:00
|
|
|
/**
|
|
|
|
* SECTION:gstnetclientclock
|
|
|
|
* @short_description: Special clock that synchronizes to a remote time
|
|
|
|
* provider.
|
|
|
|
* @see_also: #GstClock, #GstNetTimeProvider, #GstPipeline
|
|
|
|
*
|
|
|
|
* This object implements a custom #GstClock that synchronizes its time
|
|
|
|
* to a remote time provider such as #GstNetTimeProvider.
|
|
|
|
*
|
|
|
|
* A new clock is created with gst_net_client_clock_new() which takes the
|
|
|
|
* address and port of the remote time provider along with a name and
|
|
|
|
* an initial time.
|
|
|
|
*
|
|
|
|
* This clock will poll the time provider and will update its calibration
|
|
|
|
* parameters based on the local and remote observations.
|
|
|
|
*
|
2013-11-26 10:56:46 +00:00
|
|
|
* The "round-trip" property limits the maximum round trip packets can take.
|
|
|
|
*
|
2005-11-24 09:44:07 +00:00
|
|
|
* Various parameters of the clock can be configured with the parent #GstClock
|
|
|
|
* "timeout", "window-size" and "window-threshold" object properties.
|
|
|
|
*
|
|
|
|
* A #GstNetClientClock is typically set on a #GstPipeline with
|
|
|
|
* gst_pipeline_use_clock().
|
2015-01-10 10:42:00 +00:00
|
|
|
*
|
|
|
|
* If you set a #GstBus on the clock via the "bus" object property, it will
|
2015-01-21 11:44:59 +00:00
|
|
|
* send @GST_MESSAGE_ELEMENT messages with an attached #GstStructure containing
|
2015-01-10 10:42:00 +00:00
|
|
|
* statistics about clock accuracy and network traffic.
|
2005-11-24 09:44:07 +00:00
|
|
|
*/
|
2005-11-17 17:55:17 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "gstnettimepacket.h"
|
|
|
|
#include "gstnetclientclock.h"
|
|
|
|
|
2010-05-05 15:33:51 +00:00
|
|
|
#include <gio/gio.h>
|
2007-10-31 22:01:03 +00:00
|
|
|
|
2006-06-23 13:16:46 +00:00
|
|
|
GST_DEBUG_CATEGORY_STATIC (ncc_debug);
|
2005-11-17 17:55:17 +00:00
|
|
|
#define GST_CAT_DEFAULT (ncc_debug)
|
|
|
|
|
2005-12-06 19:29:15 +00:00
|
|
|
#define DEFAULT_ADDRESS "127.0.0.1"
|
|
|
|
#define DEFAULT_PORT 5637
|
|
|
|
#define DEFAULT_TIMEOUT GST_SECOND
|
2013-11-26 10:56:46 +00:00
|
|
|
#define DEFAULT_ROUNDTRIP_LIMIT GST_SECOND
|
2015-01-15 11:32:28 +00:00
|
|
|
/* Minimum timeout will be immediately (ie, as fast as one RTT), but no
|
|
|
|
* more often than 1/20th second (arbitrarily, to spread observations a little) */
|
|
|
|
#define DEFAULT_MINIMUM_UPDATE_INTERVAL (GST_SECOND / 20)
|
2005-11-17 17:55:17 +00:00
|
|
|
|
2015-02-06 17:22:22 +00:00
|
|
|
/* Maximum number of clock updates we can skip before updating */
|
|
|
|
#define MAX_SKIPPED_UPDATES 5
|
|
|
|
|
2005-11-17 17:55:17 +00:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
PROP_0,
|
|
|
|
PROP_ADDRESS,
|
2013-11-26 10:56:46 +00:00
|
|
|
PROP_PORT,
|
2015-01-10 10:42:00 +00:00
|
|
|
PROP_ROUNDTRIP_LIMIT,
|
2015-01-15 11:32:28 +00:00
|
|
|
PROP_MINIMUM_UPDATE_INTERVAL,
|
2015-01-10 10:42:00 +00:00
|
|
|
PROP_BUS
|
2005-11-17 17:55:17 +00:00
|
|
|
};
|
|
|
|
|
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
|
|
|
#define GST_NET_CLIENT_CLOCK_GET_PRIVATE(obj) \
|
|
|
|
(G_TYPE_INSTANCE_GET_PRIVATE ((obj), GST_TYPE_NET_CLIENT_CLOCK, GstNetClientClockPrivate))
|
|
|
|
|
|
|
|
struct _GstNetClientClockPrivate
|
|
|
|
{
|
2010-05-05 15:33:51 +00:00
|
|
|
GThread *thread;
|
|
|
|
|
|
|
|
GSocket *socket;
|
|
|
|
GSocketAddress *servaddr;
|
|
|
|
GCancellable *cancel;
|
2015-05-19 13:34:04 +00:00
|
|
|
gboolean made_cancel_fd;
|
2010-05-05 15:33:51 +00:00
|
|
|
|
|
|
|
GstClockTime timeout_expiration;
|
2013-11-26 10:56:46 +00:00
|
|
|
GstClockTime roundtrip_limit;
|
2013-11-25 15:17:36 +00:00
|
|
|
GstClockTime rtt_avg;
|
2015-01-15 11:32:28 +00:00
|
|
|
GstClockTime minimum_update_interval;
|
2015-02-06 17:22:22 +00:00
|
|
|
guint skipped_updates;
|
2010-05-05 15:33:51 +00:00
|
|
|
|
|
|
|
gchar *address;
|
|
|
|
gint port;
|
2015-01-10 10:42:00 +00:00
|
|
|
|
|
|
|
GstBus *bus;
|
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
|
|
|
};
|
|
|
|
|
2011-04-18 15:33:34 +00:00
|
|
|
#define _do_init \
|
2005-11-17 17:55:17 +00:00
|
|
|
GST_DEBUG_CATEGORY_INIT (ncc_debug, "netclock", 0, "Network client clock");
|
2011-04-18 15:33:34 +00:00
|
|
|
#define gst_net_client_clock_parent_class parent_class
|
|
|
|
G_DEFINE_TYPE_WITH_CODE (GstNetClientClock, gst_net_client_clock,
|
|
|
|
GST_TYPE_SYSTEM_CLOCK, _do_init);
|
2005-11-17 17:55:17 +00:00
|
|
|
|
|
|
|
static void gst_net_client_clock_finalize (GObject * object);
|
|
|
|
static void gst_net_client_clock_set_property (GObject * object, guint prop_id,
|
|
|
|
const GValue * value, GParamSpec * pspec);
|
|
|
|
static void gst_net_client_clock_get_property (GObject * object, guint prop_id,
|
|
|
|
GValue * value, GParamSpec * pspec);
|
|
|
|
|
|
|
|
static void gst_net_client_clock_stop (GstNetClientClock * self);
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_net_client_clock_class_init (GstNetClientClockClass * klass)
|
|
|
|
{
|
|
|
|
GObjectClass *gobject_class;
|
|
|
|
|
2006-05-11 18:10:34 +00:00
|
|
|
gobject_class = G_OBJECT_CLASS (klass);
|
2005-11-17 17:55:17 +00:00
|
|
|
|
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
|
|
|
g_type_class_add_private (klass, sizeof (GstNetClientClockPrivate));
|
|
|
|
|
2005-11-17 17:55:17 +00:00
|
|
|
gobject_class->finalize = gst_net_client_clock_finalize;
|
|
|
|
gobject_class->get_property = gst_net_client_clock_get_property;
|
|
|
|
gobject_class->set_property = gst_net_client_clock_set_property;
|
|
|
|
|
|
|
|
g_object_class_install_property (gobject_class, PROP_ADDRESS,
|
|
|
|
g_param_spec_string ("address", "address",
|
2010-05-05 15:33:51 +00:00
|
|
|
"The IP address of the machine providing a time server",
|
|
|
|
DEFAULT_ADDRESS, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
2006-05-11 18:10:34 +00:00
|
|
|
g_object_class_install_property (gobject_class, PROP_PORT,
|
2005-11-17 17:55:17 +00:00
|
|
|
g_param_spec_int ("port", "port",
|
2005-11-18 11:57:30 +00:00
|
|
|
"The port on which the remote server is listening", 0, G_MAXUINT16,
|
2008-03-22 14:56:17 +00:00
|
|
|
DEFAULT_PORT, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
2015-01-10 10:42:00 +00:00
|
|
|
g_object_class_install_property (gobject_class, PROP_BUS,
|
|
|
|
g_param_spec_object ("bus", "bus",
|
|
|
|
"A GstBus on which to send clock status information", GST_TYPE_BUS,
|
|
|
|
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
2013-11-26 10:56:46 +00:00
|
|
|
|
|
|
|
/**
|
2013-11-27 07:32:22 +00:00
|
|
|
* GstNetClientClock::round-trip-limit:
|
2013-11-26 10:56:46 +00:00
|
|
|
*
|
|
|
|
* Maximum allowed round-trip for packets. If this property is set to a nonzero
|
|
|
|
* value, all packets with a round-trip interval larger than this limit will be
|
|
|
|
* ignored. This is useful for networks with severe and fluctuating transport
|
|
|
|
* delays. Filtering out these packets increases stability of the synchronization.
|
|
|
|
* On the other hand, the lower the limit, the higher the amount of filtered
|
|
|
|
* packets. Empirical tests are typically necessary to estimate a good value
|
|
|
|
* for the limit.
|
|
|
|
* If the property is set to zero, the limit is disabled.
|
|
|
|
*
|
|
|
|
* Since: 1.4
|
|
|
|
*/
|
|
|
|
g_object_class_install_property (gobject_class, PROP_ROUNDTRIP_LIMIT,
|
|
|
|
g_param_spec_uint64 ("round-trip-limit", "round-trip limit",
|
|
|
|
"Maximum tolerable round-trip interval for packets, in nanoseconds "
|
|
|
|
"(0 = no limit)", 0, G_MAXUINT64, DEFAULT_ROUNDTRIP_LIMIT,
|
|
|
|
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
2015-01-15 11:32:28 +00:00
|
|
|
|
|
|
|
g_object_class_install_property (gobject_class, PROP_MINIMUM_UPDATE_INTERVAL,
|
|
|
|
g_param_spec_uint64 ("minimum-update-interval", "minimum update interval",
|
|
|
|
"Minimum polling interval for packets, in nanoseconds"
|
|
|
|
"(0 = no limit)", 0, G_MAXUINT64, DEFAULT_MINIMUM_UPDATE_INTERVAL,
|
|
|
|
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
2005-11-17 17:55:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2011-04-18 15:33:34 +00:00
|
|
|
gst_net_client_clock_init (GstNetClientClock * self)
|
2005-11-17 17:55:17 +00:00
|
|
|
{
|
gst/base/gstbasesink.*: No need to store the clock, the parent element class already has it.
Original commit message from CVS:
* gst/base/gstbasesink.c: (gst_base_sink_class_init),
(gst_base_sink_wait), (gst_base_sink_do_sync),
(gst_base_sink_handle_event):
* gst/base/gstbasesink.h:
No need to store the clock, the parent element class already
has it.
* gst/gstbin.c: (gst_bin_set_clock_func), (gst_bin_add_func):
Updates for clock_set returning a gboolean
* gst/gstclock.c: (gst_clock_entry_new), (gst_clock_id_wait),
(gst_clock_id_wait_async), (gst_clock_class_init),
(gst_clock_init), (gst_clock_finalize),
(gst_clock_get_internal_time), (gst_clock_get_time),
(gst_clock_slave_callback), (gst_clock_set_master),
(gst_clock_get_master), (do_linear_regression),
(gst_clock_add_observation), (gst_clock_set_property),
(gst_clock_get_property):
* gst/gstclock.h:
Implement master/slave. When setting a clock as a slave, a
periodic timeout is scheduled to sample master and slave times.
Then the slave clock is recalibrated to match offset and rate
of the master clock.
Update logging a bit.
Add flag so that a clock can state that is cannot be slaved to
another clock.
* gst/gstelement.c: (gst_element_set_clock):
* gst/gstelement.h:
The set_clock returns a gboolean for when an element cannot
deal with the selected clock in the pipeline.
* gst/gstpipeline.c: (gst_pipeline_change_state),
(gst_pipeline_set_clock):
* gst/gstpipeline.h:
Handle the case where the selected clock cannot be set on
the pipeline.
* gst/net/gstnetclientclock.c: (gst_net_client_clock_class_init),
(gst_net_client_clock_init), (gst_net_client_clock_finalize),
(gst_net_client_clock_set_property),
(gst_net_client_clock_get_property),
(gst_net_client_clock_observe_times):
* gst/net/gstnetclientclock.h:
Use regression code in GstClock parent, remove duplicated
functionality.
2005-11-22 18:28:44 +00:00
|
|
|
GstClock *clock = GST_CLOCK_CAST (self);
|
2012-02-27 08:02:07 +00:00
|
|
|
GstNetClientClockPrivate *priv;
|
gst/base/gstbasesink.*: No need to store the clock, the parent element class already has it.
Original commit message from CVS:
* gst/base/gstbasesink.c: (gst_base_sink_class_init),
(gst_base_sink_wait), (gst_base_sink_do_sync),
(gst_base_sink_handle_event):
* gst/base/gstbasesink.h:
No need to store the clock, the parent element class already
has it.
* gst/gstbin.c: (gst_bin_set_clock_func), (gst_bin_add_func):
Updates for clock_set returning a gboolean
* gst/gstclock.c: (gst_clock_entry_new), (gst_clock_id_wait),
(gst_clock_id_wait_async), (gst_clock_class_init),
(gst_clock_init), (gst_clock_finalize),
(gst_clock_get_internal_time), (gst_clock_get_time),
(gst_clock_slave_callback), (gst_clock_set_master),
(gst_clock_get_master), (do_linear_regression),
(gst_clock_add_observation), (gst_clock_set_property),
(gst_clock_get_property):
* gst/gstclock.h:
Implement master/slave. When setting a clock as a slave, a
periodic timeout is scheduled to sample master and slave times.
Then the slave clock is recalibrated to match offset and rate
of the master clock.
Update logging a bit.
Add flag so that a clock can state that is cannot be slaved to
another clock.
* gst/gstelement.c: (gst_element_set_clock):
* gst/gstelement.h:
The set_clock returns a gboolean for when an element cannot
deal with the selected clock in the pipeline.
* gst/gstpipeline.c: (gst_pipeline_change_state),
(gst_pipeline_set_clock):
* gst/gstpipeline.h:
Handle the case where the selected clock cannot be set on
the pipeline.
* gst/net/gstnetclientclock.c: (gst_net_client_clock_class_init),
(gst_net_client_clock_init), (gst_net_client_clock_finalize),
(gst_net_client_clock_set_property),
(gst_net_client_clock_get_property),
(gst_net_client_clock_observe_times):
* gst/net/gstnetclientclock.h:
Use regression code in GstClock parent, remove duplicated
functionality.
2005-11-22 18:28:44 +00:00
|
|
|
|
2012-02-27 08:02:07 +00:00
|
|
|
self->priv = priv = GST_NET_CLIENT_CLOCK_GET_PRIVATE (self);
|
2006-09-05 08:35:20 +00:00
|
|
|
|
2012-02-27 08:02:07 +00:00
|
|
|
priv->port = DEFAULT_PORT;
|
|
|
|
priv->address = g_strdup (DEFAULT_ADDRESS);
|
gst/base/gstbasesink.*: No need to store the clock, the parent element class already has it.
Original commit message from CVS:
* gst/base/gstbasesink.c: (gst_base_sink_class_init),
(gst_base_sink_wait), (gst_base_sink_do_sync),
(gst_base_sink_handle_event):
* gst/base/gstbasesink.h:
No need to store the clock, the parent element class already
has it.
* gst/gstbin.c: (gst_bin_set_clock_func), (gst_bin_add_func):
Updates for clock_set returning a gboolean
* gst/gstclock.c: (gst_clock_entry_new), (gst_clock_id_wait),
(gst_clock_id_wait_async), (gst_clock_class_init),
(gst_clock_init), (gst_clock_finalize),
(gst_clock_get_internal_time), (gst_clock_get_time),
(gst_clock_slave_callback), (gst_clock_set_master),
(gst_clock_get_master), (do_linear_regression),
(gst_clock_add_observation), (gst_clock_set_property),
(gst_clock_get_property):
* gst/gstclock.h:
Implement master/slave. When setting a clock as a slave, a
periodic timeout is scheduled to sample master and slave times.
Then the slave clock is recalibrated to match offset and rate
of the master clock.
Update logging a bit.
Add flag so that a clock can state that is cannot be slaved to
another clock.
* gst/gstelement.c: (gst_element_set_clock):
* gst/gstelement.h:
The set_clock returns a gboolean for when an element cannot
deal with the selected clock in the pipeline.
* gst/gstpipeline.c: (gst_pipeline_change_state),
(gst_pipeline_set_clock):
* gst/gstpipeline.h:
Handle the case where the selected clock cannot be set on
the pipeline.
* gst/net/gstnetclientclock.c: (gst_net_client_clock_class_init),
(gst_net_client_clock_init), (gst_net_client_clock_finalize),
(gst_net_client_clock_set_property),
(gst_net_client_clock_get_property),
(gst_net_client_clock_observe_times):
* gst/net/gstnetclientclock.h:
Use regression code in GstClock parent, remove duplicated
functionality.
2005-11-22 18:28:44 +00:00
|
|
|
|
2012-02-27 08:02:07 +00:00
|
|
|
gst_clock_set_timeout (clock, DEFAULT_TIMEOUT);
|
2005-11-17 17:55:17 +00:00
|
|
|
|
2012-02-27 08:02:07 +00:00
|
|
|
priv->thread = NULL;
|
2005-11-17 17:55:17 +00:00
|
|
|
|
2012-02-27 08:02:07 +00:00
|
|
|
priv->servaddr = NULL;
|
2013-11-25 15:17:36 +00:00
|
|
|
priv->rtt_avg = GST_CLOCK_TIME_NONE;
|
2013-11-26 10:56:46 +00:00
|
|
|
priv->roundtrip_limit = DEFAULT_ROUNDTRIP_LIMIT;
|
2015-01-15 11:32:28 +00:00
|
|
|
priv->minimum_update_interval = DEFAULT_MINIMUM_UPDATE_INTERVAL;
|
2015-02-06 17:22:22 +00:00
|
|
|
priv->skipped_updates = 0;
|
2005-11-17 17:55:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_net_client_clock_finalize (GObject * object)
|
|
|
|
{
|
|
|
|
GstNetClientClock *self = GST_NET_CLIENT_CLOCK (object);
|
|
|
|
|
2010-05-05 15:33:51 +00:00
|
|
|
if (self->priv->thread) {
|
2005-11-17 17:55:17 +00:00
|
|
|
gst_net_client_clock_stop (self);
|
|
|
|
}
|
|
|
|
|
2010-05-05 15:33:51 +00:00
|
|
|
g_free (self->priv->address);
|
|
|
|
self->priv->address = NULL;
|
2005-11-17 17:55:17 +00:00
|
|
|
|
2010-05-05 15:33:51 +00:00
|
|
|
if (self->priv->servaddr != NULL) {
|
|
|
|
g_object_unref (self->priv->servaddr);
|
|
|
|
self->priv->servaddr = NULL;
|
|
|
|
}
|
2005-11-17 17:55:17 +00:00
|
|
|
|
2010-05-05 15:33:51 +00:00
|
|
|
if (self->priv->socket != NULL) {
|
|
|
|
g_socket_close (self->priv->socket, NULL);
|
|
|
|
g_object_unref (self->priv->socket);
|
|
|
|
self->priv->socket = NULL;
|
|
|
|
}
|
2006-09-05 08:35:20 +00:00
|
|
|
|
2015-01-10 10:42:00 +00:00
|
|
|
if (self->priv->bus != NULL) {
|
|
|
|
gst_object_unref (self->priv->bus);
|
|
|
|
self->priv->bus = NULL;
|
|
|
|
}
|
|
|
|
|
2005-11-17 17:55:17 +00:00
|
|
|
G_OBJECT_CLASS (parent_class)->finalize (object);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_net_client_clock_set_property (GObject * object, guint prop_id,
|
|
|
|
const GValue * value, GParamSpec * pspec)
|
|
|
|
{
|
|
|
|
GstNetClientClock *self = GST_NET_CLIENT_CLOCK (object);
|
|
|
|
|
|
|
|
switch (prop_id) {
|
|
|
|
case PROP_ADDRESS:
|
2015-01-10 10:42:00 +00:00
|
|
|
GST_OBJECT_LOCK (self);
|
2010-05-05 15:33:51 +00:00
|
|
|
g_free (self->priv->address);
|
|
|
|
self->priv->address = g_value_dup_string (value);
|
|
|
|
if (self->priv->address == NULL)
|
|
|
|
self->priv->address = g_strdup (DEFAULT_ADDRESS);
|
2015-01-10 10:42:00 +00:00
|
|
|
GST_OBJECT_UNLOCK (self);
|
2005-11-17 17:55:17 +00:00
|
|
|
break;
|
|
|
|
case PROP_PORT:
|
2015-01-10 10:42:00 +00:00
|
|
|
GST_OBJECT_LOCK (self);
|
2010-05-05 15:33:51 +00:00
|
|
|
self->priv->port = g_value_get_int (value);
|
2015-01-10 10:42:00 +00:00
|
|
|
GST_OBJECT_UNLOCK (self);
|
2005-11-17 17:55:17 +00:00
|
|
|
break;
|
2013-11-26 10:56:46 +00:00
|
|
|
case PROP_ROUNDTRIP_LIMIT:
|
2015-01-10 10:42:00 +00:00
|
|
|
GST_OBJECT_LOCK (self);
|
2013-11-26 10:56:46 +00:00
|
|
|
self->priv->roundtrip_limit = g_value_get_uint64 (value);
|
2015-01-10 10:42:00 +00:00
|
|
|
GST_OBJECT_UNLOCK (self);
|
|
|
|
break;
|
2015-01-15 11:32:28 +00:00
|
|
|
case PROP_MINIMUM_UPDATE_INTERVAL:
|
|
|
|
GST_OBJECT_LOCK (self);
|
|
|
|
self->priv->minimum_update_interval = g_value_get_uint64 (value);
|
|
|
|
GST_OBJECT_UNLOCK (self);
|
|
|
|
break;
|
2015-01-10 10:42:00 +00:00
|
|
|
case PROP_BUS:
|
|
|
|
GST_OBJECT_LOCK (self);
|
|
|
|
if (self->priv->bus)
|
|
|
|
gst_object_unref (self->priv->bus);
|
|
|
|
self->priv->bus = g_value_dup_object (value);
|
|
|
|
GST_OBJECT_UNLOCK (self);
|
2013-11-26 10:56:46 +00:00
|
|
|
break;
|
2005-11-17 17:55:17 +00:00
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_net_client_clock_get_property (GObject * object, guint prop_id,
|
|
|
|
GValue * value, GParamSpec * pspec)
|
|
|
|
{
|
|
|
|
GstNetClientClock *self = GST_NET_CLIENT_CLOCK (object);
|
|
|
|
|
|
|
|
switch (prop_id) {
|
|
|
|
case PROP_ADDRESS:
|
2015-01-10 10:42:00 +00:00
|
|
|
GST_OBJECT_LOCK (self);
|
2010-05-05 15:33:51 +00:00
|
|
|
g_value_set_string (value, self->priv->address);
|
2015-01-10 10:42:00 +00:00
|
|
|
GST_OBJECT_UNLOCK (self);
|
2005-11-17 17:55:17 +00:00
|
|
|
break;
|
|
|
|
case PROP_PORT:
|
2010-05-05 15:33:51 +00:00
|
|
|
g_value_set_int (value, self->priv->port);
|
2005-11-17 17:55:17 +00:00
|
|
|
break;
|
2013-11-26 10:56:46 +00:00
|
|
|
case PROP_ROUNDTRIP_LIMIT:
|
2015-01-10 10:42:00 +00:00
|
|
|
GST_OBJECT_LOCK (self);
|
2013-11-26 10:56:46 +00:00
|
|
|
g_value_set_uint64 (value, self->priv->roundtrip_limit);
|
2015-01-10 10:42:00 +00:00
|
|
|
GST_OBJECT_UNLOCK (self);
|
|
|
|
break;
|
2015-01-15 11:32:28 +00:00
|
|
|
case PROP_MINIMUM_UPDATE_INTERVAL:
|
|
|
|
GST_OBJECT_LOCK (self);
|
|
|
|
g_value_set_uint64 (value, self->priv->minimum_update_interval);
|
|
|
|
GST_OBJECT_UNLOCK (self);
|
|
|
|
break;
|
2015-01-10 10:42:00 +00:00
|
|
|
case PROP_BUS:
|
|
|
|
GST_OBJECT_LOCK (self);
|
|
|
|
g_value_set_object (value, self->priv->bus);
|
|
|
|
GST_OBJECT_UNLOCK (self);
|
2013-11-26 10:56:46 +00:00
|
|
|
break;
|
2005-11-17 17:55:17 +00:00
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_net_client_clock_observe_times (GstNetClientClock * self,
|
|
|
|
GstClockTime local_1, GstClockTime remote, GstClockTime local_2)
|
|
|
|
{
|
2013-11-25 15:17:36 +00:00
|
|
|
GstNetClientClockPrivate *priv = self->priv;
|
2015-02-06 17:22:22 +00:00
|
|
|
GstClockTime current_timeout = 0;
|
2005-11-17 17:55:17 +00:00
|
|
|
GstClockTime local_avg;
|
gst/base/gstbasesink.*: No need to store the clock, the parent element class already has it.
Original commit message from CVS:
* gst/base/gstbasesink.c: (gst_base_sink_class_init),
(gst_base_sink_wait), (gst_base_sink_do_sync),
(gst_base_sink_handle_event):
* gst/base/gstbasesink.h:
No need to store the clock, the parent element class already
has it.
* gst/gstbin.c: (gst_bin_set_clock_func), (gst_bin_add_func):
Updates for clock_set returning a gboolean
* gst/gstclock.c: (gst_clock_entry_new), (gst_clock_id_wait),
(gst_clock_id_wait_async), (gst_clock_class_init),
(gst_clock_init), (gst_clock_finalize),
(gst_clock_get_internal_time), (gst_clock_get_time),
(gst_clock_slave_callback), (gst_clock_set_master),
(gst_clock_get_master), (do_linear_regression),
(gst_clock_add_observation), (gst_clock_set_property),
(gst_clock_get_property):
* gst/gstclock.h:
Implement master/slave. When setting a clock as a slave, a
periodic timeout is scheduled to sample master and slave times.
Then the slave clock is recalibrated to match offset and rate
of the master clock.
Update logging a bit.
Add flag so that a clock can state that is cannot be slaved to
another clock.
* gst/gstelement.c: (gst_element_set_clock):
* gst/gstelement.h:
The set_clock returns a gboolean for when an element cannot
deal with the selected clock in the pipeline.
* gst/gstpipeline.c: (gst_pipeline_change_state),
(gst_pipeline_set_clock):
* gst/gstpipeline.h:
Handle the case where the selected clock cannot be set on
the pipeline.
* gst/net/gstnetclientclock.c: (gst_net_client_clock_class_init),
(gst_net_client_clock_init), (gst_net_client_clock_finalize),
(gst_net_client_clock_set_property),
(gst_net_client_clock_get_property),
(gst_net_client_clock_observe_times):
* gst/net/gstnetclientclock.h:
Use regression code in GstClock parent, remove duplicated
functionality.
2005-11-22 18:28:44 +00:00
|
|
|
gdouble r_squared;
|
|
|
|
GstClock *clock;
|
2015-01-15 11:32:28 +00:00
|
|
|
GstClockTime rtt, rtt_limit, min_update_interval;
|
2015-01-10 10:42:00 +00:00
|
|
|
GstBus *bus = NULL;
|
|
|
|
/* Use for discont tracking */
|
|
|
|
GstClockTime time_before = 0;
|
|
|
|
GstClockTime min_guess = 0;
|
2015-01-15 11:32:28 +00:00
|
|
|
GstClockTimeDiff time_discont = 0;
|
2015-02-06 17:22:22 +00:00
|
|
|
gboolean synched, now_synched;
|
2015-01-10 10:42:00 +00:00
|
|
|
GstClockTime internal_time, external_time, rate_num, rate_den;
|
2015-02-06 17:22:22 +00:00
|
|
|
GstClockTime orig_internal_time, orig_external_time, orig_rate_num,
|
|
|
|
orig_rate_den;
|
2015-01-15 11:32:28 +00:00
|
|
|
GstClockTime max_discont;
|
2015-01-10 10:42:00 +00:00
|
|
|
|
|
|
|
GST_OBJECT_LOCK (self);
|
|
|
|
rtt_limit = self->priv->roundtrip_limit;
|
2015-01-15 11:32:28 +00:00
|
|
|
min_update_interval = self->priv->minimum_update_interval;
|
2015-01-10 10:42:00 +00:00
|
|
|
if (self->priv->bus)
|
|
|
|
bus = gst_object_ref (self->priv->bus);
|
|
|
|
GST_OBJECT_UNLOCK (self);
|
2005-11-17 17:55:17 +00:00
|
|
|
|
2013-11-26 10:56:46 +00:00
|
|
|
if (local_2 < local_1) {
|
|
|
|
GST_LOG_OBJECT (self, "Dropping observation: receive time %" GST_TIME_FORMAT
|
|
|
|
" < send time %" GST_TIME_FORMAT, GST_TIME_ARGS (local_1),
|
|
|
|
GST_TIME_ARGS (local_2));
|
2005-11-17 17:55:17 +00:00
|
|
|
goto bogus_observation;
|
2013-11-26 10:56:46 +00:00
|
|
|
}
|
2005-11-17 17:55:17 +00:00
|
|
|
|
2013-11-26 10:56:46 +00:00
|
|
|
rtt = GST_CLOCK_DIFF (local_1, local_2);
|
|
|
|
|
2015-01-10 10:42:00 +00:00
|
|
|
if ((rtt_limit > 0) && (rtt > rtt_limit)) {
|
2013-11-26 10:56:46 +00:00
|
|
|
GST_LOG_OBJECT (self,
|
|
|
|
"Dropping observation: RTT %" GST_TIME_FORMAT " > limit %"
|
2015-01-10 10:42:00 +00:00
|
|
|
GST_TIME_FORMAT, GST_TIME_ARGS (rtt), GST_TIME_ARGS (rtt_limit));
|
2013-11-26 10:56:46 +00:00
|
|
|
goto bogus_observation;
|
|
|
|
}
|
2013-11-25 15:17:36 +00:00
|
|
|
|
|
|
|
/* Track an average round trip time, for a bit of smoothing */
|
|
|
|
/* Always update before discarding a sample, so genuine changes in
|
|
|
|
* the network get picked up, eventually */
|
|
|
|
if (priv->rtt_avg == GST_CLOCK_TIME_NONE)
|
|
|
|
priv->rtt_avg = rtt;
|
2013-11-25 15:43:54 +00:00
|
|
|
else if (rtt < priv->rtt_avg) /* Shorter RTTs carry more weight than longer */
|
2013-11-25 15:17:36 +00:00
|
|
|
priv->rtt_avg = (3 * priv->rtt_avg + rtt) / 4;
|
|
|
|
else
|
2015-02-05 19:07:43 +00:00
|
|
|
priv->rtt_avg = (15 * priv->rtt_avg + rtt) / 16;
|
2013-11-25 15:17:36 +00:00
|
|
|
|
|
|
|
if (rtt > 2 * priv->rtt_avg) {
|
|
|
|
GST_LOG_OBJECT (self,
|
|
|
|
"Dropping observation, long RTT %" GST_TIME_FORMAT " > 2 * avg %"
|
|
|
|
GST_TIME_FORMAT, GST_TIME_ARGS (rtt), GST_TIME_ARGS (priv->rtt_avg));
|
|
|
|
goto bogus_observation;
|
|
|
|
}
|
|
|
|
|
2005-11-18 14:13:28 +00:00
|
|
|
local_avg = (local_2 + local_1) / 2;
|
2005-11-17 17:55:17 +00:00
|
|
|
|
2013-11-25 15:17:36 +00:00
|
|
|
GST_LOG_OBJECT (self, "local1 %" G_GUINT64_FORMAT " remote %" G_GUINT64_FORMAT
|
|
|
|
" localavg %" G_GUINT64_FORMAT " local2 %" G_GUINT64_FORMAT,
|
|
|
|
local_1, remote, local_avg, local_2);
|
|
|
|
|
gst/base/gstbasesink.*: No need to store the clock, the parent element class already has it.
Original commit message from CVS:
* gst/base/gstbasesink.c: (gst_base_sink_class_init),
(gst_base_sink_wait), (gst_base_sink_do_sync),
(gst_base_sink_handle_event):
* gst/base/gstbasesink.h:
No need to store the clock, the parent element class already
has it.
* gst/gstbin.c: (gst_bin_set_clock_func), (gst_bin_add_func):
Updates for clock_set returning a gboolean
* gst/gstclock.c: (gst_clock_entry_new), (gst_clock_id_wait),
(gst_clock_id_wait_async), (gst_clock_class_init),
(gst_clock_init), (gst_clock_finalize),
(gst_clock_get_internal_time), (gst_clock_get_time),
(gst_clock_slave_callback), (gst_clock_set_master),
(gst_clock_get_master), (do_linear_regression),
(gst_clock_add_observation), (gst_clock_set_property),
(gst_clock_get_property):
* gst/gstclock.h:
Implement master/slave. When setting a clock as a slave, a
periodic timeout is scheduled to sample master and slave times.
Then the slave clock is recalibrated to match offset and rate
of the master clock.
Update logging a bit.
Add flag so that a clock can state that is cannot be slaved to
another clock.
* gst/gstelement.c: (gst_element_set_clock):
* gst/gstelement.h:
The set_clock returns a gboolean for when an element cannot
deal with the selected clock in the pipeline.
* gst/gstpipeline.c: (gst_pipeline_change_state),
(gst_pipeline_set_clock):
* gst/gstpipeline.h:
Handle the case where the selected clock cannot be set on
the pipeline.
* gst/net/gstnetclientclock.c: (gst_net_client_clock_class_init),
(gst_net_client_clock_init), (gst_net_client_clock_finalize),
(gst_net_client_clock_set_property),
(gst_net_client_clock_get_property),
(gst_net_client_clock_observe_times):
* gst/net/gstnetclientclock.h:
Use regression code in GstClock parent, remove duplicated
functionality.
2005-11-22 18:28:44 +00:00
|
|
|
clock = GST_CLOCK_CAST (self);
|
2005-11-17 17:55:17 +00:00
|
|
|
|
2015-01-10 10:42:00 +00:00
|
|
|
/* Store what the clock produced as 'now' before this update */
|
2015-02-06 17:22:22 +00:00
|
|
|
gst_clock_get_calibration (GST_CLOCK (self), &orig_internal_time,
|
|
|
|
&orig_external_time, &orig_rate_num, &orig_rate_den);
|
|
|
|
internal_time = orig_internal_time;
|
|
|
|
external_time = orig_external_time;
|
|
|
|
rate_num = orig_rate_num;
|
|
|
|
rate_den = orig_rate_den;
|
2015-01-10 10:42:00 +00:00
|
|
|
|
|
|
|
min_guess =
|
|
|
|
gst_clock_adjust_with_calibration (GST_CLOCK (self), local_1,
|
|
|
|
internal_time, external_time, rate_num, rate_den);
|
|
|
|
time_before =
|
|
|
|
gst_clock_adjust_with_calibration (GST_CLOCK (self), local_2,
|
|
|
|
internal_time, external_time, rate_num, rate_den);
|
|
|
|
|
2015-01-15 11:32:28 +00:00
|
|
|
/* Maximum discontinuity, when we're synched with the master. Could make this a property,
|
|
|
|
* but this value seems to work fine */
|
|
|
|
max_discont = priv->rtt_avg / 4;
|
|
|
|
|
2015-02-06 17:22:22 +00:00
|
|
|
/* If the remote observation was within a max_discont window around our min/max estimates, we're synched */
|
2015-01-15 11:32:28 +00:00
|
|
|
synched =
|
|
|
|
(GST_CLOCK_DIFF (remote, min_guess) < (GstClockTimeDiff) (max_discont)
|
|
|
|
&& GST_CLOCK_DIFF (time_before,
|
|
|
|
remote) < (GstClockTimeDiff) (max_discont));
|
2015-01-10 10:42:00 +00:00
|
|
|
|
|
|
|
if (gst_clock_add_observation_unapplied (GST_CLOCK (self), local_avg, remote,
|
|
|
|
&r_squared, &internal_time, &external_time, &rate_num, &rate_den)) {
|
2015-01-15 11:32:28 +00:00
|
|
|
|
|
|
|
/* Now compare the difference (discont) in the clock
|
|
|
|
* after this observation */
|
|
|
|
time_discont = GST_CLOCK_DIFF (time_before,
|
|
|
|
gst_clock_adjust_with_calibration (GST_CLOCK (self), local_2,
|
|
|
|
internal_time, external_time, rate_num, rate_den));
|
|
|
|
|
|
|
|
/* If we were in sync with the remote clock, clamp the allowed
|
|
|
|
* discontinuity to within quarter of one RTT. In sync means our send/receive estimates
|
|
|
|
* of remote time correctly windowed the actual remote time observation */
|
|
|
|
if (synched && ABS (time_discont) > max_discont) {
|
|
|
|
GstClockTimeDiff offset;
|
|
|
|
GST_DEBUG_OBJECT (clock,
|
|
|
|
"Too large a discont, clamping to 1/4 average RTT = %"
|
|
|
|
GST_TIME_FORMAT, GST_TIME_ARGS (max_discont));
|
|
|
|
if (time_discont > 0) { /* Too large a forward step - add a -ve offset */
|
|
|
|
offset = max_discont - time_discont;
|
|
|
|
if (-offset > external_time)
|
|
|
|
external_time = 0;
|
|
|
|
else
|
|
|
|
external_time += offset;
|
|
|
|
} else { /* Too large a backward step - add a +ve offset */
|
|
|
|
offset = -(max_discont + time_discont);
|
|
|
|
external_time += offset;
|
|
|
|
}
|
|
|
|
|
|
|
|
time_discont += offset;
|
|
|
|
}
|
|
|
|
|
2015-02-06 17:22:22 +00:00
|
|
|
/* Check if the new clock params would have made our observation within range */
|
|
|
|
now_synched =
|
|
|
|
(GST_CLOCK_DIFF (remote,
|
|
|
|
gst_clock_adjust_with_calibration (GST_CLOCK (self), local_1,
|
|
|
|
internal_time, external_time, rate_num,
|
|
|
|
rate_den)) < (GstClockTimeDiff) (max_discont))
|
|
|
|
&& (GST_CLOCK_DIFF (gst_clock_adjust_with_calibration (GST_CLOCK (self),
|
|
|
|
local_2, internal_time, external_time, rate_num, rate_den),
|
|
|
|
remote) < (GstClockTimeDiff) (max_discont));
|
|
|
|
|
|
|
|
/* Only update the clock if we had synch or just gained it */
|
|
|
|
if (synched || now_synched || priv->skipped_updates > MAX_SKIPPED_UPDATES) {
|
|
|
|
gst_clock_set_calibration (GST_CLOCK (self), internal_time, external_time,
|
|
|
|
rate_num, rate_den);
|
|
|
|
/* ghetto formula - shorter timeout for bad correlations */
|
|
|
|
current_timeout = (1e-3 / (1 - MIN (r_squared, 0.99999))) * GST_SECOND;
|
|
|
|
current_timeout = MIN (current_timeout, gst_clock_get_timeout (clock));
|
|
|
|
priv->skipped_updates = 0;
|
|
|
|
} else {
|
|
|
|
/* Restore original calibration vars for the report, we're not changing the clock */
|
|
|
|
internal_time = orig_internal_time;
|
|
|
|
external_time = orig_external_time;
|
|
|
|
rate_num = orig_rate_num;
|
|
|
|
rate_den = orig_rate_den;
|
|
|
|
time_discont = 0;
|
|
|
|
priv->skipped_updates++;
|
|
|
|
}
|
2005-11-17 17:55:17 +00:00
|
|
|
}
|
2012-02-27 08:02:07 +00:00
|
|
|
|
2015-01-15 11:32:28 +00:00
|
|
|
/* Limit the polling to at most one per minimum_update_interval */
|
|
|
|
if (rtt < min_update_interval)
|
|
|
|
current_timeout = MAX (min_update_interval - rtt, current_timeout);
|
2015-01-10 10:42:00 +00:00
|
|
|
|
|
|
|
if (bus) {
|
|
|
|
GstStructure *s;
|
|
|
|
GstMessage *msg;
|
|
|
|
|
2015-01-15 11:32:28 +00:00
|
|
|
/* Output a stats message, whether we updated the clock or not */
|
2015-01-10 10:42:00 +00:00
|
|
|
s = gst_structure_new ("gst-netclock-statistics",
|
|
|
|
"synchronised", G_TYPE_BOOLEAN, synched,
|
|
|
|
"rtt", G_TYPE_UINT64, rtt,
|
|
|
|
"rtt-average", G_TYPE_UINT64, priv->rtt_avg,
|
|
|
|
"local", G_TYPE_UINT64, local_avg,
|
|
|
|
"remote", G_TYPE_UINT64, remote,
|
|
|
|
"discontinuity", G_TYPE_INT64, time_discont,
|
|
|
|
"remote-min-estimate", G_TYPE_UINT64, min_guess,
|
|
|
|
"remote-max-estimate", G_TYPE_UINT64, time_before,
|
|
|
|
"remote-min-error", G_TYPE_INT64, GST_CLOCK_DIFF (remote, min_guess),
|
|
|
|
"remote-max-error", G_TYPE_INT64, GST_CLOCK_DIFF (remote, time_before),
|
|
|
|
"request-send", G_TYPE_UINT64, local_1,
|
|
|
|
"request-receive", G_TYPE_UINT64, local_2,
|
|
|
|
"r-squared", G_TYPE_DOUBLE, r_squared,
|
|
|
|
"timeout", G_TYPE_UINT64, current_timeout,
|
|
|
|
"internal-time", G_TYPE_UINT64, internal_time,
|
|
|
|
"external-time", G_TYPE_UINT64, external_time,
|
|
|
|
"rate-num", G_TYPE_UINT64, rate_num,
|
|
|
|
"rate-den", G_TYPE_UINT64, rate_den,
|
2015-01-15 11:32:28 +00:00
|
|
|
"rate", G_TYPE_DOUBLE, (gdouble) (rate_num) / rate_den,
|
2015-01-10 10:42:00 +00:00
|
|
|
"local-clock-offset", G_TYPE_INT64, GST_CLOCK_DIFF (internal_time,
|
|
|
|
external_time), NULL);
|
|
|
|
msg = gst_message_new_element (GST_OBJECT (self), s);
|
|
|
|
gst_bus_post (bus, msg);
|
|
|
|
}
|
|
|
|
|
2010-05-05 15:33:51 +00:00
|
|
|
GST_INFO ("next timeout: %" GST_TIME_FORMAT, GST_TIME_ARGS (current_timeout));
|
|
|
|
self->priv->timeout_expiration = gst_util_get_timestamp () + current_timeout;
|
2005-11-17 17:55:17 +00:00
|
|
|
|
2015-01-10 10:42:00 +00:00
|
|
|
if (bus)
|
|
|
|
gst_object_unref (bus);
|
2005-11-17 17:55:17 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
bogus_observation:
|
2015-01-10 10:42:00 +00:00
|
|
|
if (bus)
|
|
|
|
gst_object_unref (bus);
|
2013-11-27 07:32:22 +00:00
|
|
|
/* Schedule a new packet again soon */
|
|
|
|
self->priv->timeout_expiration = gst_util_get_timestamp () + (GST_SECOND / 4);
|
|
|
|
return;
|
2005-11-17 17:55:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static gpointer
|
|
|
|
gst_net_client_clock_thread (gpointer data)
|
|
|
|
{
|
|
|
|
GstNetClientClock *self = data;
|
|
|
|
GstNetTimePacket *packet;
|
2010-05-05 15:33:51 +00:00
|
|
|
GSocket *socket = self->priv->socket;
|
|
|
|
GError *err = NULL;
|
2005-11-23 13:14:46 +00:00
|
|
|
GstClock *clock = data;
|
2005-11-17 17:55:17 +00:00
|
|
|
|
2010-05-05 15:33:51 +00:00
|
|
|
GST_INFO_OBJECT (self, "net client clock thread running, socket=%p", socket);
|
|
|
|
|
|
|
|
g_socket_set_blocking (socket, TRUE);
|
|
|
|
g_socket_set_timeout (socket, 0);
|
|
|
|
|
|
|
|
while (!g_cancellable_is_cancelled (self->priv->cancel)) {
|
2012-08-10 08:19:25 +00:00
|
|
|
GstClockTime expiration_time = self->priv->timeout_expiration;
|
|
|
|
GstClockTime now = gst_util_get_timestamp ();
|
|
|
|
gint64 socket_timeout;
|
|
|
|
|
|
|
|
if (now >= expiration_time || (expiration_time - now) <= GST_MSECOND) {
|
|
|
|
socket_timeout = 0;
|
|
|
|
} else {
|
|
|
|
socket_timeout = (expiration_time - now) / GST_USECOND;
|
|
|
|
}
|
2005-11-17 17:55:17 +00:00
|
|
|
|
2012-08-10 12:50:41 +00:00
|
|
|
GST_TRACE_OBJECT (self, "timeout: %" G_GINT64_FORMAT "us", socket_timeout);
|
2005-11-18 14:13:28 +00:00
|
|
|
|
2012-08-10 08:19:25 +00:00
|
|
|
if (!g_socket_condition_timed_wait (socket, G_IO_IN, socket_timeout,
|
|
|
|
self->priv->cancel, &err)) {
|
|
|
|
/* cancelled, timeout or error */
|
|
|
|
if (err->code == G_IO_ERROR_CANCELLED) {
|
|
|
|
GST_INFO_OBJECT (self, "cancelled");
|
|
|
|
g_clear_error (&err);
|
|
|
|
break;
|
|
|
|
} else if (err->code == G_IO_ERROR_TIMED_OUT) {
|
|
|
|
/* timed out, let's send another packet */
|
|
|
|
GST_DEBUG_OBJECT (self, "timed out");
|
2005-11-17 17:55:17 +00:00
|
|
|
|
2012-08-10 08:19:25 +00:00
|
|
|
packet = gst_net_time_packet_new (NULL);
|
2005-11-17 17:55:17 +00:00
|
|
|
|
2012-08-10 08:19:25 +00:00
|
|
|
packet->local_time = gst_clock_get_internal_time (GST_CLOCK (self));
|
2010-05-05 15:33:51 +00:00
|
|
|
|
2012-08-10 08:19:25 +00:00
|
|
|
GST_DEBUG_OBJECT (self,
|
|
|
|
"sending packet, local time = %" GST_TIME_FORMAT,
|
|
|
|
GST_TIME_ARGS (packet->local_time));
|
2005-11-17 17:55:17 +00:00
|
|
|
|
2012-08-10 08:19:25 +00:00
|
|
|
gst_net_time_packet_send (packet, self->priv->socket,
|
|
|
|
self->priv->servaddr, NULL);
|
2005-11-17 17:55:17 +00:00
|
|
|
|
2012-08-10 08:19:25 +00:00
|
|
|
g_free (packet);
|
2010-05-05 15:33:51 +00:00
|
|
|
|
2012-08-10 08:19:25 +00:00
|
|
|
/* reset timeout (but are expecting a response sooner anyway) */
|
|
|
|
self->priv->timeout_expiration =
|
|
|
|
gst_util_get_timestamp () + gst_clock_get_timeout (clock);
|
|
|
|
} else {
|
|
|
|
GST_DEBUG_OBJECT (self, "socket error: %s", err->message);
|
|
|
|
g_usleep (G_USEC_PER_SEC / 10); /* throttle */
|
|
|
|
}
|
|
|
|
g_clear_error (&err);
|
|
|
|
} else {
|
2010-05-05 15:33:51 +00:00
|
|
|
GstClockTime new_local;
|
|
|
|
|
2012-08-10 08:19:25 +00:00
|
|
|
/* got packet */
|
|
|
|
|
2010-05-05 15:33:51 +00:00
|
|
|
new_local = gst_clock_get_internal_time (GST_CLOCK (self));
|
2005-11-17 17:55:17 +00:00
|
|
|
|
2010-05-05 15:33:51 +00:00
|
|
|
packet = gst_net_time_packet_receive (socket, NULL, &err);
|
2005-11-17 17:55:17 +00:00
|
|
|
|
2012-08-10 08:19:25 +00:00
|
|
|
if (packet != NULL) {
|
|
|
|
GST_LOG_OBJECT (self, "got packet back");
|
|
|
|
GST_LOG_OBJECT (self, "local_1 = %" GST_TIME_FORMAT,
|
|
|
|
GST_TIME_ARGS (packet->local_time));
|
|
|
|
GST_LOG_OBJECT (self, "remote = %" GST_TIME_FORMAT,
|
|
|
|
GST_TIME_ARGS (packet->remote_time));
|
|
|
|
GST_LOG_OBJECT (self, "local_2 = %" GST_TIME_FORMAT,
|
|
|
|
GST_TIME_ARGS (new_local));
|
|
|
|
|
|
|
|
/* observe_times will reset the timeout */
|
|
|
|
gst_net_client_clock_observe_times (self, packet->local_time,
|
|
|
|
packet->remote_time, new_local);
|
|
|
|
|
|
|
|
g_free (packet);
|
|
|
|
} else if (err != NULL) {
|
2010-05-05 15:33:51 +00:00
|
|
|
GST_WARNING_OBJECT (self, "receive error: %s", err->message);
|
2012-08-10 08:19:25 +00:00
|
|
|
g_clear_error (&err);
|
2010-05-05 15:33:51 +00:00
|
|
|
}
|
2005-11-17 17:55:17 +00:00
|
|
|
}
|
|
|
|
}
|
2010-05-05 15:33:51 +00:00
|
|
|
GST_INFO_OBJECT (self, "shutting down net client clock thread");
|
2005-11-17 17:55:17 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
gst_net_client_clock_start (GstNetClientClock * self)
|
|
|
|
{
|
2010-05-05 15:33:51 +00:00
|
|
|
GSocketAddress *servaddr;
|
|
|
|
GSocketAddress *myaddr;
|
2013-04-09 09:17:45 +00:00
|
|
|
GSocketAddress *anyaddr;
|
2010-05-05 15:33:51 +00:00
|
|
|
GInetAddress *inetaddr;
|
|
|
|
GSocket *socket;
|
2011-12-04 13:04:35 +00:00
|
|
|
GError *error = NULL;
|
2013-04-24 13:58:49 +00:00
|
|
|
GSocketFamily family;
|
2015-05-19 13:34:04 +00:00
|
|
|
GPollFD dummy_pollfd;
|
2005-11-17 17:55:17 +00:00
|
|
|
|
2010-05-05 15:33:51 +00:00
|
|
|
g_return_val_if_fail (self->priv->address != NULL, FALSE);
|
|
|
|
g_return_val_if_fail (self->priv->servaddr == NULL, FALSE);
|
2005-11-17 17:55:17 +00:00
|
|
|
|
2013-04-24 13:58:49 +00:00
|
|
|
/* create target address */
|
|
|
|
inetaddr = g_inet_address_new_from_string (self->priv->address);
|
|
|
|
if (inetaddr == NULL)
|
|
|
|
goto bad_address;
|
|
|
|
|
|
|
|
family = g_inet_address_get_family (inetaddr);
|
|
|
|
|
|
|
|
servaddr = g_inet_socket_address_new (inetaddr, self->priv->port);
|
|
|
|
g_object_unref (inetaddr);
|
|
|
|
|
|
|
|
g_assert (servaddr != NULL);
|
|
|
|
|
|
|
|
GST_DEBUG_OBJECT (self, "will communicate with %s:%d", self->priv->address,
|
|
|
|
self->priv->port);
|
|
|
|
|
|
|
|
socket = g_socket_new (family, G_SOCKET_TYPE_DATAGRAM,
|
2010-05-05 15:33:51 +00:00
|
|
|
G_SOCKET_PROTOCOL_UDP, &error);
|
|
|
|
|
|
|
|
if (socket == NULL)
|
2005-11-17 17:55:17 +00:00
|
|
|
goto no_socket;
|
|
|
|
|
2013-04-09 09:17:45 +00:00
|
|
|
GST_DEBUG_OBJECT (self, "binding socket");
|
2013-04-24 13:58:49 +00:00
|
|
|
inetaddr = g_inet_address_new_any (family);
|
2013-04-09 09:17:45 +00:00
|
|
|
anyaddr = g_inet_socket_address_new (inetaddr, 0);
|
|
|
|
g_socket_bind (socket, anyaddr, TRUE, &error);
|
|
|
|
g_object_unref (anyaddr);
|
|
|
|
g_object_unref (inetaddr);
|
|
|
|
|
|
|
|
if (error != NULL)
|
|
|
|
goto bind_error;
|
|
|
|
|
2010-05-05 15:33:51 +00:00
|
|
|
/* check address we're bound to, mostly for debugging purposes */
|
|
|
|
myaddr = g_socket_get_local_address (socket, &error);
|
2005-11-17 17:55:17 +00:00
|
|
|
|
2010-05-05 15:33:51 +00:00
|
|
|
if (myaddr == NULL)
|
2005-11-17 17:55:17 +00:00
|
|
|
goto getsockname_error;
|
|
|
|
|
2006-05-25 15:52:19 +00:00
|
|
|
GST_DEBUG_OBJECT (self, "socket opened on UDP port %hd",
|
2010-05-05 15:33:51 +00:00
|
|
|
g_inet_socket_address_get_port (G_INET_SOCKET_ADDRESS (myaddr)));
|
2006-05-25 15:52:19 +00:00
|
|
|
|
2010-05-05 15:33:51 +00:00
|
|
|
g_object_unref (myaddr);
|
|
|
|
|
|
|
|
self->priv->cancel = g_cancellable_new ();
|
2015-05-19 13:34:04 +00:00
|
|
|
self->priv->made_cancel_fd =
|
|
|
|
g_cancellable_make_pollfd (self->priv->cancel, &dummy_pollfd);
|
|
|
|
|
2010-05-05 15:33:51 +00:00
|
|
|
self->priv->socket = socket;
|
|
|
|
self->priv->servaddr = G_SOCKET_ADDRESS (servaddr);
|
libs/gst/net/: Massive code removal and cleanups because of GstPoll.
Original commit message from CVS:
Patch by: Peter Kjellerstedt <pkj at axis dot com>
* libs/gst/net/gstnetclientclock.c: (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_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:
Massive code removal and cleanups because of GstPoll.
Fixes #505417.
2008-02-27 18:27:59 +00:00
|
|
|
|
2010-05-05 15:33:51 +00:00
|
|
|
self->priv->thread = g_thread_try_new ("GstNetClientClock",
|
2011-12-03 13:58:51 +00:00
|
|
|
gst_net_client_clock_thread, self, &error);
|
|
|
|
|
|
|
|
if (error != NULL)
|
2005-11-17 17:55:17 +00:00
|
|
|
goto no_thread;
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
/* ERRORS */
|
|
|
|
no_socket:
|
|
|
|
{
|
2010-05-05 15:33:51 +00:00
|
|
|
GST_ERROR_OBJECT (self, "socket_new() failed: %s", error->message);
|
|
|
|
g_error_free (error);
|
2005-11-17 17:55:17 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
2013-04-09 09:17:45 +00:00
|
|
|
bind_error:
|
|
|
|
{
|
|
|
|
GST_ERROR_OBJECT (self, "bind failed: %s", error->message);
|
|
|
|
g_error_free (error);
|
|
|
|
g_object_unref (socket);
|
|
|
|
return FALSE;
|
|
|
|
}
|
2005-11-17 17:55:17 +00:00
|
|
|
getsockname_error:
|
|
|
|
{
|
2010-05-05 15:33:51 +00:00
|
|
|
GST_ERROR_OBJECT (self, "get_local_address() failed: %s", error->message);
|
|
|
|
g_error_free (error);
|
|
|
|
g_object_unref (socket);
|
2005-11-17 17:55:17 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
bad_address:
|
|
|
|
{
|
2010-05-05 15:33:51 +00:00
|
|
|
GST_ERROR_OBJECT (self, "inet_address_new_from_string('%s') failed",
|
|
|
|
self->priv->address);
|
2005-11-17 17:55:17 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
no_thread:
|
|
|
|
{
|
|
|
|
GST_ERROR_OBJECT (self, "could not create thread: %s", error->message);
|
2010-05-05 15:33:51 +00:00
|
|
|
g_object_unref (self->priv->servaddr);
|
|
|
|
self->priv->servaddr = NULL;
|
|
|
|
g_object_unref (self->priv->socket);
|
|
|
|
self->priv->socket = NULL;
|
2005-11-17 17:55:17 +00:00
|
|
|
g_error_free (error);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_net_client_clock_stop (GstNetClientClock * self)
|
|
|
|
{
|
2010-05-05 15:33:51 +00:00
|
|
|
if (self->priv->thread == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
GST_INFO_OBJECT (self, "stopping...");
|
|
|
|
g_cancellable_cancel (self->priv->cancel);
|
|
|
|
|
|
|
|
g_thread_join (self->priv->thread);
|
|
|
|
self->priv->thread = NULL;
|
|
|
|
|
2015-05-19 13:34:04 +00:00
|
|
|
if (self->priv->made_cancel_fd)
|
|
|
|
g_cancellable_release_fd (self->priv->cancel);
|
|
|
|
|
2010-05-05 15:33:51 +00:00
|
|
|
g_object_unref (self->priv->cancel);
|
|
|
|
self->priv->cancel = NULL;
|
|
|
|
|
|
|
|
g_object_unref (self->priv->servaddr);
|
|
|
|
self->priv->servaddr = NULL;
|
|
|
|
|
|
|
|
g_object_unref (self->priv->socket);
|
|
|
|
self->priv->socket = NULL;
|
|
|
|
|
|
|
|
GST_INFO_OBJECT (self, "stopped");
|
2005-11-17 17:55:17 +00:00
|
|
|
}
|
|
|
|
|
2005-11-23 16:10:38 +00:00
|
|
|
/**
|
|
|
|
* gst_net_client_clock_new:
|
|
|
|
* @name: a name for the clock
|
|
|
|
* @remote_address: the address of the remote clock provider
|
|
|
|
* @remote_port: the port of the remote clock provider
|
|
|
|
* @base_time: initial time of the clock
|
|
|
|
*
|
|
|
|
* Create a new #GstNetClientClock that will report the time
|
2009-11-27 14:39:37 +00:00
|
|
|
* provided by the #GstNetTimeProvider on @remote_address and
|
2005-11-23 16:10:38 +00:00
|
|
|
* @remote_port.
|
|
|
|
*
|
|
|
|
* Returns: a new #GstClock that receives a time from the remote
|
|
|
|
* clock.
|
|
|
|
*/
|
2005-11-17 17:55:17 +00:00
|
|
|
GstClock *
|
2013-10-18 07:58:05 +00:00
|
|
|
gst_net_client_clock_new (const gchar * name, const gchar * remote_address,
|
2005-11-17 17:55:17 +00:00
|
|
|
gint remote_port, GstClockTime base_time)
|
|
|
|
{
|
2010-05-05 15:33:51 +00:00
|
|
|
/* FIXME: gst_net_client_clock_new() should be a thin wrapper for g_object_new() */
|
2005-11-17 17:55:17 +00:00
|
|
|
GstNetClientClock *ret;
|
2005-11-18 10:54:55 +00:00
|
|
|
GstClockTime internal;
|
2005-11-17 17:55:17 +00:00
|
|
|
|
|
|
|
g_return_val_if_fail (remote_address != NULL, NULL);
|
|
|
|
g_return_val_if_fail (remote_port > 0, NULL);
|
2005-11-18 11:57:30 +00:00
|
|
|
g_return_val_if_fail (remote_port <= G_MAXUINT16, NULL);
|
2005-11-17 17:55:17 +00:00
|
|
|
g_return_val_if_fail (base_time != GST_CLOCK_TIME_NONE, NULL);
|
|
|
|
|
|
|
|
ret = g_object_new (GST_TYPE_NET_CLIENT_CLOCK, "address", remote_address,
|
|
|
|
"port", remote_port, NULL);
|
|
|
|
|
2005-11-18 10:54:55 +00:00
|
|
|
/* gst_clock_get_time() values are guaranteed to be increasing. because no one
|
|
|
|
* has called get_time on this clock yet we are free to adjust to any value
|
|
|
|
* without worrying about worrying about MAX() issues with the clock's
|
|
|
|
* internal time.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* update our internal time so get_time() give something around base_time.
|
|
|
|
assume that the rate is 1 in the beginning. */
|
|
|
|
internal = gst_clock_get_internal_time (GST_CLOCK (ret));
|
2005-11-23 12:36:00 +00:00
|
|
|
gst_clock_set_calibration (GST_CLOCK (ret), internal, base_time, 1, 1);
|
2005-11-18 10:54:55 +00:00
|
|
|
|
|
|
|
{
|
|
|
|
GstClockTime now = gst_clock_get_time (GST_CLOCK (ret));
|
|
|
|
|
2009-10-13 16:12:50 +00:00
|
|
|
if (GST_CLOCK_DIFF (now, base_time) > 0 ||
|
|
|
|
GST_CLOCK_DIFF (now, base_time + GST_SECOND) < 0) {
|
2005-11-18 10:54:55 +00:00
|
|
|
g_warning ("unable to set the base time, expect sync problems!");
|
2009-10-13 16:12:50 +00:00
|
|
|
}
|
2005-11-18 10:54:55 +00:00
|
|
|
}
|
|
|
|
|
2005-11-17 17:55:17 +00:00
|
|
|
if (!gst_net_client_clock_start (ret))
|
|
|
|
goto failed_start;
|
|
|
|
|
|
|
|
/* all systems go, cap'n */
|
|
|
|
return (GstClock *) ret;
|
|
|
|
|
|
|
|
failed_start:
|
|
|
|
{
|
|
|
|
/* already printed a nice error */
|
|
|
|
gst_object_unref (ret);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|