Home
last modified time | relevance | path

Searched refs:sequence (Results 1 – 10 of 10) sorted by relevance

/webrtc/sctp/src/chunk/
H A Dchunk_forward_tsn.rs43 res.push(format!(" - si={}, ssn={}", s.identifier, s.sequence)); in fmt()
130 pub(crate) sequence: u16, field
136 write!(f, "{}, {}", self.identifier, self.sequence) in fmt()
156 let sequence = reader.get_u16(); in unmarshal() localVariable
160 sequence, in unmarshal()
166 writer.put_u16(self.sequence); in marshal_to()
/webrtc/rtp/src/
H A Dlib.rs10 pub mod sequence; module
/webrtc/sctp/src/association/association_internal/
H A Dassociation_internal_test.rs89 assert_eq!(fwdtsn.streams[0].sequence, 2, "ssn should be 2"); in test_create_forward_tsn_forward_one_abandoned()
146 assert_eq!(3, s.sequence, "ssn should be 3"); in test_create_forward_tsn_forward_two_abandoned_with_the_same_si()
150 assert_eq!(1, s.sequence, "ssn should be 1"); in test_create_forward_tsn_forward_two_abandoned_with_the_same_si()
175 sequence: 0, in test_handle_forward_tsn_forward_3unreceived_chunks()
225 sequence: 1, in test_handle_forward_tsn_forward_1for1_missing()
275 sequence: 1, in test_handle_forward_tsn_forward_1for2_missing()
309 sequence: 1, in test_handle_forward_tsn_dup_forward_tsn_chunk_should_generate_sack()
/webrtc/webrtc/src/track/track_local/
H A Dtrack_local_static_sample.rs13 sequencer: Option<Box<dyn rtp::sequence::Sequencer + Send + Sync>>,
195 let sequencer: Box<dyn rtp::sequence::Sequencer + Send + Sync> = in bind()
196 Box::new(rtp::sequence::new_random_sequencer()); in bind()
/webrtc/ice/src/udp_mux/
H A Dudp_mux_test.rs252 let mut sequence: u32 = 0; in test_mux_connection() localVariable
260 buffer[0..4].copy_from_slice(&sequence.to_le_bytes()); in test_mux_connection()
265 log::debug!("Data written {}, sequence: {}", written, sequence); in test_mux_connection()
266 sequence += 1; in test_mux_connection()
/webrtc/rtcp/
H A DCHANGELOG.md17 * Adds `IntoIterator` for `NackPair` which iterates over all the sequence numbers specified by the …
/webrtc/rtp/src/packetizer/
H A Dmod.rs5 use crate::{extension::abs_send_time_extension::*, header::*, packet::*, sequence::*};
/webrtc/constraints/src/
H A Dmacros.rs247 fn sequence() { in sequence() function
/webrtc/sctp/src/association/
H A Dassociation_internal.rs1594 sequence: *ssn, in create_forward_tsn()
1703 s.handle_forward_tsn_for_ordered(forwarded.sequence).await; in handle_forward_tsn()
/webrtc/webrtc/
H A DCHANGELOG.md68 * Stop sequence numbers from increasing in `TrackLocalStaticSample` while the bound `RTCRtpSender` …