summaryrefslogtreecommitdiffstats
path: root/demux
diff options
context:
space:
mode:
Diffstat (limited to 'demux')
-rw-r--r--demux/demux_lavf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/demux/demux_lavf.c b/demux/demux_lavf.c
index 42355804c5..943fb1d8af 100644
--- a/demux/demux_lavf.c
+++ b/demux/demux_lavf.c
@@ -420,7 +420,7 @@ static char *replace_idx_ext(void *ta_ctx, bstr f)
if (f.len < 4 || f.start[f.len - 4] != '.')
return NULL;
char *ext = bstr_endswith0(f, "IDX") ? "SUB" : "sub"; // match case
- return talloc_asprintf(ta_ctx, "%.*s.%s", f.len - 4, f.start, ext);
+ return talloc_asprintf(ta_ctx, "%.*s.%s", BSTR_P(bstr_splice(f, 0, -4)), ext);
}
static void guess_and_set_vobsub_name(struct demuxer *demuxer, AVDictionary **d)