Lines Matching refs:is_rtp
38 is_rtp: bool, field
45 is_rtp: bool, in new()
95 is_rtp, in new()
120 is_rtp, in new()
136 is_rtp: bool, in incoming()
143 let decrypted = if is_rtp { in incoming()
150 let ssrcs = if is_rtp { in incoming()
159 Session::get_or_create_stream(streams_map, close_stream_tx.clone(), is_rtp, ssrc) in incoming()
164 if is_rtp { "rtp" } else { "rtcp" }, in incoming()
187 is_rtp: bool, in get_or_create_stream()
195 let stream = Arc::new(Stream::new(ssrc, close_stream_tx, is_rtp)); in get_or_create_stream()
207 self.is_rtp, in open()
232 pub async fn write(&self, buf: &Bytes, is_rtp: bool) -> Result<usize> { in write()
233 if self.is_rtp != is_rtp { in write()
240 if is_rtp { in write()