From dfe37ffc59fdf5f4075696976d98ec8d6db73138 Mon Sep 17 00:00:00 2001 From: Florin Apostol Date: Mon, 6 Jul 2015 14:14:12 +0100 Subject: [PATCH] dashdemux: fixed gst_mpd_client_advance_segment to return GST_FLOW_EOS Fixed gst_mpd_client_advance_segment to return GST_FLOW_EOS if the new index is out of range. https://bugzilla.gnome.org/show_bug.cgi?id=751850 --- ext/dash/gstmpdparser.c | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/ext/dash/gstmpdparser.c b/ext/dash/gstmpdparser.c index abaa12409e..add7824644 100644 --- a/ext/dash/gstmpdparser.c +++ b/ext/dash/gstmpdparser.c @@ -3975,10 +3975,14 @@ gst_mpd_client_advance_segment (GstMpdClient * client, GstActiveStream * stream, } if (stream->segments == NULL) { - if (stream->segment_index < 0) + if (stream->segment_index < 0) { stream->segment_index = 0; - else + } else { stream->segment_index++; + if (segments_count > 0 && stream->segment_index >= segments_count) { + ret = GST_FLOW_EOS; + } + } goto done; } @@ -4015,6 +4019,10 @@ gst_mpd_client_advance_segment (GstMpdClient * client, GstActiveStream * stream, if (stream->segment_repeat_index >= segment->repeat) { stream->segment_repeat_index = 0; stream->segment_index++; + if (segments_count > 0 && stream->segment_index >= segments_count) { + ret = GST_FLOW_EOS; + goto done; + } } else { stream->segment_repeat_index++; } @@ -4022,6 +4030,7 @@ gst_mpd_client_advance_segment (GstMpdClient * client, GstActiveStream * stream, if (stream->segment_repeat_index == 0) { stream->segment_index--; if (stream->segment_index < 0) { + ret = GST_FLOW_EOS; goto done; }