Chromium Code Reviews| 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 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 142 std::unique_ptr<test::TraceToStderr> trace_to_stderr_; | 142 std::unique_ptr<test::TraceToStderr> trace_to_stderr_; |
| 143 std::unique_ptr<test::FrameGenerator> frame_generator_; | 143 std::unique_ptr<test::FrameGenerator> frame_generator_; |
| 144 std::unique_ptr<VideoEncoder> video_encoder_; | 144 std::unique_ptr<VideoEncoder> video_encoder_; |
| 145 std::unique_ptr<cricket::WebRtcVideoEncoderFactory> vp8_encoder_factory_; | 145 std::unique_ptr<cricket::WebRtcVideoEncoderFactory> vp8_encoder_factory_; |
| 146 | 146 |
| 147 std::vector<std::unique_ptr<VideoEncoder>> thumbnail_encoders_; | 147 std::vector<std::unique_ptr<VideoEncoder>> thumbnail_encoders_; |
| 148 std::vector<VideoSendStream::Config> thumbnail_send_configs_; | 148 std::vector<VideoSendStream::Config> thumbnail_send_configs_; |
| 149 std::vector<VideoEncoderConfig> thumbnail_encoder_configs_; | 149 std::vector<VideoEncoderConfig> thumbnail_encoder_configs_; |
| 150 std::vector<VideoSendStream*> thumbnail_send_streams_; | 150 std::vector<VideoSendStream*> thumbnail_send_streams_; |
| 151 std::vector<VideoReceiveStream::Config> thumbnail_receive_configs_; | 151 std::vector<VideoReceiveStream::Config> thumbnail_receive_configs_; |
| 152 // TODO(eladalon): !!! Is it possible for this to be FlexFEC-protected? | |
|
danilchap
2017/07/24 09:03:46
why not? May be there are no tests for now, but it
eladalon
2017/07/24 13:15:48
Since this isn't protected at the moment, I'll jus
| |
| 152 std::vector<VideoReceiveStream*> thumbnail_receive_streams_; | 153 std::vector<VideoReceiveStream*> thumbnail_receive_streams_; |
| 153 | 154 |
| 154 Clock* const clock_; | 155 Clock* const clock_; |
| 155 | 156 |
| 156 int receive_logs_; | 157 int receive_logs_; |
| 157 int send_logs_; | 158 int send_logs_; |
| 158 | 159 |
| 159 VideoSendStream::DegradationPreference degradation_preference_ = | 160 VideoSendStream::DegradationPreference degradation_preference_ = |
| 160 VideoSendStream::DegradationPreference::kMaintainFramerate; | 161 VideoSendStream::DegradationPreference::kMaintainFramerate; |
| 161 Params params_; | 162 Params params_; |
| 162 }; | 163 }; |
| 163 | 164 |
| 164 } // namespace webrtc | 165 } // namespace webrtc |
| 165 | 166 |
| 166 #endif // WEBRTC_VIDEO_VIDEO_QUALITY_TEST_H_ | 167 #endif // WEBRTC_VIDEO_VIDEO_QUALITY_TEST_H_ |
| OLD | NEW |