mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-21 05:26:23 +00:00
collectpads: Always send SEEK events to all pads, even if one fails
This commit is contained in:
parent
911af13b5c
commit
959e87cf2a
1 changed files with 3 additions and 1 deletions
|
@ -1859,7 +1859,9 @@ static gboolean
|
|||
event_forward_func (GstPad * pad, EventData * data)
|
||||
{
|
||||
data->result &= gst_pad_push_event (pad, gst_event_ref (data->event));
|
||||
return !data->result;
|
||||
|
||||
/* Always send to all pads */
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
static gboolean
|
||||
|
|
Loading…
Reference in a new issue