diff --git a/ext/dash/gstmpdparser.c b/ext/dash/gstmpdparser.c index d5e9d75c8b..369aca4495 100644 --- a/ext/dash/gstmpdparser.c +++ b/ext/dash/gstmpdparser.c @@ -2954,7 +2954,7 @@ gst_mpdparser_get_chunk_by_index (GstMpdClient * client, guint indexStream, segment->duration = duration; segment->SegmentURL = NULL; - if (segment->start_time > stream_period->duration) { + if (segment->start_time >= stream_period->duration) { return FALSE; } }