diff options
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 |