mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 15:51:11 +00:00
gstsegment: Clipping should detect start=stop<segment_start as outside the segment
Before it returned that [start,stop] is inside the segment and that the difference between segment_start and start needs to be clipped. If the clipping is done on a buffer (like in baseaudiosink) this will result in the data pointer being at a invalid memory position. Fixes bug #589849.
This commit is contained in:
parent
46b2a5a34e
commit
ca8a0376c5
1 changed files with 1 additions and 1 deletions
|
@ -738,7 +738,7 @@ gst_segment_clip (GstSegment * segment, GstFormat format, gint64 start,
|
|||
|
||||
/* if a stop position is given and is before the segment start,
|
||||
* we're outside of the segment */
|
||||
if (G_UNLIKELY (stop != -1 && stop != start && stop <= segment->start))
|
||||
if (G_UNLIKELY (stop != -1 && stop <= segment->start))
|
||||
return FALSE;
|
||||
|
||||
if (clip_start) {
|
||||
|
|
Loading…
Reference in a new issue