Home
last modified time | relevance | path

Searched refs:sdp (Results 1 – 8 of 8) sorted by relevance

/xiu/protocol/rtsp/src/sdp/
H A Dmod.rs182 let mut sdp = Sdp { in unmarshal() localVariable
220 sdp.version = version; in unmarshal()
224 sdp.origin = kv[1].to_string(); in unmarshal()
227 sdp.session = kv[1].to_string(); in unmarshal()
230 sdp.connection = kv[1].to_string(); in unmarshal()
233 sdp.timing = kv[1].to_string(); in unmarshal()
237 sdp.medias.push(sdp_media); in unmarshal()
281 sdp.attributes in unmarshal()
292 Some(sdp) in unmarshal()
373 if let Some(sdp) = Sdp::unmarshal(data2) { in test_parse_sdp()
[all …]
/xiu/protocol/webrtc/src/clients/
H A Dwhep.js78 body: offer.sdp,
238 this.iceUsername = offer.sdp.match(/a=ice-ufrag:(.*)\r\n/)[1];
239 this.icePassword = offer.sdp.match(/a=ice-pwd:(.*)\r\n/)[1];
243 await pc.setRemoteDescription({ type: "answer", sdp: answer }); property
282 this.iceUsername = offer.sdp.match(/a=ice-ufrag:(.*)\r\n/)[1];
283 this.icePassword = offer.sdp.match(/a=ice-pwd:(.*)\r\n/)[1];
367 …remoteDescription.sdp = remoteDescription.sdp.replaceAll(/(a=ice-ufrag:)(.*)\r\n/gm, "$1" + iceUse…
368 …remoteDescription.sdp = remoteDescription.sdp.replaceAll(/(a=ice-pwd:)(.*)\r\n/gm, "$1" + icePassw…
/xiu/protocol/rtsp/src/session/
H A Dmod.rs13 use crate::sdp::fmtp::Fmtp;
38 use super::sdp::Sdp;
68 sdp: Sdp, field
121 sdp: Sdp::default(), in new()
249 self.sdp = sdp; in handle_describe()
256 let sdp = self.sdp.marshal(); in handle_describe() localVariable
257 log::debug!("sdp: {}", sdp); in handle_describe()
258 response.body = Some(sdp); in handle_describe()
270 self.sdp = sdp.clone(); in handle_announce()
707 sdp: Mutex<Sdp>, field
[all …]
/xiu/protocol/rtsp/src/
H A Dlib.rs11 pub mod sdp; module
/xiu/protocol/webrtc/src/session/
H A Dmod.rs36 use webrtc::peer_connection::{sdp::session_description::RTCSessionDescription, RTCPeerConnection};
284 response.body = Some(session_description.sdp); in publish_whip()
398 response.body = Some(session_description.sdp); in subscribe_whep()
/xiu/protocol/webrtc/src/
H A Dwhip.rs16 use webrtc::peer_connection::sdp::session_description::RTCSessionDescription;
H A Dwhep.rs16 use webrtc::peer_connection::sdp::session_description::RTCSessionDescription;
/xiu/
H A DCargo.lock2406 name = "sdp"
3259 "sdp",