summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2018-08-31 12:15:16 +0300
committerSebastian Dröge <sebastian@centricular.com>2018-08-31 12:17:08 +0300
commitf6739d8e1fea14539ce38204a06428abd197a078 (patch)
treefaedf7d233eec4a4fbe6b8f5dd6d59bc8064ca60
parent235241a00d0102a80eb8f7c8882c90bd39b36b16 (diff)
downloadgstreamer-f6739d8e1fea14539ce38204a06428abd197a078.tar.gz
input-selector: Bring latency handling in sync with GstPad code
-rw-r--r--plugins/elements/gstinputselector.c45
1 files changed, 14 insertions, 31 deletions
diff --git a/plugins/elements/gstinputselector.c b/plugins/elements/gstinputselector.c
index b23b47ca03..03598175e5 100644
--- a/plugins/elements/gstinputselector.c
+++ b/plugins/elements/gstinputselector.c
@@ -1579,8 +1579,7 @@ gst_input_selector_event (GstPad * pad, GstObject * parent, GstEvent * event)
typedef struct
{
gboolean live;
- GstClockTime live_min, live_max;
- GstClockTime non_live_min, non_live_max;
+ GstClockTime min, max;
} LatencyFoldData;
static gboolean
@@ -1604,7 +1603,6 @@ query_latency_default_fold (const GValue * item, GValue * ret,
if (res) {
gboolean live;
GstClockTime min, max;
- GstClockTime *min_store, *max_store;
gst_query_parse_latency (query, &live, &min, &max);
@@ -1612,21 +1610,15 @@ query_latency_default_fold (const GValue * item, GValue * ret,
" max:%" G_GINT64_FORMAT, live ? "true" : "false", min, max);
if (live) {
- min_store = &fold_data->live_min;
- max_store = &fold_data->live_max;
+ 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;
- } else {
- min_store = &fold_data->non_live_min;
- max_store = &fold_data->non_live_max;
}
-
- if (min > *min_store)
- *min_store = min;
-
- if (*max_store == GST_CLOCK_TIME_NONE)
- *max_store = max;
- else if (max < *max_store)
- *max_store = max;
} else if (peer) {
GST_DEBUG_OBJECT (pad, "latency query failed");
g_value_set_boolean (ret, FALSE);
@@ -1661,8 +1653,8 @@ gst_input_selector_query_latency (GstInputSelector * sel, GstPad * pad,
retry:
fold_data.live = FALSE;
- fold_data.live_min = fold_data.non_live_min = 0;
- fold_data.live_max = fold_data.non_live_max = GST_CLOCK_TIME_NONE;
+ 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);
@@ -1686,24 +1678,15 @@ retry:
query_ret = g_value_get_boolean (&ret);
if (query_ret) {
- GstClockTime min, max;
-
- if (fold_data.live) {
- min = fold_data.live_min;
- max = fold_data.live_max;
- } else {
- min = fold_data.non_live_min;
- max = fold_data.non_live_max;
- }
-
GST_LOG_OBJECT (pad, "got latency live:%s min:%" G_GINT64_FORMAT
- " max:%" G_GINT64_FORMAT, fold_data.live ? "true" : "false", min, max);
+ " max:%" G_GINT64_FORMAT, fold_data.live ? "true" : "false",
+ fold_data.min, fold_data.max);
- if (min > 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, min, max);
+ gst_query_set_latency (query, fold_data.live, fold_data.min, fold_data.max);
} else {
GST_LOG_OBJECT (pad, "latency query failed");
}