diff options
author | ben <ben@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2006-08-04 18:32:36 +0000 |
---|---|---|
committer | ben <ben@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2006-08-04 18:32:36 +0000 |
commit | 2d79655938d71025999550912dd3b554cf4a3ca7 (patch) | |
tree | 94e302bcc2b2b894712b70052e47709e19227670 /stream/stream.c | |
parent | 2410b87a6408d91eb5c8db8d38af5aabfdca4d8a (diff) | |
download | mpv-2d79655938d71025999550912dd3b554cf4a3ca7.tar.bz2 mpv-2d79655938d71025999550912dd3b554cf4a3ca7.tar.xz |
split rtp stack, udp input layer and rtp input layer from rtp.c
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19319 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'stream/stream.c')
-rw-r--r-- | stream/stream.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/stream/stream.c b/stream/stream.c index 3c59d4cbb0..5deb6daa4a 100644 --- a/stream/stream.c +++ b/stream/stream.c @@ -47,7 +47,8 @@ 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_rtp; +extern stream_info_t stream_info_udp; extern stream_info_t stream_info_http1; extern stream_info_t stream_info_http2; #endif @@ -102,7 +103,8 @@ stream_info_t* auto_open_streams[] = { &stream_info_sdp, &stream_info_rtsp_sip, #endif - &stream_info_rtp_udp, + &stream_info_rtp, + &stream_info_udp, &stream_info_http2, #endif #ifdef HAS_DVBIN_SUPPORT |