mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-20 07:16:55 +00:00
gst/switch/gstswitch.c (ARG_ACTIVE_SOURCE, ARG_STOP_VALUE,
Original commit message from CVS: * gst/switch/gstswitch.c (ARG_ACTIVE_SOURCE, ARG_STOP_VALUE, ARG_LAST_TS, parent_class, gst_switch_release_pad, gst_switch_request_new_pad, gst_switch_chain, gst_switch_event, gst_switch_set_property, gst_switch_get_property, gst_switch_getcaps, gst_switch_dispose, gst_switch_init, gst_switch_class_init): * gst/switch/gstswitch.h (previous_sinkpad, nb_sinkpads, stop_value, current_start, last_ts): Allow application to provide a stop timestamp, so a new segment update can be sent before switching.
This commit is contained in:
parent
1e1c12e87e
commit
f369175264
3 changed files with 100 additions and 3 deletions
12
ChangeLog
12
ChangeLog
|
@ -1,3 +1,15 @@
|
||||||
|
2007-05-14 Zaheer Abbas Merali <zaheerabbas at merali dot org>
|
||||||
|
|
||||||
|
* gst/switch/gstswitch.c (ARG_ACTIVE_SOURCE, ARG_STOP_VALUE,
|
||||||
|
ARG_LAST_TS, parent_class, gst_switch_release_pad,
|
||||||
|
gst_switch_request_new_pad, gst_switch_chain, gst_switch_event,
|
||||||
|
gst_switch_set_property, gst_switch_get_property, gst_switch_getcaps,
|
||||||
|
gst_switch_dispose, gst_switch_init, gst_switch_class_init):
|
||||||
|
* gst/switch/gstswitch.h (previous_sinkpad, nb_sinkpads, stop_value,
|
||||||
|
current_start, last_ts):
|
||||||
|
Allow application to provide a stop timestamp, so a new segment
|
||||||
|
update can be sent before switching.
|
||||||
|
|
||||||
2007-05-14 Wim Taymans <wim@fluendo.com>
|
2007-05-14 Wim Taymans <wim@fluendo.com>
|
||||||
|
|
||||||
* gst/rtpmanager/async_jitter_queue.c:
|
* gst/rtpmanager/async_jitter_queue.c:
|
||||||
|
|
|
@ -48,7 +48,9 @@ enum
|
||||||
{
|
{
|
||||||
ARG_0,
|
ARG_0,
|
||||||
ARG_NB_SOURCES,
|
ARG_NB_SOURCES,
|
||||||
ARG_ACTIVE_SOURCE
|
ARG_ACTIVE_SOURCE,
|
||||||
|
ARG_STOP_VALUE,
|
||||||
|
ARG_LAST_TS
|
||||||
};
|
};
|
||||||
|
|
||||||
GST_DEBUG_CATEGORY_STATIC (switch_debug);
|
GST_DEBUG_CATEGORY_STATIC (switch_debug);
|
||||||
|
@ -193,6 +195,31 @@ gst_switch_chain (GstPad * pad, GstBuffer * buf)
|
||||||
/* check if we need to send a new segment event */
|
/* check if we need to send a new segment event */
|
||||||
GST_OBJECT_LOCK (gstswitch);
|
GST_OBJECT_LOCK (gstswitch);
|
||||||
if (gstswitch->need_to_send_newsegment) {
|
if (gstswitch->need_to_send_newsegment) {
|
||||||
|
/* check to see if we need to send a new segment update for stop */
|
||||||
|
if (gstswitch->previous_sinkpad != NULL) {
|
||||||
|
if (gstswitch->stop_value != GST_CLOCK_TIME_NONE &&
|
||||||
|
gstswitch->stop_value > gstswitch->last_ts) {
|
||||||
|
GstEvent *prev_newsegment =
|
||||||
|
(GstEvent *) g_hash_table_lookup (gstswitch->newsegment_events,
|
||||||
|
gstswitch->previous_sinkpad);
|
||||||
|
if (prev_newsegment) {
|
||||||
|
/* need to send a new segment update changing stop */
|
||||||
|
gboolean update;
|
||||||
|
gdouble rate, applied_rate;
|
||||||
|
GstFormat format;
|
||||||
|
gint64 start, stop, position;
|
||||||
|
|
||||||
|
gst_event_parse_new_segment_full (prev_newsegment, &update, &rate,
|
||||||
|
&applied_rate, &format, &start, &stop, &position);
|
||||||
|
gst_pad_push_event (gstswitch->srcpad,
|
||||||
|
gst_event_new_new_segment_full (TRUE, rate, applied_rate,
|
||||||
|
format, gstswitch->current_start, gstswitch->stop_value,
|
||||||
|
position));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
gst_object_unref (GST_OBJECT (gstswitch->previous_sinkpad));
|
||||||
|
gstswitch->previous_sinkpad = NULL;
|
||||||
|
}
|
||||||
/* retrieve event from hash table */
|
/* retrieve event from hash table */
|
||||||
GstEvent *event =
|
GstEvent *event =
|
||||||
(GstEvent *) g_hash_table_lookup (gstswitch->newsegment_events, pad);
|
(GstEvent *) g_hash_table_lookup (gstswitch->newsegment_events, pad);
|
||||||
|
@ -207,14 +234,16 @@ gst_switch_chain (GstPad * pad, GstBuffer * buf)
|
||||||
gst_event_parse_new_segment_full (event, &update, &rate, &applied_rate,
|
gst_event_parse_new_segment_full (event, &update, &rate, &applied_rate,
|
||||||
&format, &start, &stop, &position);
|
&format, &start, &stop, &position);
|
||||||
gst_pad_push_event (gstswitch->srcpad,
|
gst_pad_push_event (gstswitch->srcpad,
|
||||||
gst_event_new_new_segment_full (update, rate, applied_rate, format,
|
gst_event_new_new_segment_full (FALSE, rate, applied_rate, format,
|
||||||
GST_BUFFER_TIMESTAMP (buf), stop, position));
|
GST_BUFFER_TIMESTAMP (buf), stop, position));
|
||||||
gstswitch->need_to_send_newsegment = FALSE;
|
gstswitch->need_to_send_newsegment = FALSE;
|
||||||
|
gstswitch->current_start = GST_BUFFER_TIMESTAMP (buf);
|
||||||
GST_DEBUG_OBJECT (gstswitch,
|
GST_DEBUG_OBJECT (gstswitch,
|
||||||
"Sending new segment with start of %" G_GINT64_FORMAT,
|
"Sending new segment with start of %" G_GINT64_FORMAT,
|
||||||
GST_BUFFER_TIMESTAMP (buf));
|
GST_BUFFER_TIMESTAMP (buf));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
gstswitch->last_ts = GST_BUFFER_TIMESTAMP (buf);
|
||||||
GST_OBJECT_UNLOCK (gstswitch);
|
GST_OBJECT_UNLOCK (gstswitch);
|
||||||
/* forward */
|
/* forward */
|
||||||
GST_DEBUG_OBJECT (gstswitch, "Forwarding buffer %p from pad %s:%s",
|
GST_DEBUG_OBJECT (gstswitch, "Forwarding buffer %p from pad %s:%s",
|
||||||
|
@ -238,10 +267,20 @@ gst_switch_event (GstPad * pad, GstEvent * event)
|
||||||
/* need to put in or replace what's in hash table */
|
/* need to put in or replace what's in hash table */
|
||||||
g_hash_table_replace (gstswitch->newsegment_events, pad, event);
|
g_hash_table_replace (gstswitch->newsegment_events, pad, event);
|
||||||
if (pad == gstswitch->active_sinkpad) {
|
if (pad == gstswitch->active_sinkpad) {
|
||||||
|
gboolean update;
|
||||||
|
gdouble rate, applied_rate;
|
||||||
|
GstFormat format;
|
||||||
|
gint64 start, stop, position;
|
||||||
|
|
||||||
|
gst_event_parse_new_segment_full (event, &update, &rate, &applied_rate,
|
||||||
|
&format, &start, &stop, &position);
|
||||||
|
|
||||||
/* want to ref event because we have kept it */
|
/* want to ref event because we have kept it */
|
||||||
gst_event_ref (event);
|
gst_event_ref (event);
|
||||||
/* need to send it across if we are active pad */
|
/* need to send it across if we are active pad */
|
||||||
|
|
||||||
ret = gst_pad_push_event (gstswitch->srcpad, event);
|
ret = gst_pad_push_event (gstswitch->srcpad, event);
|
||||||
|
gstswitch->current_start = start;
|
||||||
}
|
}
|
||||||
GST_OBJECT_UNLOCK (gstswitch);
|
GST_OBJECT_UNLOCK (gstswitch);
|
||||||
break;
|
break;
|
||||||
|
@ -287,6 +326,11 @@ gst_switch_set_property (GObject * object, guint prop_id,
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
active_pad_p = &gstswitch->active_sinkpad;
|
active_pad_p = &gstswitch->active_sinkpad;
|
||||||
|
if (gstswitch->previous_sinkpad != NULL) {
|
||||||
|
gst_object_unref (GST_OBJECT (gstswitch->previous_sinkpad));
|
||||||
|
}
|
||||||
|
gstswitch->previous_sinkpad = gstswitch->active_sinkpad;
|
||||||
|
gst_object_ref (GST_OBJECT (gstswitch->previous_sinkpad));
|
||||||
gst_object_replace ((GstObject **) active_pad_p, GST_OBJECT_CAST (pad));
|
gst_object_replace ((GstObject **) active_pad_p, GST_OBJECT_CAST (pad));
|
||||||
if (pad)
|
if (pad)
|
||||||
gst_object_unref (pad);
|
gst_object_unref (pad);
|
||||||
|
@ -296,6 +340,11 @@ gst_switch_set_property (GObject * object, guint prop_id,
|
||||||
gstswitch->need_to_send_newsegment = TRUE;
|
gstswitch->need_to_send_newsegment = TRUE;
|
||||||
GST_OBJECT_UNLOCK (object);
|
GST_OBJECT_UNLOCK (object);
|
||||||
break;
|
break;
|
||||||
|
case ARG_STOP_VALUE:
|
||||||
|
GST_OBJECT_LOCK (object);
|
||||||
|
gstswitch->stop_value = g_value_get_uint64 (value);
|
||||||
|
GST_OBJECT_UNLOCK (object);
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
||||||
break;
|
break;
|
||||||
|
@ -324,7 +373,19 @@ gst_switch_get_property (GObject * object, guint prop_id,
|
||||||
GST_OBJECT_UNLOCK (object);
|
GST_OBJECT_UNLOCK (object);
|
||||||
break;
|
break;
|
||||||
case ARG_NB_SOURCES:
|
case ARG_NB_SOURCES:
|
||||||
|
GST_OBJECT_LOCK (object);
|
||||||
g_value_set_uint (value, gstswitch->nb_sinkpads);
|
g_value_set_uint (value, gstswitch->nb_sinkpads);
|
||||||
|
GST_OBJECT_UNLOCK (object);
|
||||||
|
break;
|
||||||
|
case ARG_STOP_VALUE:
|
||||||
|
GST_OBJECT_LOCK (object);
|
||||||
|
g_value_set_uint64 (value, gstswitch->stop_value);
|
||||||
|
GST_OBJECT_UNLOCK (object);
|
||||||
|
break;
|
||||||
|
case ARG_LAST_TS:
|
||||||
|
GST_OBJECT_LOCK (object);
|
||||||
|
g_value_set_uint64 (value, gstswitch->last_ts);
|
||||||
|
GST_OBJECT_UNLOCK (object);
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
||||||
|
@ -451,6 +512,10 @@ gst_switch_dispose (GObject * object)
|
||||||
if (gstswitch->newsegment_events) {
|
if (gstswitch->newsegment_events) {
|
||||||
g_hash_table_destroy (gstswitch->newsegment_events);
|
g_hash_table_destroy (gstswitch->newsegment_events);
|
||||||
}
|
}
|
||||||
|
if (gstswitch->previous_sinkpad) {
|
||||||
|
gst_object_unref (GST_OBJECT (gstswitch->previous_sinkpad));
|
||||||
|
gstswitch->previous_sinkpad = NULL;
|
||||||
|
}
|
||||||
G_OBJECT_CLASS (parent_class)->dispose (object);
|
G_OBJECT_CLASS (parent_class)->dispose (object);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -465,10 +530,14 @@ gst_switch_init (GstSwitch * gstswitch)
|
||||||
gst_element_add_pad (GST_ELEMENT (gstswitch), gstswitch->srcpad);
|
gst_element_add_pad (GST_ELEMENT (gstswitch), gstswitch->srcpad);
|
||||||
|
|
||||||
gstswitch->active_sinkpad = NULL;
|
gstswitch->active_sinkpad = NULL;
|
||||||
|
gstswitch->previous_sinkpad = NULL;
|
||||||
gstswitch->nb_sinkpads = 0;
|
gstswitch->nb_sinkpads = 0;
|
||||||
gstswitch->newsegment_events = g_hash_table_new_full (g_direct_hash,
|
gstswitch->newsegment_events = g_hash_table_new_full (g_direct_hash,
|
||||||
g_direct_equal, NULL, (GDestroyNotify) gst_mini_object_unref);
|
g_direct_equal, NULL, (GDestroyNotify) gst_mini_object_unref);
|
||||||
gstswitch->need_to_send_newsegment = FALSE;
|
gstswitch->need_to_send_newsegment = FALSE;
|
||||||
|
gstswitch->stop_value = GST_CLOCK_TIME_NONE;
|
||||||
|
gstswitch->current_start = 0;
|
||||||
|
gstswitch->last_ts = GST_CLOCK_TIME_NONE;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
|
@ -508,6 +577,18 @@ gst_switch_class_init (GstSwitchClass * klass)
|
||||||
g_param_spec_string ("active-pad",
|
g_param_spec_string ("active-pad",
|
||||||
"Active Pad",
|
"Active Pad",
|
||||||
"Name of the currently active sink pad", NULL, G_PARAM_READWRITE));
|
"Name of the currently active sink pad", NULL, G_PARAM_READWRITE));
|
||||||
|
g_object_class_install_property (gobject_class,
|
||||||
|
ARG_STOP_VALUE,
|
||||||
|
g_param_spec_uint64 ("stop-value",
|
||||||
|
"Stop Value",
|
||||||
|
"Timestamp that current source will stop at",
|
||||||
|
0, G_MAXUINT64, GST_CLOCK_TIME_NONE, G_PARAM_READWRITE));
|
||||||
|
|
||||||
|
g_object_class_install_property (gobject_class,
|
||||||
|
ARG_LAST_TS,
|
||||||
|
g_param_spec_uint64 ("last-timestamp",
|
||||||
|
"Timestamp of last buffer sent",
|
||||||
|
"Timestamp of last buffer sent", 0, G_MAXUINT, 0, G_PARAM_READABLE));
|
||||||
|
|
||||||
gobject_class->dispose = gst_switch_dispose;
|
gobject_class->dispose = gst_switch_dispose;
|
||||||
|
|
||||||
|
|
|
@ -43,7 +43,8 @@ struct _GstSwitch {
|
||||||
|
|
||||||
GstPad *active_sinkpad;
|
GstPad *active_sinkpad;
|
||||||
GstPad *srcpad;
|
GstPad *srcpad;
|
||||||
|
GstPad *previous_sinkpad;
|
||||||
|
|
||||||
guint nb_sinkpads;
|
guint nb_sinkpads;
|
||||||
/* this hash table stores for key of the pad pointer
|
/* this hash table stores for key of the pad pointer
|
||||||
* the last new segment event received for this pad
|
* the last new segment event received for this pad
|
||||||
|
@ -53,6 +54,9 @@ struct _GstSwitch {
|
||||||
/* flag to decide whether we need to send a new segment event
|
/* flag to decide whether we need to send a new segment event
|
||||||
* before we receive the next buffer */
|
* before we receive the next buffer */
|
||||||
gboolean need_to_send_newsegment;
|
gboolean need_to_send_newsegment;
|
||||||
|
GstClockTime stop_value;
|
||||||
|
GstClockTime current_start;
|
||||||
|
GstClockTime last_ts;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct _GstSwitchClass {
|
struct _GstSwitchClass {
|
||||||
|
|
Loading…
Reference in a new issue