| 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 #include <algorithm> // max | 10 #include <algorithm> // max |
| (...skipping 1117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1128 std::unique_ptr<RtpRtcp> rtp_rtcp_; | 1128 std::unique_ptr<RtpRtcp> rtp_rtcp_; |
| 1129 std::unique_ptr<internal::TransportAdapter> feedback_transport_; | 1129 std::unique_ptr<internal::TransportAdapter> feedback_transport_; |
| 1130 RateLimiter retranmission_rate_limiter_; | 1130 RateLimiter retranmission_rate_limiter_; |
| 1131 VideoSendStream* stream_; | 1131 VideoSendStream* stream_; |
| 1132 bool bitrate_capped_; | 1132 bool bitrate_capped_; |
| 1133 } test; | 1133 } test; |
| 1134 | 1134 |
| 1135 RunBaseTest(&test); | 1135 RunBaseTest(&test); |
| 1136 } | 1136 } |
| 1137 | 1137 |
| 1138 TEST_F(VideoSendStreamTest, ChangingNetworkRoute) { | 1138 TEST_F(VideoSendStreamTest, DISABLED_ChangingNetworkRoute) { |
| 1139 class ChangingNetworkRouteTest : public test::EndToEndTest { | 1139 class ChangingNetworkRouteTest : public test::EndToEndTest { |
| 1140 public: | 1140 public: |
| 1141 const int kStartBitrateBps = 300000; | 1141 const int kStartBitrateBps = 300000; |
| 1142 const int kNewMaxBitrateBps = 1234567; | 1142 const int kNewMaxBitrateBps = 1234567; |
| 1143 | 1143 |
| 1144 ChangingNetworkRouteTest() | 1144 ChangingNetworkRouteTest() |
| 1145 : EndToEndTest(test::CallTest::kDefaultTimeoutMs), | 1145 : EndToEndTest(test::CallTest::kDefaultTimeoutMs), |
| 1146 call_(nullptr) {} | 1146 call_(nullptr) {} |
| 1147 | 1147 |
| 1148 void OnCallsCreated(Call* sender_call, Call* receiver_call) override { | 1148 void OnCallsCreated(Call* sender_call, Call* receiver_call) override { |
| (...skipping 1421 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2570 observation_complete_.Set(); | 2570 observation_complete_.Set(); |
| 2571 } | 2571 } |
| 2572 } | 2572 } |
| 2573 } test; | 2573 } test; |
| 2574 | 2574 |
| 2575 RunBaseTest(&test); | 2575 RunBaseTest(&test); |
| 2576 } | 2576 } |
| 2577 #endif // !defined(RTC_DISABLE_VP9) | 2577 #endif // !defined(RTC_DISABLE_VP9) |
| 2578 | 2578 |
| 2579 } // namespace webrtc | 2579 } // namespace webrtc |
| OLD | NEW |