| OLD | NEW |
| 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 |
| 11 #include "webrtc/modules/remote_bitrate_estimator/test/bwe_test.h" | 11 #include "webrtc/modules/remote_bitrate_estimator/test/bwe_test.h" |
| 12 | 12 |
| 13 #include <sstream> | 13 #include <sstream> |
| 14 | 14 |
| 15 #include "webrtc/base/common.h" | 15 #include "webrtc/base/common.h" |
| 16 #include "webrtc/base/scoped_ptr.h" | 16 #include "webrtc/base/scoped_ptr.h" |
| 17 #include "webrtc/modules/interface/module_common_types.h" | 17 #include "webrtc/modules/include/module_common_types.h" |
| 18 #include "webrtc/modules/remote_bitrate_estimator/test/bwe_test_framework.h" | 18 #include "webrtc/modules/remote_bitrate_estimator/test/bwe_test_framework.h" |
| 19 #include "webrtc/modules/remote_bitrate_estimator/test/metric_recorder.h" | 19 #include "webrtc/modules/remote_bitrate_estimator/test/metric_recorder.h" |
| 20 #include "webrtc/modules/remote_bitrate_estimator/test/packet_receiver.h" | 20 #include "webrtc/modules/remote_bitrate_estimator/test/packet_receiver.h" |
| 21 #include "webrtc/modules/remote_bitrate_estimator/test/packet_sender.h" | 21 #include "webrtc/modules/remote_bitrate_estimator/test/packet_sender.h" |
| 22 #include "webrtc/system_wrappers/include/clock.h" | 22 #include "webrtc/system_wrappers/include/clock.h" |
| 23 #include "webrtc/test/testsupport/perf_test.h" | 23 #include "webrtc/test/testsupport/perf_test.h" |
| 24 | 24 |
| 25 using std::string; | 25 using std::string; |
| 26 using std::vector; | 26 using std::vector; |
| 27 | 27 |
| (...skipping 946 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 974 tcp_starting_times_ms.push_back( | 974 tcp_starting_times_ms.push_back( |
| 975 static_cast<int64_t>(random.Exponential(1.0f / kMeanMs))); | 975 static_cast<int64_t>(random.Exponential(1.0f / kMeanMs))); |
| 976 } | 976 } |
| 977 | 977 |
| 978 return tcp_starting_times_ms; | 978 return tcp_starting_times_ms; |
| 979 } | 979 } |
| 980 | 980 |
| 981 } // namespace bwe | 981 } // namespace bwe |
| 982 } // namespace testing | 982 } // namespace testing |
| 983 } // namespace webrtc | 983 } // namespace webrtc |
| OLD | NEW |