Home
last modified time | relevance | path

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

/webrtc/rtcp/src/payload_feedbacks/slice_loss_indication/
H A Dslice_loss_indication_test.rs15 SliceLossIndication { in test_slice_loss_indication_unmarshal()
33 SliceLossIndication::default(), in test_slice_loss_indication_unmarshal()
49 SliceLossIndication::default(), in test_slice_loss_indication_unmarshal()
55 SliceLossIndication::default(), in test_slice_loss_indication_unmarshal()
61 let got = SliceLossIndication::unmarshal(&mut data); in test_slice_loss_indication_unmarshal()
87 let tests: Vec<(&str, SliceLossIndication, Option<Error>)> = vec![( in test_slice_loss_indication_roundtrip()
89 SliceLossIndication { in test_slice_loss_indication_roundtrip()
125 let actual = SliceLossIndication::unmarshal(&mut data) in test_slice_loss_indication_roundtrip()
H A Dmod.rs30 pub struct SliceLossIndication { struct
39 impl fmt::Display for SliceLossIndication { implementation
49 impl Packet for SliceLossIndication { implementation
76 .downcast_ref::<SliceLossIndication>() in equal()
85 impl MarshalSize for SliceLossIndication { implementation
93 impl Marshal for SliceLossIndication { implementation
126 impl Unmarshal for SliceLossIndication { implementation
170 Ok(SliceLossIndication { in unmarshal()
/webrtc/rtcp/src/
H A Dpacket.rs106 FORMAT_SLI => Box::new(SliceLossIndication::unmarshal(&mut in_packet)?), in unmarshaller()