Home
last modified time | relevance | path

Searched refs:NalUnitType (Results 1 – 2 of 2) sorted by relevance

/webrtc/media/src/io/h264_reader/
H A Dmod.rs13 pub enum NalUnitType { enum
52 impl fmt::Display for NalUnitType { implementation
61 NalUnitType::SEI => "SEI", in fmt()
62 NalUnitType::SPS => "SPS", in fmt()
63 NalUnitType::PPS => "PPS", in fmt()
76 impl From<u8> for NalUnitType { implementation
85 6 => NalUnitType::SEI, in from()
86 7 => NalUnitType::SPS, in from()
87 8 => NalUnitType::PPS, in from()
88 9 => NalUnitType::AUD, in from()
[all …]
H A Dh264_reader_test.rs35 assert_eq!(NalUnitType::EndOfStream, nal.unit_type); in test_parse_header()