| /webrtc/sdp/benches/ |
| H A D | bench.rs | 2 use sdp::SessionDescription; 33 let sdp = SessionDescription::unmarshal(&mut reader).unwrap(); in benchmark_sdp() 45 let _ = SessionDescription::unmarshal(&mut reader).unwrap(); in benchmark_sdp()
|
| /webrtc/webrtc/src/dtls_transport/ |
| H A D | dtls_role.rs | 1 use sdp::description::session::SessionDescription; 56 impl From<&SessionDescription> for DTLSRole { 57 fn from(session_description: &SessionDescription) -> Self { in from() 161 let session_description = SessionDescription::unmarshal(&mut reader)?; in test_dtls_role_from_remote_sdp()
|
| /webrtc/sdp/src/description/ |
| H A D | description_test.rs | 39 let sdp = SessionDescription::unmarshal(&mut reader)?; in test_unmarshal_marshal() 48 let sd = SessionDescription { in test_marshal() 534 let sdp = SessionDescription::unmarshal(&mut reader); in test_round_trip() 553 let sdp = SessionDescription::unmarshal(&mut reader)?; in test_unmarshal_repeat_times() 562 let result = SessionDescription::unmarshal(&mut reader); in test_unmarshal_repeat_times_overflow() 574 let sdp = SessionDescription::unmarshal(&mut reader)?; in test_unmarshal_time_zones() 584 let sdp = SessionDescription::unmarshal(&mut reader); in test_unmarshal_non_nil_address()
|
| /webrtc/examples/examples/swap-tracks/ |
| H A D | README.md | 17 ### Run swap-tracks, with your browsers SessionDescription as stdin 27 1. Paste the SessionDescription into a file. 30 ### Input swap-tracks's SessionDescription into your browser
|
| /webrtc/examples/examples/reflect/ |
| H A D | README.md | 17 ### Run reflect, with your browsers SessionDescription as stdin 27 1. Paste the SessionDescription into a file. 30 ### Input reflect's SessionDescription into your browser
|
| /webrtc/examples/examples/rtp-to-webrtc/ |
| H A D | README.md | 19 ### Run rtp-to-webrtc with your browsers SessionDescription as stdin 21 In the jsfiddle the top textarea is your browser's SessionDescription, copy that and: 29 1. Paste the SessionDescription into a file. 48 ### Input rtp-to-webrtc's SessionDescription into your browser
|
| /webrtc/examples/examples/simulcast/ |
| H A D | README.md | 21 ### Run simulcast, with your browsers SessionDescription as stdin 31 1. Paste the SessionDescription into a file. 34 ### Input simulcast's SessionDescription into your browser
|
| /webrtc/examples/examples/data-channels/ |
| H A D | README.md | 17 ### Run data-channels, with your browsers SessionDescription as stdin 27 1. Paste the SessionDescription into a file. 30 ### Input data-channels's SessionDescription into your browser
|
| /webrtc/webrtc/src/peer_connection/sdp/ |
| H A D | sdp_test.rs | 18 let s = SessionDescription { in test_extract_fingerprint() 33 let s = SessionDescription { in test_extract_fingerprint() 62 let s = SessionDescription { in test_extract_fingerprint() 79 let s = SessionDescription { in test_extract_fingerprint() 111 let s = SessionDescription { in test_extract_ice_details() 131 let s = SessionDescription { in test_extract_ice_details() 151 let s = SessionDescription { in test_extract_ice_details() 173 let s = SessionDescription { in test_extract_ice_details() 197 let s = SessionDescription { in test_extract_ice_details() 227 let s = SessionDescription { in test_extract_ice_details() [all …]
|
| H A D | session_description.rs | 5 use sdp::description::session::SessionDescription; 19 pub(crate) parsed: Option<SessionDescription>, 70 pub fn unmarshal(&self) -> Result<SessionDescription> { in unmarshal() argument 72 let parsed = SessionDescription::unmarshal(&mut reader)?; in unmarshal()
|
| H A D | mod.rs | 69 s: &SessionDescription, in track_details_from_sdp() argument 302 d: SessionDescription, in add_data_media_section() argument 306 ) -> Result<SessionDescription> { in add_data_media_section() argument 405 mut d: SessionDescription, in add_transceiver_sdp() argument 412 ) -> Result<(SessionDescription, bool)> { in add_transceiver_sdp() argument 647 mut d: SessionDescription, in populate_sdp() argument 654 ) -> Result<SessionDescription> { in populate_sdp() argument 782 desc: &SessionDescription, in extract_ice_details() argument 835 pub(crate) fn have_application_media_section(desc: &SessionDescription) -> bool { in have_application_media_section() 878 let s = SessionDescription { in codecs_from_media_description() [all …]
|
| /webrtc/examples/examples/data-channels-detach/ |
| H A D | README.md | 17 ### Run data-channels-detach, with your browsers SessionDescription as stdin 27 1. Paste the SessionDescription into a file. 30 ### Input data-channels-detach's SessionDescription into your browser
|
| /webrtc/examples/examples/save-to-disk-vpx/ |
| H A D | README.md | 17 ### Run save-to-disk-vpx, with your browsers SessionDescription as stdin 27 1. Paste the SessionDescription into a file. 30 ### Input save-to-disk-vpx's SessionDescription into your browser
|
| /webrtc/examples/examples/save-to-disk-h264/ |
| H A D | README.md | 17 ### Run save-to-disk-h264, with your browsers SessionDescription as stdin 27 1. Paste the SessionDescription into a file. 30 ### Input save-to-disk-h264's SessionDescription into your browser
|
| /webrtc/examples/examples/insertable-streams/ |
| H A D | README.md | 29 ### Run insertable-streams with your browsers SessionDescription as stdin 39 1. Paste the SessionDescription into a file. 42 ### Input insertable-streams's SessionDescription into your browser
|
| /webrtc/examples/examples/play-from-disk-h264/ |
| H A D | README.md | 24 ### Run play-from-disk-h264 with your browsers SessionDescription as stdin 34 1. Paste the SessionDescription into a file. 37 ### Input play-from-disk-h264's SessionDescription into your browser
|
| /webrtc/examples/examples/rtp-forwarder/ |
| H A D | README.md | 17 ### Run rtp-forwarder, with your browsers SessionDescription as stdin 27 1. Paste the SessionDescription into a file. 30 ### Input rtp-forwarder's SessionDescription into your browser
|
| /webrtc/sdp/src/ |
| H A D | lib.rs | 12 pub use description::{media::MediaDescription, session::SessionDescription};
|
| /webrtc/sdp/fuzz/fuzz_targets/ |
| H A D | parse_session.rs | 6 let _session = sdp::SessionDescription::unmarshal(&mut cursor);
|
| /webrtc/sdp/src/lexer/ |
| H A D | mod.rs | 1 use super::description::session::SessionDescription; 10 pub desc: SessionDescription,
|
| /webrtc/webrtc/src/peer_connection/policy/ |
| H A D | sdp_semantics.rs | 64 use sdp::description::session::{SessionDescription, ATTR_KEY_SSRC}; 86 fn get_md_names(sdp: &SessionDescription) -> Vec<String> { in get_md_names()
|
| /webrtc/examples/examples/play-from-disk-vpx/ |
| H A D | README.md | 25 ### Run play-from-disk-vpx with your browsers SessionDescription as stdin 36 1. Paste the SessionDescription into a file. 40 ### Input play-from-disk-vpx's SessionDescription into your browser
|
| /webrtc/sdp/src/util/ |
| H A D | util_test.rs | 6 fn get_test_session_description() -> SessionDescription { in get_test_session_description() 7 SessionDescription{ in get_test_session_description()
|
| /webrtc/examples/examples/data-channels-create/ |
| H A D | README.md | 21 ### Input data-channels-create's SessionDescription into your browser 29 ### Input browser's SessionDescription into data-channels-create
|
| /webrtc/sdp/ |
| H A D | CHANGELOG.md | 5 * Implement from and tryfrom string traits for SessionDescription.
|