summaryrefslogtreecommitdiffstats
path: root/stream
diff options
context:
space:
mode:
authorparazyd <parazyd@dyne.org>2021-03-12 01:31:55 +0100
committerJan Ekström <jeebjp@gmail.com>2021-03-15 00:56:11 +0200
commit6a903a9a087e9639eb3323a7e5adeb49871011af (patch)
tree68acea3d8074eeb2740619efd2f3e487a57a706d /stream
parent63d71ba4ecf7322f24a96583933d451eee40013d (diff)
downloadmpv-6a903a9a087e9639eb3323a7e5adeb49871011af.tar.bz2
mpv-6a903a9a087e9639eb3323a7e5adeb49871011af.tar.xz
stream_lavf: add support for Gopher over TLS.
Gopher over TLS (gophers) is a community-adopted protocol and has recently been merged in: - curl (a1f06f32b8603427535fc21183a84ce92a9b96f7) - ffmpeg (51367267c8a9f1a840f5e810f8c788e6e03712a5)
Diffstat (limited to 'stream')
-rw-r--r--stream/stream_lavf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/stream/stream_lavf.c b/stream/stream_lavf.c
index 1c7fd35ae2..27a948d5e5 100644
--- a/stream/stream_lavf.c
+++ b/stream/stream_lavf.c
@@ -413,7 +413,7 @@ const stream_info_t stream_info_ffmpeg = {
.protocols = (const char *const[]){
"rtmp", "rtsp", "rtsps", "http", "https", "mms", "mmst", "mmsh", "mmshttp",
"rtp", "httpproxy", "rtmpe", "rtmps", "rtmpt", "rtmpte", "rtmpts", "srt",
- "srtp", "gopher", "data",
+ "srtp", "gopher", "gophers", "data",
NULL },
.can_write = true,
.stream_origin = STREAM_ORIGIN_NET,