mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-29 05:01:23 +00:00
videoaggregator: Use the src query implementation of aggregator as the default case
This commit is contained in:
parent
5c9472f78c
commit
b9312fe9a2
1 changed files with 1 additions and 7 deletions
|
@ -1464,17 +1464,11 @@ gst_videoaggregator_src_query (GstAggregator * agg, GstQuery * query)
|
|||
case GST_QUERY_DURATION:
|
||||
res = gst_videoaggregator_query_duration (vagg, query);
|
||||
break;
|
||||
case GST_QUERY_LATENCY:
|
||||
case GST_QUERY_CAPS:
|
||||
default:
|
||||
res =
|
||||
GST_AGGREGATOR_CLASS (gst_videoaggregator_parent_class)->src_query
|
||||
(agg, query);
|
||||
break;
|
||||
default:
|
||||
/* FIXME, needs a custom query handler because we have multiple
|
||||
* sinkpads */
|
||||
res = FALSE;
|
||||
break;
|
||||
}
|
||||
return res;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue