aggregator: Wake up source pad in PAUSED<->PLAYING transitions

When going to PLAYING we will now have a clock and can stop waiting on
the condition variable and instead start waiting on the clock if
necessary for the current configuration.

In the other direction when going to PAUSED the clock might have
disappeared and we might need to wait on the condition variable again
instead.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/601>
This commit is contained in:
Sebastian Dröge 2020-08-20 11:09:11 +03:00 committed by Sebastian Dröge
parent 5bab6154aa
commit aa3e110a54

View file

@ -1876,6 +1876,11 @@ gst_aggregator_change_state (GstElement * element, GstStateChange transition)
if (!gst_aggregator_start (self))
goto error_start;
break;
case GST_STATE_CHANGE_PAUSED_TO_PLAYING:
/* Wake up any waiting as now we have a clock and can do
* proper waiting on the clock if necessary */
SRC_BROADCAST (self);
break;
default:
break;
}
@ -1893,6 +1898,11 @@ gst_aggregator_change_state (GstElement * element, GstStateChange transition)
GST_ERROR_OBJECT (self, "Subclass failed to stop.");
}
break;
case GST_STATE_CHANGE_PLAYING_TO_PAUSED:
/* Wake up any waiting as now clock might be gone and we might
* need to wait on the condition variable again */
SRC_BROADCAST (self);
break;
default:
break;
}