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

Side by Side Diff: webrtc/modules/remote_bitrate_estimator/test/bwe_test.h

Issue 1345433002: Add RTC_ prefix to contructormagic macros. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Formatting fix. Created 5 years, 3 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
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2013 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 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
136 Packets* out); 136 Packets* out);
137 void GiveFeedbackToAffectedSenders(PacketReceiver* receiver); 137 void GiveFeedbackToAffectedSenders(PacketReceiver* receiver);
138 138
139 int64_t run_time_ms_; 139 int64_t run_time_ms_;
140 int64_t time_now_ms_; 140 int64_t time_now_ms_;
141 int64_t simulation_interval_ms_; 141 int64_t simulation_interval_ms_;
142 std::vector<Link*> links_; 142 std::vector<Link*> links_;
143 Packets packets_; 143 Packets packets_;
144 bool plot_total_available_capacity_; 144 bool plot_total_available_capacity_;
145 145
146 DISALLOW_COPY_AND_ASSIGN(BweTest); 146 RTC_DISALLOW_COPY_AND_ASSIGN(BweTest);
147 }; 147 };
148 148
149 // Default Evaluation parameters: 149 // Default Evaluation parameters:
150 // Link capacity: 4000ms; 150 // Link capacity: 4000ms;
151 // Queueing delay capacity: 300ms. 151 // Queueing delay capacity: 300ms.
152 // One-Way propagation delay: 50ms. 152 // One-Way propagation delay: 50ms.
153 // Jitter model: Truncated gaussian. 153 // Jitter model: Truncated gaussian.
154 // Maximum end-to-end jitter: 30ms = 2*standard_deviation. 154 // Maximum end-to-end jitter: 30ms = 2*standard_deviation.
155 // Bottleneck queue type: Drop tail. 155 // Bottleneck queue type: Drop tail.
156 // Path loss ratio: 0%. 156 // Path loss ratio: 0%.
(...skipping 29 matching lines...) Expand all
186 ChokeFilter choke; 186 ChokeFilter choke;
187 DelayFilter delay; 187 DelayFilter delay;
188 JitterFilter jitter; 188 JitterFilter jitter;
189 }; 189 };
190 190
191 } // namespace bwe 191 } // namespace bwe
192 } // namespace testing 192 } // namespace testing
193 } // namespace webrtc 193 } // namespace webrtc
194 194
195 #endif // WEBRTC_MODULES_REMOTE_BITRATE_ESTIMATOR_TEST_BWE_TEST_H_ 195 #endif // WEBRTC_MODULES_REMOTE_BITRATE_ESTIMATOR_TEST_BWE_TEST_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698