Searched defs:timestamp_diff (Results 1 - 7 of 7) sorted by relevance

/external/webrtc/webrtc/modules/remote_bitrate_estimator/
H A Dinter_arrival.cc92 uint32_t timestamp_diff = timestamp - local
94 return timestamp_diff < 0x80000000;
107 uint32_t timestamp_diff = timestamp - local
109 return timestamp_diff > kTimestampGroupLengthTicks;
121 uint32_t timestamp_diff = timestamp - current_timestamp_group_.timestamp; local
122 int64_t ts_delta_ms = timestamp_to_ms_coeff_ * timestamp_diff + 0.5;
/external/webrtc/webrtc/modules/audio_coding/neteq/
H A Ddecision_logic_normal.cc91 int32_t timestamp_diff = static_cast<int32_t>( local
96 int32_t excess_waiting_time_samp = -timestamp_diff - optimal_level_samp;
103 timestamp_diff += excess_waiting_time_samp;
106 if (timestamp_diff < 0 && prev_mode == kModeRfc3389Cng) {
/external/webrtc/webrtc/modules/video_coding/codecs/vp8/
H A Dscreenshare_layers.cc233 int64_t timestamp_diff = timestamp - last_sync_timestamp_; local
234 if (timestamp_diff > kMaxTimeBetweenSyncs) {
237 } else if (timestamp_diff < kMinTimeBetweenSyncs) {
/external/webrtc/webrtc/modules/audio_coding/test/
H A DTestAllCodecs.cc99 uint32_t TestPack::timestamp_diff() { function in class:webrtc::TestPack
422 uint32_t timestamp_diff; local
447 timestamp_diff = channel->timestamp_diff();
449 (static_cast<int>(timestamp_diff) != packet_size_samples_) &&
H A DTestStereo.cc94 uint32_t TestPackStereo::timestamp_diff() { function in class:webrtc::TestPackStereo
788 time_stamp_diff = channel->timestamp_diff();
/external/webrtc/webrtc/modules/rtp_rtcp/source/
H A Dreceive_statistics_impl.cc332 uint32_t timestamp_diff = header.timestamp - last_received_timestamp_; local
333 uint32_t rtp_time_stamp_diff_ms = timestamp_diff / frequency_khz;
/external/webrtc/webrtc/modules/audio_coding/acm2/
H A Daudio_coding_module_unittest_oldapi.cc1173 uint32_t timestamp_diff = packet->header().timestamp - last_timestamp_; local
1174 EXPECT_EQ(frame_size_rtp_timestamps_, timestamp_diff);

Completed in 172 milliseconds