comparison stream/stream_livedotcom.c @ 25211:c1d17bd6683c

Mark all stream_info_t as const
author reimar
date Sun, 02 Dec 2007 13:22:53 +0000
parents d261f5109660
children
comparison
equal deleted inserted replaced
25210:92204ff32b27 25211:c1d17bd6683c
94 } 94 }
95 return STREAM_UNSUPPORTED; 95 return STREAM_UNSUPPORTED;
96 } 96 }
97 97
98 98
99 stream_info_t stream_info_rtsp_sip = { 99 const stream_info_t stream_info_rtsp_sip = {
100 "standard RTSP and SIP", 100 "standard RTSP and SIP",
101 "RTSP and SIP", 101 "RTSP and SIP",
102 "Ross Finlayson", 102 "Ross Finlayson",
103 "Uses LIVE555 Streaming Media library.", 103 "Uses LIVE555 Streaming Media library.",
104 open_live_rtsp_sip, 104 open_live_rtsp_sip,
105 {"rtsp", "sip", NULL }, 105 {"rtsp", "sip", NULL },
106 NULL, 106 NULL,
107 0 // Urls are an option string 107 0 // Urls are an option string
108 }; 108 };
109 109
110 stream_info_t stream_info_sdp = { 110 const stream_info_t stream_info_sdp = {
111 "SDP stream descriptor", 111 "SDP stream descriptor",
112 "SDP", 112 "SDP",
113 "Ross Finlayson", 113 "Ross Finlayson",
114 "Uses LIVE555 Streaming Media library.", 114 "Uses LIVE555 Streaming Media library.",
115 open_live_sdp, 115 open_live_sdp,