summaryrefslogtreecommitdiffstats
path: root/stream/stream.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2012-08-18 10:37:34 +0200
committerwm4 <wm4@nowhere>2012-08-20 15:36:03 +0200
commit3a5d5f01d4d8d7beb53c3288d72db20f2ad0b141 (patch)
tree4b07874ce53c81de4fb74c77c9859def23f62ac6 /stream/stream.c
parent8ca3ec1562986c0681261cad407e05578eda45fd (diff)
downloadmpv-3a5d5f01d4d8d7beb53c3288d72db20f2ad0b141.tar.bz2
mpv-3a5d5f01d4d8d7beb53c3288d72db20f2ad0b141.tar.xz
Remove support for LIVE555 RTSP streaming
The main excuse for removing this is that LIVE555 deprecated the API the mplayer implementation was using. The old API still seems to be somewhat supported, but must be explicitly enabled at LIVE555 compilation, so mplayer won't always work on any user installation. The implementation was also very messy, in C++, and FFmpeg support is available as alternative. Remove it completely.
Diffstat (limited to 'stream/stream.c')
-rw-r--r--stream/stream.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/stream/stream.c b/stream/stream.c
index d04b7fb8d8..9fab0443e6 100644
--- a/stream/stream.c
+++ b/stream/stream.c
@@ -72,8 +72,6 @@ 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_sdp;
-extern const stream_info_t stream_info_rtsp_sip;
extern const stream_info_t stream_info_null;
extern const stream_info_t stream_info_mf;
@@ -97,10 +95,6 @@ static const stream_info_t* const auto_open_streams[] = {
#ifdef CONFIG_LIBNEMESI
&stream_info_rtsp,
#endif
-#ifdef CONFIG_LIVE555
- &stream_info_sdp,
- &stream_info_rtsp_sip,
-#endif
&stream_info_udp,
&stream_info_http2,
#endif