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

  /external/chromium_org/third_party/webrtc/base/
bandwidthsmoother.cc 25 bandwidth_estimation_(initial_bandwidth_guess),
50 if (mean_bandwidth < bandwidth_estimation_) {
52 bandwidth_estimation_ = mean_bandwidth;
56 const int old_bandwidth_estimation = bandwidth_estimation_;
57 const double increase_threshold_d = percent_increase_ * bandwidth_estimation_;
67 // percent_increase_ * bandwidth_estimation_ for at least
72 // Bandwidth_estimation_ must be zero. Assume a jump from zero to a
74 bandwidth_estimation_ = mean_bandwidth;
76 bandwidth_estimation_ = increase_threshold;
81 return old_bandwidth_estimation != bandwidth_estimation_;
    [all...]
bandwidthsmoother.h 45 return bandwidth_estimation_;
52 int bandwidth_estimation_; member in class:rtc::BandwidthSmoother
  /external/chromium_org/third_party/webrtc/modules/bitrate_controller/
bitrate_controller_impl.cc 90 bandwidth_estimation_(),
154 bandwidth_estimation_.CurrentEstimate(&current_estimate, &loss, &rtt);
155 bandwidth_estimation_.SetSendBitrate(std::max(sum_start_bitrate,
169 bandwidth_estimation_.SetSendBitrate(start_bitrate);
193 bandwidth_estimation_.SetMinMaxBitrate(sum_min_bitrate,
222 bandwidth_estimation_.UpdateReceiverEstimate(bitrate);
239 bandwidth_estimation_.UpdateEstimate(clock_->TimeInMilliseconds());
252 bandwidth_estimation_.UpdateReceiverBlock(
261 bandwidth_estimation_.CurrentEstimate(&bitrate, &fraction_loss, &rtt);
350 bandwidth_estimation_.SetSendBitrate(sum_min_bitrates)
    [all...]
bitrate_controller_impl.h 119 SendSideBandwidthEstimation bandwidth_estimation_ GUARDED_BY(*critsect_);

Completed in 1117 milliseconds