| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2014 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 312 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 323 rtc::AsyncInvoker invoker_; | 323 rtc::AsyncInvoker invoker_; |
| 324 rtc::Thread* worker_thread_; | 324 rtc::Thread* worker_thread_; |
| 325 const std::vector<uint32_t> ssrcs_ ACCESS_ON(&thread_checker_); | 325 const std::vector<uint32_t> ssrcs_ ACCESS_ON(&thread_checker_); |
| 326 const std::vector<SsrcGroup> ssrc_groups_ ACCESS_ON(&thread_checker_); | 326 const std::vector<SsrcGroup> ssrc_groups_ ACCESS_ON(&thread_checker_); |
| 327 webrtc::Call* const call_; | 327 webrtc::Call* const call_; |
| 328 const bool enable_cpu_overuse_detection_; | 328 const bool enable_cpu_overuse_detection_; |
| 329 rtc::VideoSourceInterface<webrtc::VideoFrame>* source_ | 329 rtc::VideoSourceInterface<webrtc::VideoFrame>* source_ |
| 330 ACCESS_ON(&thread_checker_); | 330 ACCESS_ON(&thread_checker_); |
| 331 WebRtcVideoEncoderFactory* const external_encoder_factory_ | 331 WebRtcVideoEncoderFactory* const external_encoder_factory_ |
| 332 ACCESS_ON(&thread_checker_); | 332 ACCESS_ON(&thread_checker_); |
| 333 const std::unique_ptr<WebRtcVideoEncoderFactory> internal_encoder_factory_ |
| 334 ACCESS_ON(&thread_checker_); |
| 333 | 335 |
| 334 webrtc::VideoSendStream* stream_ ACCESS_ON(&thread_checker_); | 336 webrtc::VideoSendStream* stream_ ACCESS_ON(&thread_checker_); |
| 335 rtc::VideoSinkInterface<webrtc::VideoFrame>* encoder_sink_ | 337 rtc::VideoSinkInterface<webrtc::VideoFrame>* encoder_sink_ |
| 336 ACCESS_ON(&thread_checker_); | 338 ACCESS_ON(&thread_checker_); |
| 337 // Contains settings that are the same for all streams in the MediaChannel, | 339 // Contains settings that are the same for all streams in the MediaChannel, |
| 338 // such as codecs, header extensions, and the global bitrate limit for the | 340 // such as codecs, header extensions, and the global bitrate limit for the |
| 339 // entire channel. | 341 // entire channel. |
| 340 VideoSendStreamParameters parameters_ ACCESS_ON(&thread_checker_); | 342 VideoSendStreamParameters parameters_ ACCESS_ON(&thread_checker_); |
| 341 // Contains settings that are unique for each stream, such as max_bitrate. | 343 // Contains settings that are unique for each stream, such as max_bitrate. |
| 342 // Does *not* contain codecs, however. | 344 // Does *not* contain codecs, however. |
| (...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 488 // send_params/recv_params, rtp_extensions, options, etc. | 490 // send_params/recv_params, rtp_extensions, options, etc. |
| 489 VideoSendParameters send_params_; | 491 VideoSendParameters send_params_; |
| 490 VideoOptions default_send_options_; | 492 VideoOptions default_send_options_; |
| 491 VideoRecvParameters recv_params_; | 493 VideoRecvParameters recv_params_; |
| 492 int64_t last_stats_log_ms_; | 494 int64_t last_stats_log_ms_; |
| 493 }; | 495 }; |
| 494 | 496 |
| 495 } // namespace cricket | 497 } // namespace cricket |
| 496 | 498 |
| 497 #endif // WEBRTC_MEDIA_ENGINE_WEBRTCVIDEOENGINE2_H_ | 499 #endif // WEBRTC_MEDIA_ENGINE_WEBRTCVIDEOENGINE2_H_ |
| OLD | NEW |