mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-24 09:10:36 +00:00
rtpbin: we should not provide a clock
There is no need to provide a clock.
This commit is contained in:
parent
5ece6ae4e3
commit
d6c623e90c
2 changed files with 0 additions and 17 deletions
|
@ -1156,7 +1156,6 @@ static void gst_rtp_bin_get_property (GObject * object, guint prop_id,
|
||||||
GValue * value, GParamSpec * pspec);
|
GValue * value, GParamSpec * pspec);
|
||||||
|
|
||||||
/* GstElement vmethods */
|
/* GstElement vmethods */
|
||||||
static GstClock *gst_rtp_bin_provide_clock (GstElement * element);
|
|
||||||
static GstStateChangeReturn gst_rtp_bin_change_state (GstElement * element,
|
static GstStateChangeReturn gst_rtp_bin_change_state (GstElement * element,
|
||||||
GstStateChange transition);
|
GstStateChange transition);
|
||||||
static GstPad *gst_rtp_bin_request_new_pad (GstElement * element,
|
static GstPad *gst_rtp_bin_request_new_pad (GstElement * element,
|
||||||
|
@ -1438,8 +1437,6 @@ gst_rtp_bin_class_init (GstRtpBinClass * klass)
|
||||||
"Send an event downstream when a packet is lost", DEFAULT_DO_LOST,
|
"Send an event downstream when a packet is lost", DEFAULT_DO_LOST,
|
||||||
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
||||||
|
|
||||||
gstelement_class->provide_clock =
|
|
||||||
GST_DEBUG_FUNCPTR (gst_rtp_bin_provide_clock);
|
|
||||||
gstelement_class->change_state = GST_DEBUG_FUNCPTR (gst_rtp_bin_change_state);
|
gstelement_class->change_state = GST_DEBUG_FUNCPTR (gst_rtp_bin_change_state);
|
||||||
gstelement_class->request_new_pad =
|
gstelement_class->request_new_pad =
|
||||||
GST_DEBUG_FUNCPTR (gst_rtp_bin_request_new_pad);
|
GST_DEBUG_FUNCPTR (gst_rtp_bin_request_new_pad);
|
||||||
|
@ -1463,7 +1460,6 @@ gst_rtp_bin_init (GstRtpBin * rtpbin, GstRtpBinClass * klass)
|
||||||
rtpbin->priv = GST_RTP_BIN_GET_PRIVATE (rtpbin);
|
rtpbin->priv = GST_RTP_BIN_GET_PRIVATE (rtpbin);
|
||||||
rtpbin->priv->bin_lock = g_mutex_new ();
|
rtpbin->priv->bin_lock = g_mutex_new ();
|
||||||
rtpbin->priv->dyn_lock = g_mutex_new ();
|
rtpbin->priv->dyn_lock = g_mutex_new ();
|
||||||
rtpbin->provided_clock = gst_system_clock_obtain ();
|
|
||||||
|
|
||||||
rtpbin->latency = DEFAULT_LATENCY_MS;
|
rtpbin->latency = DEFAULT_LATENCY_MS;
|
||||||
rtpbin->do_lost = DEFAULT_DO_LOST;
|
rtpbin->do_lost = DEFAULT_DO_LOST;
|
||||||
|
@ -1509,7 +1505,6 @@ gst_rtp_bin_finalize (GObject * object)
|
||||||
|
|
||||||
g_mutex_free (rtpbin->priv->bin_lock);
|
g_mutex_free (rtpbin->priv->bin_lock);
|
||||||
g_mutex_free (rtpbin->priv->dyn_lock);
|
g_mutex_free (rtpbin->priv->dyn_lock);
|
||||||
gst_object_unref (rtpbin->provided_clock);
|
|
||||||
|
|
||||||
G_OBJECT_CLASS (parent_class)->finalize (object);
|
G_OBJECT_CLASS (parent_class)->finalize (object);
|
||||||
}
|
}
|
||||||
|
@ -1695,16 +1690,6 @@ gst_rtp_bin_get_property (GObject * object, guint prop_id,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static GstClock *
|
|
||||||
gst_rtp_bin_provide_clock (GstElement * element)
|
|
||||||
{
|
|
||||||
GstRtpBin *rtpbin;
|
|
||||||
|
|
||||||
rtpbin = GST_RTP_BIN (element);
|
|
||||||
|
|
||||||
return GST_CLOCK_CAST (gst_object_ref (rtpbin->provided_clock));
|
|
||||||
}
|
|
||||||
|
|
||||||
static void
|
static void
|
||||||
gst_rtp_bin_handle_message (GstBin * bin, GstMessage * message)
|
gst_rtp_bin_handle_message (GstBin * bin, GstMessage * message)
|
||||||
{
|
{
|
||||||
|
|
|
@ -48,8 +48,6 @@ struct _GstRtpBin {
|
||||||
gboolean do_lost;
|
gboolean do_lost;
|
||||||
/* a list of session */
|
/* a list of session */
|
||||||
GSList *sessions;
|
GSList *sessions;
|
||||||
/* clock we provide */
|
|
||||||
GstClock *provided_clock;
|
|
||||||
|
|
||||||
/* a list of clients, these are streams with the same CNAME */
|
/* a list of clients, these are streams with the same CNAME */
|
||||||
GSList *clients;
|
GSList *clients;
|
||||||
|
|
Loading…
Reference in a new issue