OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2008 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2008 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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
45 } | 45 } |
46 | 46 |
47 void set_expected_compensation(bool compensation) { | 47 void set_expected_compensation(bool compensation) { |
48 expects_rotation_applied_ = compensation; | 48 expects_rotation_applied_ = compensation; |
49 } | 49 } |
50 | 50 |
51 protected: | 51 protected: |
52 void OnVideoFrame(cricket::VideoCapturer*, const cricket::VideoFrame* frame) { | 52 void OnVideoFrame(cricket::VideoCapturer*, const cricket::VideoFrame* frame) { |
53 ++video_frames_received_; | 53 ++video_frames_received_; |
54 if (expects_rotation_applied_) { | 54 if (expects_rotation_applied_) { |
55 EXPECT_EQ(webrtc::kVideoRotation_0, frame->GetRotation()); | 55 EXPECT_EQ(webrtc::kVideoRotation_0, frame->GetVideoRotation()); |
56 } else { | 56 } else { |
57 EXPECT_EQ(capturer_.GetRotation(), frame->GetRotation()); | 57 EXPECT_EQ(capturer_.GetRotation(), frame->GetVideoRotation()); |
58 } | 58 } |
59 renderer_.RenderFrame(frame); | 59 renderer_.RenderFrame(frame); |
60 } | 60 } |
61 void OnStateChange(cricket::VideoCapturer*, | 61 void OnStateChange(cricket::VideoCapturer*, |
62 cricket::CaptureState capture_state) { | 62 cricket::CaptureState capture_state) { |
63 capture_state_ = capture_state; | 63 capture_state_ = capture_state; |
64 ++num_state_changes_; | 64 ++num_state_changes_; |
65 } | 65 } |
66 cricket::CaptureState capture_state() { return capture_state_; } | 66 cricket::CaptureState capture_state() { return capture_state_; } |
67 int num_state_changes() { return num_state_changes_; } | 67 int num_state_changes() { return num_state_changes_; } |
(...skipping 723 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
791 capturer_.set_enable_camera_list(true); | 791 capturer_.set_enable_camera_list(true); |
792 capturer_.ConstrainSupportedFormats(vga_format); | 792 capturer_.ConstrainSupportedFormats(vga_format); |
793 EXPECT_EQ(2u, capturer_.GetSupportedFormats()->size()); | 793 EXPECT_EQ(2u, capturer_.GetSupportedFormats()->size()); |
794 // To make sure it's not just the camera list being broken, add in VGA and | 794 // To make sure it's not just the camera list being broken, add in VGA and |
795 // try again. This time, only the VGA format should be there. | 795 // try again. This time, only the VGA format should be there. |
796 supported_formats.push_back(vga_format); | 796 supported_formats.push_back(vga_format); |
797 capturer_.ResetSupportedFormats(supported_formats); | 797 capturer_.ResetSupportedFormats(supported_formats); |
798 ASSERT_EQ(1u, capturer_.GetSupportedFormats()->size()); | 798 ASSERT_EQ(1u, capturer_.GetSupportedFormats()->size()); |
799 EXPECT_EQ(vga_format.height, capturer_.GetSupportedFormats()->at(0).height); | 799 EXPECT_EQ(vga_format.height, capturer_.GetSupportedFormats()->at(0).height); |
800 } | 800 } |
OLD | NEW |