summaryrefslogtreecommitdiffstats
path: root/stream/stream_slice.c
diff options
context:
space:
mode:
Diffstat (limited to 'stream/stream_slice.c')
-rw-r--r--stream/stream_slice.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/stream/stream_slice.c b/stream/stream_slice.c
index 7889c8d059..d7d0a6bf05 100644
--- a/stream/stream_slice.c
+++ b/stream/stream_slice.c
@@ -116,11 +116,15 @@ static int parse_slice_range(stream_t *stream)
if (m_option_parse(stream->log, &opt, bstr0("slice_start"), start, &p->slice_start) < 0)
return STREAM_ERROR;
+ bool max_end_is_offset = bstr_startswith0(end, "+");
if (has_end) {
if (m_option_parse(stream->log, &opt, bstr0("slice_max_end"), end, &p->slice_max_end) < 0)
return STREAM_ERROR;
}
+ if (max_end_is_offset)
+ p->slice_max_end += p->slice_start;
+
if (p->slice_max_end && p->slice_max_end < p->slice_start) {
MP_ERR(stream, "The byte range end (%"PRId64") can't be smaller than the start (%"PRId64"): '%s'\n",
p->slice_max_end,