Home
last modified time | relevance | path

Searched refs:rtpmap (Results 1 – 3 of 3) sorted by relevance

/webrtc/examples/examples/rtp-forwarder/
H A Drtp-forwarder.sdp7 a=rtpmap:111 OPUS/48000/2
9 a=rtpmap:96 VP8/90000
/webrtc/sdp/src/description/
H A Dmedia.rs139 let mut rtpmap = format!("{payload_type} {name}/{clockrate}"); in with_codec() localVariable
141 rtpmap += format!("/{channels}").as_str(); in with_codec()
145 self.with_value_attribute("rtpmap".to_string(), rtpmap) in with_codec()
148 self.with_value_attribute("rtpmap".to_string(), rtpmap) in with_codec()
/webrtc/sdp/src/util/
H A Dmod.rs107 pub(crate) fn parse_rtpmap(rtpmap: &str) -> Result<Codec> { in parse_rtpmap()
109 let split: Vec<&str> = rtpmap.split_whitespace().collect(); in parse_rtpmap()