Home
last modified time | relevance | path

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

/webrtc/rtp/src/codecs/h265/
H A Dmod.rs43 const MASK: u16 = 0b01111110 << 8; in nalu_type() constant
44 ((self.0 & MASK) >> (8 + 1)) as u8 in nalu_type()
58 ((self.0 & MASK) >> 3) as u8 in layer_id()
63 const MASK: u16 = 0b00000111; in tid() constant
64 (self.0 & MASK) as u8 in tid()
397 const MASK: u8 = 0b10000000; in s() constant
398 ((self.0 & MASK) >> 7) != 0 in s()
403 const MASK: u8 = 0b01000000; in e() constant
404 ((self.0 & MASK) >> 6) != 0 in e()
409 const MASK: u8 = 0b00111111; in fu_type() constant
[all …]