baseparse: Don't override gst_segment_do_seek()

This line has no purpose, clearly gst_segment_do_seek() is doing
the right job, also, having the start time (a timestamp) be that
same as time (the stream time) is quite odd.

https://bugzilla.gnome.org/show_bug.cgi?id=750783
This commit is contained in:
Nicolas Dufresne 2015-07-17 17:44:52 -04:00
parent 8b6e8701d5
commit 5b5cebf540

View file

@ -4340,7 +4340,6 @@ gst_base_parse_handle_seek (GstBaseParse * parse, GstEvent * event)
seekpos = gst_base_parse_find_offset (parse, startpos, TRUE, &start_ts);
seekstop = gst_base_parse_find_offset (parse, seeksegment.stop, FALSE,
NULL);
seeksegment.start = seeksegment.time = seeksegment.position = start_ts;
} else {
if (rate >= 0)
start_ts = seeksegment.position;
@ -4356,7 +4355,6 @@ gst_base_parse_handle_seek (GstBaseParse * parse, GstEvent * event)
if (!gst_base_parse_convert (parse, format, seeksegment.stop,
GST_FORMAT_BYTES, &seekstop))
goto convert_failed;
}
GST_DEBUG_OBJECT (parse,