OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2004 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2004 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 829 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
840 | 840 |
841 WEBRTC_BASE_TEST(SetSendSsrc); | 841 WEBRTC_BASE_TEST(SetSendSsrc); |
842 WEBRTC_BASE_TEST(SetSendSsrcAfterSetCodecs); | 842 WEBRTC_BASE_TEST(SetSendSsrcAfterSetCodecs); |
843 | 843 |
844 WEBRTC_BASE_TEST(SetSink); | 844 WEBRTC_BASE_TEST(SetSink); |
845 | 845 |
846 WEBRTC_BASE_TEST(AddRemoveSendStreams); | 846 WEBRTC_BASE_TEST(AddRemoveSendStreams); |
847 | 847 |
848 WEBRTC_BASE_TEST(SimulateConference); | 848 WEBRTC_BASE_TEST(SimulateConference); |
849 | 849 |
850 WEBRTC_BASE_TEST(AddRemoveCapturer); | 850 WEBRTC_DISABLED_BASE_TEST(AddRemoveCapturer); |
851 | 851 |
852 WEBRTC_BASE_TEST(RemoveCapturerWithoutAdd); | 852 WEBRTC_BASE_TEST(RemoveCapturerWithoutAdd); |
853 | 853 |
854 WEBRTC_BASE_TEST(AddRemoveCapturerMultipleSources); | 854 WEBRTC_BASE_TEST(AddRemoveCapturerMultipleSources); |
855 | 855 |
856 // TODO(pbos): Figure out why this fails so often. | 856 // TODO(pbos): Figure out why this fails so often. |
857 WEBRTC_DISABLED_BASE_TEST(HighAspectHighHeightCapturer); | 857 WEBRTC_DISABLED_BASE_TEST(HighAspectHighHeightCapturer); |
858 | 858 |
859 WEBRTC_BASE_TEST(RejectEmptyStreamParams); | 859 WEBRTC_BASE_TEST(RejectEmptyStreamParams); |
860 | 860 |
(...skipping 2893 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3754 } | 3754 } |
3755 | 3755 |
3756 // Test that we normalize send codec format size in simulcast. | 3756 // Test that we normalize send codec format size in simulcast. |
3757 TEST_F(WebRtcVideoChannel2SimulcastTest, SetSendCodecsWithOddSizeInSimulcast) { | 3757 TEST_F(WebRtcVideoChannel2SimulcastTest, SetSendCodecsWithOddSizeInSimulcast) { |
3758 cricket::VideoCodec codec(kVp8Codec270p); | 3758 cricket::VideoCodec codec(kVp8Codec270p); |
3759 codec.width += 1; | 3759 codec.width += 1; |
3760 codec.height += 1; | 3760 codec.height += 1; |
3761 VerifySimulcastSettings(codec, 2, 2); | 3761 VerifySimulcastSettings(codec, 2, 2); |
3762 } | 3762 } |
3763 } // namespace cricket | 3763 } // namespace cricket |
OLD | NEW |