HomeSort by relevance Sort by last modified time
    Searched full:new_bit_index (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/webrtc/modules/rtp_rtcp/source/
forward_error_correction.cc 325 int new_bit_index = 1; local
329 if (new_bit_index == 8 * kMaskSizeLBitSet) {
338 num_fec_packets, new_bit_index);
340 new_bit_index += zeros_to_insert;
342 num_fec_packets, new_bit_index, old_bit_index);
343 ++new_bit_index;
347 if (new_bit_index % 8 != 0) {
350 int new_byte_index = row * new_mask_bytes + new_bit_index / 8;
351 new_mask[new_byte_index] <<= (7 - (new_bit_index % 8));
357 return new_bit_index;
    [all...]
forward_error_correction.h 227 // |new_bit_index|. If the current byte of |new_mask| can't fit all zeros, the
228 // byte will be filled with zeros from |new_bit_index|, but the next byte will
232 int new_bit_index);
236 // to by |new_bit_index| in |new_mask|. |old_mask_bytes| and |new_mask_bytes|
244 int num_fec_packets, int new_bit_index,

Completed in 2893 milliseconds