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

  /external/webrtc/webrtc/modules/audio_coding/neteq/
dtmf_buffer_unittest.cc 206 uint32_t timestamp_now = timestamp + duration + 100; local
207 EXPECT_TRUE(buffer.GetEvent(timestamp_now, &out_event));
215 // Now we expect to get the new event when supplying |timestamp_now|.
216 EXPECT_TRUE(buffer.GetEvent(timestamp_now, &out_event));
220 // Move |timestamp_now| to more than 560 samples after the end of the second
222 timestamp_now = timestamp + duration + 600;
224 EXPECT_TRUE(buffer.GetEvent(timestamp_now, &out_event));
226 EXPECT_FALSE(buffer.GetEvent(timestamp_now, &out_event));
  /external/webrtc/webrtc/modules/audio_coding/acm2/
initial_delay_manager_unittest.cc 263 uint32_t timestamp_now = rtp_receive_timestamp_ + kTimestampStep10Ms; local
278 manager_->LatePackets(timestamp_now, &sync_stream);
281 timestamp_now += kTimestampStep10Ms;
283 manager_->LatePackets(timestamp_now, &sync_stream);
294 timestamp_now += kTimestampStep10Ms;
342 uint32_t timestamp_now = rtp_receive_timestamp_ + kTimestampStep * (3 + local
345 manager_->LatePackets(timestamp_now, &sync_stream);
initial_delay_manager.h 66 void LatePackets(uint32_t timestamp_now, SyncStream* sync_stream);
initial_delay_manager.cc 163 uint32_t timestamp_now, SyncStream* sync_stream) {
179 int num_late_packets = (timestamp_now - last_receive_timestamp_) /

Completed in 114 milliseconds