summaryrefslogtreecommitdiff
path: root/ext/dash/gstmpdparser.c
diff options
context:
space:
mode:
Diffstat (limited to 'ext/dash/gstmpdparser.c')
-rw-r--r--ext/dash/gstmpdparser.c13
1 files changed, 11 insertions, 2 deletions
diff --git a/ext/dash/gstmpdparser.c b/ext/dash/gstmpdparser.c
index abaa12409..add782464 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;
}