| 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 |
| (...skipping 468 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 479 | 479 |
| 480 static const uint32_t kStartBitrateBps = 60000; | 480 static const uint32_t kStartBitrateBps = 60000; |
| 481 | 481 |
| 482 // Disabled: https://bugs.chromium.org/p/webrtc/issues/detail?id=5576 | 482 // Disabled: https://bugs.chromium.org/p/webrtc/issues/detail?id=5576 |
| 483 TEST_F(RampUpTest, DISABLED_UpDownUpOneStream) { | 483 TEST_F(RampUpTest, DISABLED_UpDownUpOneStream) { |
| 484 RampUpDownUpTester test(1, 0, kStartBitrateBps, RtpExtension::kAbsSendTimeUri, | 484 RampUpDownUpTester test(1, 0, kStartBitrateBps, RtpExtension::kAbsSendTimeUri, |
| 485 false, false); | 485 false, false); |
| 486 RunBaseTest(&test); | 486 RunBaseTest(&test); |
| 487 } | 487 } |
| 488 | 488 |
| 489 TEST_F(RampUpTest, UpDownUpThreeStreams) { | 489 TEST_F(RampUpTest, DISABLED_UpDownUpThreeStreams) { |
| 490 RampUpDownUpTester test(3, 0, kStartBitrateBps, RtpExtension::kAbsSendTimeUri, | 490 RampUpDownUpTester test(3, 0, kStartBitrateBps, RtpExtension::kAbsSendTimeUri, |
| 491 false, false); | 491 false, false); |
| 492 RunBaseTest(&test); | 492 RunBaseTest(&test); |
| 493 } | 493 } |
| 494 | 494 |
| 495 // Disabled: https://bugs.chromium.org/p/webrtc/issues/detail?id=5576 | 495 // Disabled: https://bugs.chromium.org/p/webrtc/issues/detail?id=5576 |
| 496 TEST_F(RampUpTest, DISABLED_UpDownUpOneStreamRtx) { | 496 TEST_F(RampUpTest, DISABLED_UpDownUpOneStreamRtx) { |
| 497 RampUpDownUpTester test(1, 0, kStartBitrateBps, RtpExtension::kAbsSendTimeUri, | 497 RampUpDownUpTester test(1, 0, kStartBitrateBps, RtpExtension::kAbsSendTimeUri, |
| 498 true, false); | 498 true, false); |
| 499 RunBaseTest(&test); | 499 RunBaseTest(&test); |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 596 true); | 596 true); |
| 597 RunBaseTest(&test); | 597 RunBaseTest(&test); |
| 598 } | 598 } |
| 599 | 599 |
| 600 TEST_F(RampUpTest, TransportSequenceNumberSingleStreamWithHighStartBitrate) { | 600 TEST_F(RampUpTest, TransportSequenceNumberSingleStreamWithHighStartBitrate) { |
| 601 RampUpTester test(1, 0, 0.9 * kSingleStreamTargetBps, | 601 RampUpTester test(1, 0, 0.9 * kSingleStreamTargetBps, |
| 602 RtpExtension::kTransportSequenceNumberUri, false, false); | 602 RtpExtension::kTransportSequenceNumberUri, false, false); |
| 603 RunBaseTest(&test); | 603 RunBaseTest(&test); |
| 604 } | 604 } |
| 605 } // namespace webrtc | 605 } // namespace webrtc |
| OLD | NEW |