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

  /external/chromium_org/third_party/webrtc/modules/rtp_rtcp/source/
bitrate.cc 54 int64_t diff_ms = now - time_last_rate_update_; local
56 if (diff_ms > 10000) { // 10 seconds.
65 bits_since_last_rate_update) / (1000 + diff_ms);
80 int64_t diff_ms = now - time_last_rate_update_; local
82 if (diff_ms < 100) {
86 if (diff_ms > 10000) { // 10 seconds.
93 packet_rate_array_[bitrate_next_idx_] = (packet_count_ * 1000) / diff_ms;
94 bitrate_array_[bitrate_next_idx_] = 8 * ((bytes_count_ * 1000) / diff_ms);
95 bitrate_diff_ms_[bitrate_next_idx_] = diff_ms;
rtp_sender.cc 833 int64_t diff_ms = now_ms - capture_time_ms; local
835 diff_ms);
    [all...]
  /external/chromium_org/third_party/webrtc/video_engine/
stream_synchronization.cc 116 int diff_ms = avg_diff_ms_ / 2; local
117 diff_ms = std::min(diff_ms, kMaxChangeMs);
118 diff_ms = std::max(diff_ms, -kMaxChangeMs);
123 if (diff_ms > 0) {
129 channel_delay_->extra_video_delay_ms -= diff_ms;
133 channel_delay_->extra_audio_delay_ms += diff_ms;
136 } else { // if (diff_ms > 0)
142 // Note: diff_ms is negative; add the negative difference
    [all...]
overuse_frame_detector.cc 486 int64_t diff_ms = time - last_encode_sample_ms_; local
487 encode_time_->AddEncodeSample(encode_time_ms, diff_ms);
488 encode_usage_->AddEncodeSample(encode_time_ms, diff_ms);
503 int64_t diff_ms = now - next_process_time_ + kProcessIntervalMs;
508 capture_queue_delay_->CalculateDelayChange(diff_ms);
  /external/chromium_org/content/browser/download/
save_package.cc 957 int64 diff_ms = diff.InMilliseconds(); local
    [all...]

Completed in 478 milliseconds