Home
last modified time | relevance | path

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

/webrtc/rtcp/src/transport_feedbacks/transport_layer_cc/
H A Dmod.rs192 let packet_status_symbol = get_nbits_from_byte(b0, 1, 2).into(); in unmarshal()
195 let run_length = ((get_nbits_from_byte(b0, 3, 5) as usize) << 8) as u16 + (b1 as u16); in unmarshal()
271 let symbol_size = get_nbits_from_byte(b0, 1, 1).into(); in unmarshal()
277 symbol_list.push(get_nbits_from_byte(b0, 2 + i, 1).into()); in unmarshal()
281 symbol_list.push(get_nbits_from_byte(b1, i, 1).into()) in unmarshal()
287 symbol_list.push(get_nbits_from_byte(b0, 2 + i * 2, 2).into()); in unmarshal()
291 symbol_list.push(get_nbits_from_byte(b1, i * 2, 2).into()); in unmarshal()
614 let typ = get_nbits_from_byte(b0, 0, 1); in unmarshal()
/webrtc/rtcp/src/
H A Dutil.rs48 pub(crate) fn get_nbits_from_byte(b: u8, begin: u16, n: u16) -> u16 { in get_nbits_from_byte() function