summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2013-11-04 19:57:13 +0100
committerwm4 <wm4@nowhere>2013-11-04 19:57:13 +0100
commit41fedab2d9255ae496236e9292c70acdbb11bbf9 (patch)
tree1980917c1e657e0ef821ff21f13a274df7bbc6a1
parentbb22bee31564754203be1cf318f6747d6f79db08 (diff)
downloadmpv-41fedab2d9255ae496236e9292c70acdbb11bbf9.tar.bz2
mpv-41fedab2d9255ae496236e9292c70acdbb11bbf9.tar.xz
stream_lavf: support more libavformat protocols
-rw-r--r--stream/stream_lavf.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/stream/stream_lavf.c b/stream/stream_lavf.c
index c7161b506c..eecb3f6579 100644
--- a/stream/stream_lavf.c
+++ b/stream/stream_lavf.c
@@ -316,6 +316,8 @@ const stream_info_t stream_info_ffmpeg = {
.open = open_f,
.protocols = (const char*[]){
"lavf", "ffmpeg", "rtmp", "rtsp", "http", "https", "mms", "mmst", "mmsh",
- "mmshttp", "udp", "ftp", "rtp", "httpproxy",
+ "mmshttp", "udp", "ftp", "rtp", "httpproxy", "hls", "rtmpe", "rtmps",
+ "rtmpt", "rtmpte", "rtmpts", "srtp", "tcp", "udp", "tls", "unix", "sftp",
+ "md5",
NULL },
};