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