OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2015 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 #ifndef WEBRTC_VIDEO_VIDEO_QUALITY_TEST_H_ | 10 #ifndef WEBRTC_VIDEO_VIDEO_QUALITY_TEST_H_ |
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
102 // Helper methods for setting up the call. | 102 // Helper methods for setting up the call. |
103 void CreateCapturer(VideoCaptureInput* input); | 103 void CreateCapturer(VideoCaptureInput* input); |
104 void SetupCommon(Transport* send_transport, Transport* recv_transport); | 104 void SetupCommon(Transport* send_transport, Transport* recv_transport); |
105 void SetupScreenshare(); | 105 void SetupScreenshare(); |
106 | 106 |
107 // We need a more general capturer than the FrameGeneratorCapturer. | 107 // We need a more general capturer than the FrameGeneratorCapturer. |
108 std::unique_ptr<test::VideoCapturer> capturer_; | 108 std::unique_ptr<test::VideoCapturer> capturer_; |
109 std::unique_ptr<test::TraceToStderr> trace_to_stderr_; | 109 std::unique_ptr<test::TraceToStderr> trace_to_stderr_; |
110 std::unique_ptr<test::FrameGenerator> frame_generator_; | 110 std::unique_ptr<test::FrameGenerator> frame_generator_; |
111 std::unique_ptr<VideoEncoder> encoder_; | 111 std::unique_ptr<VideoEncoder> encoder_; |
112 VideoCodecUnion codec_settings_; | |
113 Clock* const clock_; | 112 Clock* const clock_; |
114 | 113 |
115 Params params_; | 114 Params params_; |
116 }; | 115 }; |
117 | 116 |
118 } // namespace webrtc | 117 } // namespace webrtc |
119 | 118 |
120 #endif // WEBRTC_VIDEO_VIDEO_QUALITY_TEST_H_ | 119 #endif // WEBRTC_VIDEO_VIDEO_QUALITY_TEST_H_ |
OLD | NEW |