X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=plugins%2Felements%2Fgstinputselector.c;h=6cac2453e680addf652e24e9279e4978f083cfd6;hb=ef9619200ba2029760792a9c4abeb26ade66c471;hp=5d1d65ecd9362b1800df98d514bba728c4087fec;hpb=a837ff6581ba16180e89352a753296cd74a85a72;p=platform%2Fupstream%2Fgstreamer.git diff --git a/plugins/elements/gstinputselector.c b/plugins/elements/gstinputselector.c index 5d1d65e..6cac245 100644 --- a/plugins/elements/gstinputselector.c +++ b/plugins/elements/gstinputselector.c @@ -25,6 +25,7 @@ /** * SECTION:element-input-selector + * @title: input-selector * @see_also: #GstOutputSelector * * Direct one out of N input streams to the output pad. @@ -32,21 +33,12 @@ * The input pads are from a GstPad subclass and have additional * properties, which users may find useful, namely: * - * - * - * "running-time": Running time of stream on pad (#gint64) - * - * - * "tags": The currently active tags on the pad (#GstTagList, boxed type) - * - * - * "active": If the pad is currently active (#gboolean) - * - * - * "always-ok" : Make an inactive pads return #GST_FLOW_OK instead of + * * "running-time": Running time of stream on pad (#gint64) + * * "tags": The currently active tags on the pad (#GstTagList, boxed type) + * * "active": If the pad is currently active (#gboolean) + * * "always-ok" : Make an inactive pads return #GST_FLOW_OK instead of * #GST_FLOW_NOT_LINKED - * - * + * */ #ifdef HAVE_CONFIG_H @@ -672,7 +664,10 @@ gst_selector_pad_query (GstPad * pad, GstObject * parent, GstQuery * query) switch (GST_QUERY_TYPE (query)) { case GST_QUERY_CAPS: - /* always proxy caps query, regardless of active pad or not */ + case GST_QUERY_POSITION: + case GST_QUERY_DURATION: + /* always proxy caps/position/duration query, regardless of active pad or not + * See https://bugzilla.gnome.org/show_bug.cgi?id=775445 */ res = gst_pad_peer_query (self->srcpad, query); break; case GST_QUERY_ALLOCATION:{ @@ -1208,6 +1203,8 @@ static GstStateChangeReturn gst_input_selector_change_state (GstElement * static gboolean gst_input_selector_event (GstPad * pad, GstObject * parent, GstEvent * event); +static gboolean gst_input_selector_query (GstPad * pad, GstObject * parent, + GstQuery * query); #define _do_init \ GST_DEBUG_CATEGORY_INIT (input_selector_debug, \ @@ -1284,7 +1281,7 @@ gst_input_selector_class_init (GstInputSelectorClass * klass) * * The active pad may push more buffers than what is currently displayed/consumed * and when changing pads those buffers will be discarded and the only way to - * reactivate that pad without loosing the already consumed buffers is to enable cache. + * reactivate that pad without losing the already consumed buffers is to enable cache. */ g_object_class_install_property (gobject_class, PROP_CACHE_BUFFERS, g_param_spec_boolean ("cache-buffers", "Cache Buffers", @@ -1298,8 +1295,8 @@ gst_input_selector_class_init (GstInputSelectorClass * klass) "Julien Moutte , " "Jan Schmidt , " "Wim Taymans "); - gst_element_class_add_static_pad_template (gstelement_class, - &gst_input_selector_sink_factory); + gst_element_class_add_static_pad_template_with_gtype (gstelement_class, + &gst_input_selector_sink_factory, GST_TYPE_SELECTOR_PAD); gst_element_class_add_static_pad_template (gstelement_class, &gst_input_selector_src_factory); @@ -1316,6 +1313,8 @@ gst_input_selector_init (GstInputSelector * sel) GST_DEBUG_FUNCPTR (gst_selector_pad_iterate_linked_pads)); gst_pad_set_event_function (sel->srcpad, GST_DEBUG_FUNCPTR (gst_input_selector_event)); + gst_pad_set_query_function (sel->srcpad, + GST_DEBUG_FUNCPTR (gst_input_selector_query)); GST_OBJECT_FLAG_SET (sel->srcpad, GST_PAD_FLAG_PROXY_CAPS); gst_element_add_pad (GST_ELEMENT (sel), sel->srcpad); /* sinkpad management */ @@ -1370,6 +1369,14 @@ gst_input_selector_set_active_pad (GstInputSelector * self, GstPad * pad) if (pad == self->active_sinkpad) return FALSE; + /* guard against users setting a src pad or foreign pad as active pad */ + if (pad != NULL) { + g_return_val_if_fail (GST_PAD_IS_SINK (pad), FALSE); + g_return_val_if_fail (GST_IS_SELECTOR_PAD (pad), FALSE); + g_return_val_if_fail (GST_PAD_PARENT (pad) == GST_ELEMENT_CAST (self), + FALSE); + } + old = GST_SELECTOR_PAD_CAST (self->active_sinkpad); new = GST_SELECTOR_PAD_CAST (pad); @@ -1577,6 +1584,143 @@ gst_input_selector_event (GstPad * pad, GstObject * parent, GstEvent * event) return result; } +typedef struct +{ + guint count; + gboolean live; + GstClockTime min, max; +} LatencyFoldData; + +static gboolean +query_latency_default_fold (const GValue * item, GValue * ret, + gpointer user_data) +{ + GstPad *pad = g_value_get_object (item), *peer; + LatencyFoldData *fold_data = user_data; + GstQuery *query; + gboolean res = FALSE; + + query = gst_query_new_latency (); + + peer = gst_pad_get_peer (pad); + if (peer) { + res = gst_pad_peer_query (pad, query); + } else { + GST_LOG_OBJECT (pad, "No peer pad found, ignoring this pad"); + } + + if (res) { + gboolean live; + GstClockTime min, max; + + gst_query_parse_latency (query, &live, &min, &max); + + GST_LOG_OBJECT (pad, "got latency live:%s min:%" G_GINT64_FORMAT + " max:%" G_GINT64_FORMAT, live ? "true" : "false", min, max); + + /* FIXME : Why do we only take values into account if it's live ? */ + if (live || fold_data->count == 0) { + if (min > fold_data->min) + fold_data->min = min; + + if (fold_data->max == GST_CLOCK_TIME_NONE) + fold_data->max = max; + else if (max < fold_data->max) + fold_data->max = max; + + fold_data->live = live; + } + fold_data->count += 1; + } else if (peer) { + GST_DEBUG_OBJECT (pad, "latency query failed"); + g_value_set_boolean (ret, FALSE); + } + + gst_query_unref (query); + if (peer) + gst_object_unref (peer); + + return TRUE; +} + +static gboolean +gst_input_selector_query_latency (GstInputSelector * sel, GstPad * pad, + GstQuery * query) +{ + GstIterator *it; + GstIteratorResult res; + GValue ret = G_VALUE_INIT; + gboolean query_ret; + LatencyFoldData fold_data; + + /* This is basically gst_pad_query_latency_default() but with a different + * iterator. We query all sinkpads! */ + it = gst_element_iterate_sink_pads (GST_ELEMENT_CAST (sel)); + if (!it) { + GST_DEBUG_OBJECT (pad, "Can't iterate internal links"); + return FALSE; + } + + g_value_init (&ret, G_TYPE_BOOLEAN); + +retry: + fold_data.count = 0; + fold_data.live = FALSE; + fold_data.min = 0; + fold_data.max = GST_CLOCK_TIME_NONE; + + g_value_set_boolean (&ret, TRUE); + res = gst_iterator_fold (it, query_latency_default_fold, &ret, &fold_data); + switch (res) { + case GST_ITERATOR_OK: + g_assert_not_reached (); + break; + case GST_ITERATOR_DONE: + break; + case GST_ITERATOR_ERROR: + g_value_set_boolean (&ret, FALSE); + break; + case GST_ITERATOR_RESYNC: + gst_iterator_resync (it); + goto retry; + default: + g_assert_not_reached (); + break; + } + gst_iterator_free (it); + + query_ret = g_value_get_boolean (&ret); + if (query_ret) { + GST_LOG_OBJECT (pad, "got latency live:%s min:%" G_GINT64_FORMAT + " max:%" G_GINT64_FORMAT, fold_data.live ? "true" : "false", + fold_data.min, fold_data.max); + + if (fold_data.min > fold_data.max) { + GST_ERROR_OBJECT (pad, "minimum latency bigger than maximum latency"); + } + + gst_query_set_latency (query, fold_data.live, fold_data.min, fold_data.max); + } else { + GST_LOG_OBJECT (pad, "latency query failed"); + } + + return query_ret; +} + +static gboolean +gst_input_selector_query (GstPad * pad, GstObject * parent, GstQuery * query) +{ + GstInputSelector *sel = GST_INPUT_SELECTOR (parent); + + switch (GST_QUERY_TYPE (query)) { + case GST_QUERY_LATENCY: + /* Query all sink pads for the latency, not just the active one */ + return gst_input_selector_query_latency (sel, pad, query); + default: + return gst_pad_query_default (pad, parent, query); + } +} + /* check if the pad is the active sinkpad */ static inline gboolean gst_input_selector_is_active_sinkpad (GstInputSelector * sel, GstPad * pad)