Home
last modified time | relevance | path

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

/xiu/protocol/rtsp/src/rtp/
H A Drtp_header.rs38 let byte_2nd = reader.read_u8()?; in unmarshal() localVariable
39 rtp_header.marker = byte_2nd >> 7; in unmarshal()
40 rtp_header.payload_type = byte_2nd & 0x7F; in unmarshal()
75 let byte_2nd: u8 = (self.marker << 7) | self.payload_type; in marshal() localVariable
76 writer.write_u8(byte_2nd)?; in marshal()