summaryrefslogtreecommitdiffstats
path: root/stream/stream.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2012-08-01 17:30:31 +0200
committerwm4 <wm4@nowhere>2012-08-01 17:47:14 +0200
commit59b938c8aa7d903e849748b737d45ccd949ef419 (patch)
tree8418d35dc94e3e7a8f185a1e63dbdad45e271e8d /stream/stream.c
parentc92538dfaa5eb7e9b2773f158cbb310545116abe (diff)
downloadmpv-59b938c8aa7d903e849748b737d45ccd949ef419.tar.bz2
mpv-59b938c8aa7d903e849748b737d45ccd949ef419.tar.xz
stream: remove native RTSP/RTP/PNM support
There are still various other RTSP implementations available, such as libnemesi, live555, and libav. The mplayer native version was a huge chunk of old unmaintained code.
Diffstat (limited to 'stream/stream.c')
-rw-r--r--stream/stream.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/stream/stream.c b/stream/stream.c
index cb3679fbef..5cca2dd1e0 100644
--- a/stream/stream.c
+++ b/stream/stream.c
@@ -60,10 +60,8 @@ 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_netstream;
-extern const stream_info_t stream_info_pnm;
extern const stream_info_t stream_info_asf;
extern const stream_info_t stream_info_rtsp;
-extern const stream_info_t stream_info_rtp;
extern const stream_info_t stream_info_udp;
extern const stream_info_t stream_info_http1;
extern const stream_info_t stream_info_http2;
@@ -98,13 +96,13 @@ static const stream_info_t* const auto_open_streams[] = {
&stream_info_netstream,
&stream_info_http1,
&stream_info_asf,
- &stream_info_pnm,
+#ifdef CONFIG_LIBNEMESI
&stream_info_rtsp,
+#endif
#ifdef CONFIG_LIVE555
&stream_info_sdp,
&stream_info_rtsp_sip,
#endif
- &stream_info_rtp,
&stream_info_udp,
&stream_info_http2,
#endif