Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(206)

Unified Diff: webrtc/common_types.h

Issue 1231033002: Revert the process noise co-variance of the bitrate over-use estimator to its value prior to r9545. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Comment addressed. Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | webrtc/modules/remote_bitrate_estimator/overuse_detector_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/common_types.h
diff --git a/webrtc/common_types.h b/webrtc/common_types.h
index 1156bbcd77b8a7a34cc5203cdcfe439b6a5dd92d..bda9c7ec50475a1ea4542d3a452823e14655030b 100644
--- a/webrtc/common_types.h
+++ b/webrtc/common_types.h
@@ -758,13 +758,12 @@ struct OverUseDetectorOptions {
initial_e(),
initial_process_noise(),
initial_avg_noise(0.0),
- initial_var_noise(50),
- initial_threshold(25.0) {
+ initial_var_noise(50) {
initial_e[0][0] = 100;
initial_e[1][1] = 1e-1;
initial_e[0][1] = initial_e[1][0] = 0;
initial_process_noise[0] = 1e-13;
- initial_process_noise[1] = 1e-3;
+ initial_process_noise[1] = 1e-2;
}
double initial_slope;
double initial_offset;
@@ -772,7 +771,6 @@ struct OverUseDetectorOptions {
double initial_process_noise[2];
double initial_avg_noise;
double initial_var_noise;
- double initial_threshold;
};
// This structure will have the information about when packet is actually
« no previous file with comments | « no previous file | webrtc/modules/remote_bitrate_estimator/overuse_detector_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698