1
0
mirror of https://github.com/mpv-player/mpv synced 2025-03-25 04:38:01 +00:00

stream_edl: allow opening edl only from local resources

edl is complex and prone to errors. Also there is no good reason for
external network playlist to require edl use.
This commit is contained in:
Kacper Michajłow 2025-03-07 12:13:58 +01:00
parent babea3da1f
commit f152674246

View File

@ -14,4 +14,5 @@ const stream_info_t stream_info_edl = {
.name = "edl",
.open = s_open,
.protocols = (const char*const[]){"edl", NULL},
.stream_origin = STREAM_ORIGIN_FS,
};