| /webrtc/rtp/src/codecs/vp8/ |
| H A D | vp8_test.rs | 9 let result = pck.depacketize(&empty_bytes); in test_vp8_unmarshal() 14 let result = pck.depacketize(&small_bytes); in test_vp8_unmarshal() 19 let result = pck.depacketize(&small_bytes); in test_vp8_unmarshal() 24 let payload = pck.depacketize(&raw_bytes).expect("Normal packet"); in test_vp8_unmarshal() 29 let payload = pck.depacketize(&raw_bytes).expect("Only X"); in test_vp8_unmarshal() 39 let payload = pck.depacketize(&raw_bytes).expect("X and I, PID 16bits"); in test_vp8_unmarshal() 49 let payload = pck.depacketize(&raw_bytes).expect("X and L"); in test_vp8_unmarshal() 59 let payload = pck.depacketize(&raw_bytes).expect("X and T"); in test_vp8_unmarshal() 69 let payload = pck.depacketize(&raw_bytes).expect("X and K"); in test_vp8_unmarshal() 80 .depacketize(&raw_bytes) in test_vp8_unmarshal() [all …]
|
| H A D | mod.rs | 151 fn depacketize(&mut self, packet: &Bytes) -> Result<Bytes> { in depacketize() method
|
| /webrtc/rtp/src/codecs/h264/ |
| H A D | h264_test.rs | 122 let result = pkt.depacketize(&data); in test_h264_packet_unmarshal() 126 let result = pkt.depacketize(&data); in test_h264_packet_unmarshal() 133 let result = pkt.depacketize(&data); in test_h264_packet_unmarshal() 139 let result = pkt.depacketize(&incomplete_single_payload_multi_nalu); in test_h264_packet_unmarshal() 145 let payload = pkt.depacketize(&single_payload)?; in test_h264_packet_unmarshal() 151 let payload = avc_pkt.depacketize(&single_payload)?; in test_h264_packet_unmarshal() 159 let payload = pkt.depacketize(p)?; in test_h264_packet_unmarshal() 170 let payload = avc_pkt.depacketize(p)?; in test_h264_packet_unmarshal() 179 let payload = pkt.depacketize(&single_payload_multi_nalu)?; in test_h264_packet_unmarshal() 185 let payload = avc_pkt.depacketize(&single_payload_multi_nalu)?; in test_h264_packet_unmarshal()
|
| H A D | mod.rs | 210 fn depacketize(&mut self, packet: &Bytes) -> Result<Bytes> { in depacketize() method
|
| /webrtc/rtp/src/codecs/opus/ |
| H A D | opus_test.rs | 9 let result = pck.depacketize(&empty_bytes); in test_opus_unmarshal() 14 let payload = pck.depacketize(&raw_bytes)?; in test_opus_unmarshal()
|
| H A D | mod.rs | 33 fn depacketize(&mut self, packet: &Bytes) -> Result<Bytes> { in depacketize() method
|
| /webrtc/rtp/src/codecs/h265/ |
| H A D | mod.rs | 120 fn depacketize(&mut self, payload: &Bytes) -> Result<()> { in depacketize() method 285 fn depacketize(&mut self, payload: &Bytes) -> Result<()> { in depacketize() method 452 fn depacketize(&mut self, payload: &Bytes) -> Result<()> { in depacketize() method 614 fn depacketize(&mut self, payload: &Bytes) -> Result<()> { in depacketize() method 746 fn depacketize(&mut self, payload: &Bytes) -> Result<Bytes> { in depacketize() method 758 decoded.depacketize(payload)?; in depacketize() 765 decoded.depacketize(payload)?; in depacketize() 772 decoded.depacketize(payload)?; in depacketize() 779 decoded.depacketize(payload)?; in depacketize()
|
| H A D | h265_test.rs | 246 let result = parsed.depacketize(&cur.raw); in test_h265_single_nalunit_packet() 397 let result = parsed.depacketize(&cur.raw); in test_h265_aggregation_packet() 541 let result = parsed.depacketize(&cur.raw); in test_h265_fragmentation_unit_packet() 707 let result = parsed.depacketize(&cur.raw); in test_h265_paci_packet() 832 let result = pck.depacketize(&cur.raw); in test_h265_packet() 885 let _ = pck.depacketize(&Bytes::from(cur))?; in test_h265_packet_real()
|
| /webrtc/media/src/io/ivf_writer/ |
| H A D | ivf_writer_test.rs | 90 let payload = vp8packet.depacketize(&valid_packet.payload)?; in test_ivf_writer_add_packet_and_close() 100 let payload = vp8packet.depacketize(&mid_part_packet.payload)?; in test_ivf_writer_add_packet_and_close() 110 let payload = vp8packet.depacketize(&keyframe_packet.payload)?; in test_ivf_writer_add_packet_and_close()
|
| H A D | mod.rs | 65 let payload = depacketizer.depacketize(&packet.payload)?; in write_rtp()
|
| /webrtc/rtp/src/codecs/vp9/ |
| H A D | vp9_test.rs | 217 if let Err(actual) = p.depacketize(&b) { in test_vp9_packet_unmarshal() 226 let payload = p.depacketize(&b)?; in test_vp9_packet_unmarshal() 319 p.depacketize(&res[0])?; in test_vp9_payloader_payload()
|
| H A D | mod.rs | 205 fn depacketize(&mut self, packet: &Bytes) -> Result<Bytes> { in depacketize() method
|
| /webrtc/media/src/io/h264_writer/ |
| H A D | mod.rs | 68 let payload = cached_packet.depacketize(&packet.payload)?; in write_rtp()
|
| /webrtc/media/src/io/ogg_writer/ |
| H A D | mod.rs | 162 let payload = opus_packet.depacketize(&packet.payload)?; in write_rtp()
|
| /webrtc/rtp/src/packetizer/ |
| H A D | mod.rs | 41 fn depacketize(&mut self, b: &Bytes) -> Result<Bytes>; in depacketize() method
|
| /webrtc/media/src/io/sample_builder/ |
| H A D | mod.rs | 338 .depacketize(payload) in build_sample()
|
| H A D | sample_builder_test.rs | 39 fn depacketize(&mut self, b: &Bytes) -> std::result::Result<bytes::Bytes, rtp::Error> { in depacketize() method
|