mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-23 16:50:47 +00:00
pad: Remove unnecessary FIXME
Resetting the result is not necessary when resyncing because pads that previously got the event will be skipped and we need to consider the results of the previous pushes.
This commit is contained in:
parent
5a6ef6408f
commit
c6e9ce64ae
1 changed files with 3 additions and 2 deletions
|
@ -2961,8 +2961,9 @@ gst_pad_event_default_dispatch (GstPad * pad, GstEvent * event)
|
|||
gst_object_unref (item);
|
||||
break;
|
||||
case GST_ITERATOR_RESYNC:
|
||||
/* FIXME, if we want to reset the result value we need to remember which
|
||||
* pads pushed with which result */
|
||||
/* We don't reset the result here because we don't push the event
|
||||
* again on pads that got the event already and because we need
|
||||
* to consider the result of the previous pushes */
|
||||
gst_iterator_resync (iter);
|
||||
break;
|
||||
case GST_ITERATOR_ERROR:
|
||||
|
|
Loading…
Reference in a new issue