mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-01 13:08:49 +00:00
pad-monitor: fix combined flow checks
We can only check if we found a downstream monitor
This commit is contained in:
parent
16b1d750c8
commit
a11cc64f90
1 changed files with 1 additions and 1 deletions
|
@ -419,11 +419,11 @@ gst_qa_pad_monitor_check_aggregated_return (GstQaPadMonitor * monitor,
|
|||
while (!done) {
|
||||
switch (gst_iterator_next (iter, (gpointer *) & otherpad)) {
|
||||
case GST_ITERATOR_OK:
|
||||
found_a_pad = TRUE;
|
||||
peerpad = gst_pad_get_peer (otherpad);
|
||||
if (peerpad) {
|
||||
othermonitor = g_object_get_data ((GObject *) peerpad, "qa-monitor");
|
||||
if (othermonitor) {
|
||||
found_a_pad = TRUE;
|
||||
aggregated =
|
||||
_combine_flows (aggregated, othermonitor->last_flow_return);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue