Home
last modified time | relevance | path

Searched refs:exp_smoothed_delay_ms_ (Results 1 – 3 of 3) sorted by relevance

/external/webrtc/webrtc/modules/remote_bitrate_estimator/test/estimators/
Dnada.cc42 exp_smoothed_delay_ms_(-1), in NadaBweReceiver()
72 exp_smoothed_delay_ms_ = ExponentialSmoothingFilter( in ReceivePacket()
73 median_filtered_delay_ms_, exp_smoothed_delay_ms_, kAlpha); in ReceivePacket()
75 if (exp_smoothed_delay_ms_ < kDelayLowThresholdMs) { in ReceivePacket()
76 est_queuing_delay_signal_ms_ = exp_smoothed_delay_ms_; in ReceivePacket()
77 } else if (exp_smoothed_delay_ms_ < kDelayMaxThresholdMs) { in ReceivePacket()
80 exp_smoothed_delay_ms_)) / in ReceivePacket()
123 return new NadaFeedback(flow_id_, now_ms * 1000, exp_smoothed_delay_ms_, in GetFeedback()
Dnada.h58 int64_t exp_smoothed_delay_ms_; // Referred as d_hat_n. variable
/external/webrtc/webrtc/modules/remote_bitrate_estimator/test/
Dpacket.h159 exp_smoothed_delay_ms_(exp_smoothed_delay_ms), in NadaFeedback()
166 int64_t exp_smoothed_delay_ms() const { return exp_smoothed_delay_ms_; } in exp_smoothed_delay_ms()
175 int64_t exp_smoothed_delay_ms_; // Referred as d_hat_n.