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

Side by Side Diff: webrtc/common_types.h

Issue 1151603008: Make the BWE threshold adaptive. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Fix string length issue. 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 unified diff | Download patch
« no previous file with comments | « no previous file | webrtc/modules/pacing/paced_sender.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source 5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
(...skipping 745 matching lines...) Expand 10 before | Expand all | Expand 10 after
756 : initial_slope(8.0/512.0), 756 : initial_slope(8.0/512.0),
757 initial_offset(0), 757 initial_offset(0),
758 initial_e(), 758 initial_e(),
759 initial_process_noise(), 759 initial_process_noise(),
760 initial_avg_noise(0.0), 760 initial_avg_noise(0.0),
761 initial_var_noise(50), 761 initial_var_noise(50),
762 initial_threshold(25.0) { 762 initial_threshold(25.0) {
763 initial_e[0][0] = 100; 763 initial_e[0][0] = 100;
764 initial_e[1][1] = 1e-1; 764 initial_e[1][1] = 1e-1;
765 initial_e[0][1] = initial_e[1][0] = 0; 765 initial_e[0][1] = initial_e[1][0] = 0;
766 initial_process_noise[0] = 1e-10; 766 initial_process_noise[0] = 1e-13;
767 initial_process_noise[1] = 1e-2; 767 initial_process_noise[1] = 1e-3;
768 } 768 }
769 double initial_slope; 769 double initial_slope;
770 double initial_offset; 770 double initial_offset;
771 double initial_e[2][2]; 771 double initial_e[2][2];
772 double initial_process_noise[2]; 772 double initial_process_noise[2];
773 double initial_avg_noise; 773 double initial_avg_noise;
774 double initial_var_noise; 774 double initial_var_noise;
775 double initial_threshold; 775 double initial_threshold;
776 }; 776 };
777 777
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
899 class StreamDataCountersCallback { 899 class StreamDataCountersCallback {
900 public: 900 public:
901 virtual ~StreamDataCountersCallback() {} 901 virtual ~StreamDataCountersCallback() {}
902 902
903 virtual void DataCountersUpdated(const StreamDataCounters& counters, 903 virtual void DataCountersUpdated(const StreamDataCounters& counters,
904 uint32_t ssrc) = 0; 904 uint32_t ssrc) = 0;
905 }; 905 };
906 } // namespace webrtc 906 } // namespace webrtc
907 907
908 #endif // WEBRTC_COMMON_TYPES_H_ 908 #endif // WEBRTC_COMMON_TYPES_H_
OLDNEW
« no previous file with comments | « no previous file | webrtc/modules/pacing/paced_sender.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698