mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-19 14:56:36 +00:00
playsink: Properly propagate SEGMENT seqnum
When flushing chains, make sure the FLUSH events have seqnum that are consistent with the current SEGMENT seqnum
This commit is contained in:
parent
5efa8e1f89
commit
a7e8f16df3
1 changed files with 4 additions and 0 deletions
|
@ -2220,6 +2220,8 @@ gst_play_sink_sink_chain (GstPad * pad, GstObject * parent, GstBuffer * buffer,
|
|||
/* make the bin drop all cached data.
|
||||
* This event will be dropped on the src pad, if any. */
|
||||
event = gst_event_new_flush_start ();
|
||||
if (segment_event)
|
||||
gst_event_set_seqnum (event, gst_event_get_seqnum (segment_event));
|
||||
structure = gst_event_writable_structure (event);
|
||||
gst_structure_id_set (structure,
|
||||
_playsink_reset_segment_event_marker_id, G_TYPE_BOOLEAN, TRUE, NULL);
|
||||
|
@ -2232,6 +2234,8 @@ gst_play_sink_sink_chain (GstPad * pad, GstObject * parent, GstBuffer * buffer,
|
|||
/* make queue drop all cached data.
|
||||
* This event will be dropped on the src pad. */
|
||||
event = gst_event_new_flush_stop (TRUE);
|
||||
if (segment_event)
|
||||
gst_event_set_seqnum (event, gst_event_get_seqnum (segment_event));
|
||||
structure = gst_event_writable_structure (event);
|
||||
gst_structure_id_set (structure,
|
||||
_playsink_reset_segment_event_marker_id, G_TYPE_BOOLEAN, TRUE, NULL);
|
||||
|
|
Loading…
Reference in a new issue