summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2013-07-12 18:34:17 +0200
committerwm4 <wm4@nowhere>2013-07-12 18:34:17 +0200
commitaa3b8c8fe704bc732feccbea84f8a725ee3b9acd (patch)
tree95c6e02a1889026956876370c0fcaa41fe541b66
parentdc95504a52fc09be96a92b6cf2d9643ad4363db6 (diff)
downloadmpv-aa3b8c8fe704bc732feccbea84f8a725ee3b9acd.tar.bz2
mpv-aa3b8c8fe704bc732feccbea84f8a725ee3b9acd.tar.xz
stream: remove some more forgotten network stuff
Was not cleanly removed with internal network code removal.
-rw-r--r--stream/stream.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/stream/stream.c b/stream/stream.c
index c1e88a0796..92d2f84f41 100644
--- a/stream/stream.c
+++ b/stream/stream.c
@@ -60,18 +60,11 @@ static struct input_ctx *stream_check_interrupt_ctx;
extern const stream_info_t stream_info_vcd;
extern const stream_info_t stream_info_cdda;
-extern const stream_info_t stream_info_asf;
-extern const stream_info_t stream_info_udp;
-extern const stream_info_t stream_info_http1;
-extern const stream_info_t stream_info_http2;
extern const stream_info_t stream_info_dvb;
extern const stream_info_t stream_info_tv;
extern const stream_info_t stream_info_radio;
extern const stream_info_t stream_info_pvr;
-extern const stream_info_t stream_info_ftp;
-extern const stream_info_t stream_info_vstream;
extern const stream_info_t stream_info_smb;
-
extern const stream_info_t stream_info_null;
extern const stream_info_t stream_info_memory;
extern const stream_info_t stream_info_mf;
@@ -103,12 +96,6 @@ static const stream_info_t *const auto_open_streams[] = {
#ifdef CONFIG_PVR
&stream_info_pvr,
#endif
-#ifdef CONFIG_FTP
- &stream_info_ftp,
-#endif
-#ifdef CONFIG_VSTREAM
- &stream_info_vstream,
-#endif
#ifdef CONFIG_LIBSMBCLIENT
&stream_info_smb,
#endif