HomeSort by relevance Sort by last modified time
    Searched refs:kBlockLength (Results 1 - 5 of 5) sorted by null

  /external/webrtc/webrtc/modules/rtp_rtcp/source/rtcp_packet/
rrtr.h 24 static const uint16_t kBlockLength = 2;
25 static const size_t kLength = 4 * (kBlockLength + 1); // 12
voip_metric.h 24 static const uint16_t kBlockLength = 8;
25 static const size_t kLength = 4 * (kBlockLength + 1); // 36
rrtr.cc 33 RTC_DCHECK(ByteReader<uint16_t>::ReadBigEndian(&buffer[2]) == kBlockLength);
43 ByteWriter<uint16_t>::WriteBigEndian(&buffer[2], kBlockLength);
voip_metric.cc 48 RTC_DCHECK(ByteReader<uint16_t>::ReadBigEndian(&buffer[2]) == kBlockLength);
79 ByteWriter<uint16_t>::WriteBigEndian(&buffer[2], kBlockLength);
  /external/webrtc/webrtc/common_audio/
lapped_transform_unittest.cc 95 const size_t kBlockLength = 64;
100 float window[kBlockLength];
101 std::fill(window, &window[kBlockLength], 1.0f);
104 kBlockLength, kShiftAmount, &noop);
127 ASSERT_EQ(kChunkLength / kBlockLength, noop.block_num());
132 const size_t kBlockLength = 64;
137 float window[kBlockLength];
138 std::fill(window, &window[kBlockLength], std::sqrt(0.5f));
140 LappedTransform trans(1, 1, kChunkLength, window, kBlockLength, kShiftAmount,
154 (i < kBlockLength - kShiftAmount) ? 0.0f : 2.0f
    [all...]

Completed in 87 milliseconds