Searched refs:timestamp_now (Results 1 - 5 of 5) sorted by relevance

/external/chromium_org/third_party/webrtc/modules/audio_coding/main/acm2/
H A Dinitial_delay_manager.h66 void LatePackets(uint32_t timestamp_now, SyncStream* sync_stream);
H A Dinitial_delay_manager_unittest.cc263 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);
H A Dinitial_delay_manager.cc163 uint32_t timestamp_now, SyncStream* sync_stream) {
179 int num_late_packets = (timestamp_now - last_receive_timestamp_) /
162 LatePackets( uint32_t timestamp_now, SyncStream* sync_stream) argument
H A Dacm_receiver.cc358 uint32_t timestamp_now = NowInTimestamp(current_sample_rate_hz_); local
359 initial_delay_manager_->LatePackets(timestamp_now,
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
H A Ddtmf_buffer_unittest.cc212 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 106 milliseconds