Searched refs:with_value_attribute (Results 1 – 3 of 3) sorted by relevance
| /webrtc/sdp/src/description/ |
| H A D | media.rs | 113 pub fn with_value_attribute(mut self, key: String, value: String) -> Self { in with_value_attribute() method 120 self.with_value_attribute("fingerprint".to_owned(), algorithm + " " + &value) in with_fingerprint() 125 self.with_value_attribute("ice-ufrag".to_string(), username) in with_ice_credentials() 126 .with_value_attribute("ice-pwd".to_string(), password) in with_ice_credentials() 145 self.with_value_attribute("rtpmap".to_string(), rtpmap) in with_codec() 146 .with_value_attribute("fmtp".to_string(), format!("{payload_type} {fmtp}")) in with_codec() 148 self.with_value_attribute("rtpmap".to_string(), rtpmap) in with_codec() 162 with_value_attribute("ssrc".to_string(), format!("{ssrc} msid:{stream_label} {label}")). in with_media_source() 164 with_value_attribute("ssrc".to_string(), format!("{ssrc} label:{label}")) in with_media_source() 171 self.with_value_attribute("candidate".to_string(), value) in with_candidate() [all …]
|
| H A D | session.rs | 292 pub fn with_value_attribute(mut self, key: String, value: String) -> Self { in with_value_attribute() method 299 self.with_value_attribute("fingerprint".to_string(), algorithm + " " + value.as_str()) in with_fingerprint()
|
| /webrtc/webrtc/src/peer_connection/sdp/ |
| H A D | mod.rs | 268 m.with_value_attribute("candidate".to_owned(), marshaled) in add_candidates_to_media_descriptions() 331 .with_value_attribute( in add_data_media_section() 335 .with_value_attribute(ATTR_KEY_MID.to_owned(), params.mid_value) in add_data_media_section() 427 .with_value_attribute(ATTR_KEY_CONNECTION_SETUP.to_owned(), dtls_role.to_string()) in add_transceiver_sdp() 428 .with_value_attribute(ATTR_KEY_MID.to_owned(), mid_value.clone()) in add_transceiver_sdp() 453 media = media.with_value_attribute( in add_transceiver_sdp() 520 media.with_value_attribute(SDP_ATTRIBUTE_RID.to_owned(), rid.to_owned() + " recv"); in add_transceiver_sdp() 524 media = media.with_value_attribute( in add_transceiver_sdp() 725 d = d.with_value_attribute(ATTR_KEY_ICELITE.to_owned(), ATTR_KEY_ICELITE.to_owned()); in populate_sdp() 728 Ok(d.with_value_attribute(ATTR_KEY_GROUP.to_owned(), bundle_value)) in populate_sdp()
|