Home
last modified time | relevance | path

Searched refs:time_delta_ms (Results 1 – 5 of 5) sorted by relevance

/external/webrtc/modules/remote_bitrate_estimator/
Doveruse_detector.cc144 int64_t time_delta_ms = std::min(now_ms - last_update_ms_, kMaxTimeDeltaMs); in UpdateThreshold() local
145 threshold_ += k * (fabs(modified_offset) - threshold_) * time_delta_ms; in UpdateThreshold()
/external/webrtc/video/
Dencoder_overshoot_detector.cc168 int64_t time_delta_ms = time_ms - time_last_update_ms_; in LeakBits() local
170 const int64_t leaked_bits = (target_bitrate_.bps() * time_delta_ms) / 1000; in LeakBits()
/external/webrtc/modules/congestion_controller/goog_cc/
Dtrendline_estimator.cc327 int64_t time_delta_ms = std::min(now_ms - last_update_ms_, kMaxTimeDeltaMs); in UpdateThreshold() local
328 threshold_ += k * (fabs(modified_trend) - threshold_) * time_delta_ms; in UpdateThreshold()
/external/webrtc/modules/rtp_rtcp/source/
Drtp_header_extensions.h210 static size_t ValueSize(uint16_t time_delta_ms, uint8_t idx) { in ValueSize() argument
215 uint16_t time_delta_ms,
Drtp_header_extensions.cc520 uint16_t time_delta_ms, in Write() argument
524 ByteWriter<uint16_t>::WriteBigEndian(data.data() + offset, time_delta_ms); in Write()