adder: keep sending newsegments after seeking

Adder sends with timestamps from 0 upwards. After seeking we need to send
new-segments to get correct positions-queries.
This commit is contained in:
Stefan Kost 2009-07-06 22:31:12 +01:00
parent 92ecca7f24
commit da27fd57e8

View file

@ -692,9 +692,10 @@ gst_adder_src_event (GstPad * pad, GstEvent * event)
adder->segment_position = cur;
else
adder->segment_position = 0;
/* we flushed out the downstream segment, make sure we push a new one */
/* make sure we push a new segment, to inform about new basetime
* see FIXME in gst_adder_collected() */
adder->segment_pending = TRUE;
if (flush) {
adder->segment_pending = TRUE;
/* Yes, we need to call _set_flushing again *WHEN* the streaming threads
* have stopped so that the cookie gets properly updated. */
gst_collect_pads_set_flushing (adder->collect, TRUE);