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

  /external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
delay_manager.cc 107 int iat_packets = packet_iat_count_ms_ / packet_len_ms; local
118 iat_packets -= static_cast<uint16_t>(sequence_number - last_seq_no_ - 1);
119 iat_packets = std::max(iat_packets, 0);
121 iat_packets += static_cast<uint16_t>(last_seq_no_ + 1 - sequence_number);
126 iat_packets = std::min(iat_packets, max_iat);
127 UpdateHistogram(iat_packets);
129 target_level_ = CalculateTargetLevel(iat_packets);
147 // accurate than |iat_packets|
    [all...]
delay_peak_detector_unittest.cc 65 int iat_packets = (arrival_times_ms[next] - arrival_times_ms[next - 1]) / local
69 EXPECT_FALSE(detector.Update(iat_packets, kTargetBufferLevel));
71 EXPECT_TRUE(detector.Update(iat_packets, kTargetBufferLevel));
111 int iat_packets = (arrival_times_ms[next] - arrival_times_ms[next - 1]) / local
114 EXPECT_FALSE(detector.Update(iat_packets, kTargetBufferLevel));

Completed in 406 milliseconds