mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-23 08:46:40 +00:00
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:
parent
8b6e8701d5
commit
5b5cebf540
1 changed files with 0 additions and 2 deletions
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue