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 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
138 std::unique_ptr<test::TraceToStderr> trace_to_stderr_; | 138 std::unique_ptr<test::TraceToStderr> trace_to_stderr_; |
139 std::unique_ptr<test::FrameGenerator> frame_generator_; | 139 std::unique_ptr<test::FrameGenerator> frame_generator_; |
140 std::unique_ptr<VideoEncoder> video_encoder_; | 140 std::unique_ptr<VideoEncoder> video_encoder_; |
141 std::unique_ptr<VideoEncoderFactory> vp8_encoder_factory_; | 141 std::unique_ptr<VideoEncoderFactory> vp8_encoder_factory_; |
142 | 142 |
143 std::vector<std::unique_ptr<VideoEncoder>> thumbnail_encoders_; | 143 std::vector<std::unique_ptr<VideoEncoder>> thumbnail_encoders_; |
144 std::vector<VideoSendStream::Config> thumbnail_send_configs_; | 144 std::vector<VideoSendStream::Config> thumbnail_send_configs_; |
145 std::vector<VideoEncoderConfig> thumbnail_encoder_configs_; | 145 std::vector<VideoEncoderConfig> thumbnail_encoder_configs_; |
146 std::vector<VideoSendStream*> thumbnail_send_streams_; | 146 std::vector<VideoSendStream*> thumbnail_send_streams_; |
147 std::vector<VideoReceiveStream::Config> thumbnail_receive_configs_; | 147 std::vector<VideoReceiveStream::Config> thumbnail_receive_configs_; |
148 // TODO(eladalon): !!! Is it possible for this to be FlexFEC-protected? | |
stefan-webrtc
2017/07/07 09:36:24
In theory I guess it is. Don't think you have to t
eladalon
2017/07/07 14:16:25
I want the trybots to tell me if any tests were br
| |
148 std::vector<VideoReceiveStream*> thumbnail_receive_streams_; | 149 std::vector<VideoReceiveStream*> thumbnail_receive_streams_; |
149 | 150 |
150 Clock* const clock_; | 151 Clock* const clock_; |
151 | 152 |
152 int receive_logs_; | 153 int receive_logs_; |
153 int send_logs_; | 154 int send_logs_; |
154 | 155 |
155 VideoSendStream::DegradationPreference degradation_preference_ = | 156 VideoSendStream::DegradationPreference degradation_preference_ = |
156 VideoSendStream::DegradationPreference::kMaintainFramerate; | 157 VideoSendStream::DegradationPreference::kMaintainFramerate; |
157 Params params_; | 158 Params params_; |
158 }; | 159 }; |
159 | 160 |
160 } // namespace webrtc | 161 } // namespace webrtc |
161 | 162 |
162 #endif // WEBRTC_VIDEO_VIDEO_QUALITY_TEST_H_ | 163 #endif // WEBRTC_VIDEO_VIDEO_QUALITY_TEST_H_ |
OLD | NEW |