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

  /external/webrtc/webrtc/modules/remote_bitrate_estimator/
inter_arrival.cc 92 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/
decision_logic_normal.cc 91 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/
screenshare_layers.cc 233 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/
TestAllCodecs.cc 99 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_) &&
TestStereo.cc 94 uint32_t TestPackStereo::timestamp_diff() { function in class:webrtc::TestPackStereo
788 time_stamp_diff = channel->timestamp_diff();
  /external/webrtc/webrtc/modules/rtp_rtcp/source/
receive_statistics_impl.cc 332 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/
audio_coding_module_unittest_oldapi.cc 1173 uint32_t timestamp_diff = packet->header().timestamp - last_timestamp_; local
    [all...]

Completed in 173 milliseconds