Home
last modified time | relevance | path

Searched refs:session_description (Results 1 – 24 of 24) sorted by relevance

/webrtc/webrtc/src/dtls_transport/
H A Ddtls_role.rs57 fn from(session_description: &SessionDescription) -> Self { in from()
58 for media_section in &session_description.media_descriptions { in from()
161 let session_description = SessionDescription::unmarshal(&mut reader)?; in test_dtls_role_from_remote_sdp() localVariable
163 DTLSRole::from(&session_description), in test_dtls_role_from_remote_sdp()
/webrtc/webrtc/src/peer_connection/sdp/
H A Dmod.rs19 pub mod session_description; module
356 session_description: Option<&session_description::RTCSessionDescription>, in populate_local_candidates()
359 ) -> Option<session_description::RTCSessionDescription> { in populate_local_candidates()
360 if session_description.is_none() || ice_gatherer.is_none() { in populate_local_candidates()
361 return session_description.cloned(); in populate_local_candidates()
364 if let (Some(sd), Some(ice)) = (session_description, ice_gatherer) { in populate_local_candidates()
386 Some(session_description::RTCSessionDescription { in populate_local_candidates()
847 desc: &'a session_description::RTCSessionDescription, in get_by_mid()
863 desc: &session_description::RTCSessionDescription, in have_data_channel()
/webrtc/examples/examples/data-channels/
H A Ddata-channels.rs16 use webrtc::peer_connection::sdp::session_description::RTCSessionDescription;
/webrtc/examples/examples/data-channels-create/
H A Ddata-channels-create.rs15 use webrtc::peer_connection::sdp::session_description::RTCSessionDescription;
/webrtc/examples/examples/rtp-to-webrtc/
H A Drtp-to-webrtc.rs14 use webrtc::peer_connection::sdp::session_description::RTCSessionDescription;
/webrtc/examples/examples/data-channels-detach-create/
H A Ddata-channels-detach-create.rs16 use webrtc::peer_connection::sdp::session_description::RTCSessionDescription;
/webrtc/examples/examples/data-channels-detach/
H A Ddata-channels-detach.rs17 use webrtc::peer_connection::sdp::session_description::RTCSessionDescription;
/webrtc/examples/examples/simulcast/
H A Dsimulcast.rs14 use webrtc::peer_connection::sdp::session_description::RTCSessionDescription;
/webrtc/examples/examples/data-channels-close/
H A Ddata-channels-close.rs18 use webrtc::peer_connection::sdp::session_description::RTCSessionDescription;
/webrtc/examples/examples/insertable-streams/
H A Dinsertable-streams.rs20 use webrtc::peer_connection::sdp::session_description::RTCSessionDescription;
/webrtc/examples/examples/reflect/
H A Dreflect.rs14 use webrtc::peer_connection::sdp::session_description::RTCSessionDescription;
/webrtc/examples/examples/rtp-forwarder/
H A Drtp-forwarder.rs16 use webrtc::peer_connection::sdp::session_description::RTCSessionDescription;
/webrtc/examples/examples/broadcast/
H A Dbroadcast.rs13 use webrtc::peer_connection::sdp::session_description::RTCSessionDescription;
/webrtc/examples/examples/ice-restart/
H A Dice-restart.rs19 use webrtc::peer_connection::sdp::session_description::RTCSessionDescription;
/webrtc/examples/examples/swap-tracks/
H A Dswap-tracks.rs14 use webrtc::peer_connection::sdp::session_description::RTCSessionDescription;
/webrtc/examples/examples/save-to-disk-h264/
H A Dsave-to-disk-h264.rs17 use webrtc::peer_connection::sdp::session_description::RTCSessionDescription;
/webrtc/examples/examples/play-from-disk-h264/
H A Dplay-from-disk-h264.rs21 use webrtc::peer_connection::sdp::session_description::RTCSessionDescription;
/webrtc/examples/examples/play-from-disk-vpx/
H A Dplay-from-disk-vpx.rs21 use webrtc::peer_connection::sdp::session_description::RTCSessionDescription;
/webrtc/examples/examples/save-to-disk-vpx/
H A Dsave-to-disk-vpx.rs18 use webrtc::peer_connection::sdp::session_description::RTCSessionDescription;
/webrtc/examples/examples/offer-answer/
H A Doffer.rs21 use webrtc::peer_connection::sdp::session_description::RTCSessionDescription;
H A Danswer.rs22 use webrtc::peer_connection::sdp::session_description::RTCSessionDescription;
/webrtc/examples/examples/play-from-disk-renegotiation/
H A Dplay-from-disk-renegotiation.rs24 use webrtc::peer_connection::sdp::session_description::RTCSessionDescription;
/webrtc/sdp/src/description/
H A Dsession.rs577 let session_description = SessionDescription::unmarshal(&mut reader)?; in try_from() localVariable
578 Ok(session_description) in try_from()
/webrtc/webrtc/src/peer_connection/
H A Dmod.rs50 use crate::peer_connection::sdp::session_description::RTCSessionDescription;