summaryrefslogtreecommitdiffstats
path: root/libmpdemux/stream.c
diff options
context:
space:
mode:
authornicodvb <nicodvb@b3059339-0415-0410-9bf9-f77b7e298cf2>2005-05-29 12:54:00 +0000
committernicodvb <nicodvb@b3059339-0415-0410-9bf9-f77b7e298cf2>2005-05-29 12:54:00 +0000
commit83b3c822becab58bdf25bcef7c247d674908ddcb (patch)
treeeaf10adfc92fb90f5a69f642be7c1e10a5beb060 /libmpdemux/stream.c
parentc1bd86b4cdeb863282fe5ae1399d8d1ea68c9496 (diff)
downloadmpv-83b3c822becab58bdf25bcef7c247d674908ddcb.tar.bz2
mpv-83b3c822becab58bdf25bcef7c247d674908ddcb.tar.xz
ported all network streams to the new API
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@15586 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpdemux/stream.c')
-rw-r--r--libmpdemux/stream.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/libmpdemux/stream.c b/libmpdemux/stream.c
index 7a0c6e00ff..7c665d51f8 100644
--- a/libmpdemux/stream.c
+++ b/libmpdemux/stream.c
@@ -45,6 +45,12 @@ extern stream_info_t stream_info_cdda;
#endif
#ifdef MPLAYER_NETWORK
extern stream_info_t stream_info_netstream;
+extern stream_info_t stream_info_pnm;
+extern stream_info_t stream_info_asf;
+extern stream_info_t stream_info_rtsp;
+extern stream_info_t stream_info_rtp_udp;
+extern stream_info_t stream_info_http1;
+extern stream_info_t stream_info_http2;
#endif
#ifdef HAS_DVBIN_SUPPORT
extern stream_info_t stream_info_dvb;
@@ -61,6 +67,10 @@ extern stream_info_t stream_info_dvdnav;
#ifdef LIBSMBCLIENT
extern stream_info_t stream_info_smb;
#endif
+#ifdef STREAMING_LIVE_DOT_COM
+extern stream_info_t stream_info_sdp;
+extern stream_info_t stream_info_rtsp_sip;
+#endif;
extern stream_info_t stream_info_cue;
extern stream_info_t stream_info_null;
@@ -76,6 +86,16 @@ stream_info_t* auto_open_streams[] = {
#endif
#ifdef MPLAYER_NETWORK
&stream_info_netstream,
+ &stream_info_http1,
+ &stream_info_asf,
+ &stream_info_pnm,
+ &stream_info_rtsp,
+#ifdef STREAMING_LIVE_DOT_COM
+ &stream_info_sdp,
+ &stream_info_rtsp_sip,
+#endif
+ &stream_info_rtp_udp,
+ &stream_info_http2,
#endif
#ifdef HAS_DVBIN_SUPPORT
&stream_info_dvb,