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

  /external/chromium_org/third_party/webrtc/modules/audio_coding/main/acm2/
initial_delay_manager.h 66 void LatePackets(uint32_t timestamp_now, SyncStream* sync_stream);
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;
343 uint32_t timestamp_now = rtp_receive_timestamp_ + kTimestampStep * (3 + local
346 manager_->LatePackets(timestamp_now, &sync_stream);
initial_delay_manager.cc 163 uint32_t timestamp_now, SyncStream* sync_stream) {
179 int num_late_packets = (timestamp_now - last_receive_timestamp_) /
acm_receiver.cc 369 uint32_t timestamp_now = NowInTimestamp(current_sample_rate_hz_); local
370 initial_delay_manager_->LatePackets(timestamp_now,
  /external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
dtmf_buffer_unittest.cc 212 uint32_t timestamp_now = timestamp + duration + 100; local
213 EXPECT_TRUE(buffer.GetEvent(timestamp_now, &out_event));
221 // Now we expect to get the new event when supplying |timestamp_now|.
222 EXPECT_TRUE(buffer.GetEvent(timestamp_now, &out_event));
226 // Move |timestamp_now| to more than 560 samples after the end of the second
228 timestamp_now = timestamp + duration + 600;
230 EXPECT_TRUE(buffer.GetEvent(timestamp_now, &out_event));
232 EXPECT_FALSE(buffer.GetEvent(timestamp_now, &out_event));

Completed in 58 milliseconds