| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2013 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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 const std::map<uint32_t, RtpState>& suspended_ssrcs); | 64 const std::map<uint32_t, RtpState>& suspended_ssrcs); |
| 65 | 65 |
| 66 ~VideoSendStream() override; | 66 ~VideoSendStream() override; |
| 67 | 67 |
| 68 void SignalNetworkState(NetworkState state); | 68 void SignalNetworkState(NetworkState state); |
| 69 bool DeliverRtcp(const uint8_t* packet, size_t length); | 69 bool DeliverRtcp(const uint8_t* packet, size_t length); |
| 70 | 70 |
| 71 // webrtc::VideoSendStream implementation. | 71 // webrtc::VideoSendStream implementation. |
| 72 void Start() override; | 72 void Start() override; |
| 73 void Stop() override; | 73 void Stop() override; |
| 74 | 74 VideoCaptureInput* Input() override; |
| 75 void SetSource( | |
| 76 rtc::VideoSourceInterface<webrtc::VideoFrame>* source) override; | |
| 77 | |
| 78 void ReconfigureVideoEncoder(VideoEncoderConfig) override; | 75 void ReconfigureVideoEncoder(VideoEncoderConfig) override; |
| 79 Stats GetStats() override; | 76 Stats GetStats() override; |
| 80 | 77 |
| 81 typedef std::map<uint32_t, RtpState> RtpStateMap; | 78 typedef std::map<uint32_t, RtpState> RtpStateMap; |
| 82 RtpStateMap StopPermanentlyAndGetRtpStates(); | 79 RtpStateMap StopPermanentlyAndGetRtpStates(); |
| 83 | 80 |
| 84 private: | 81 private: |
| 85 class ConstructionTask; | 82 class ConstructionTask; |
| 86 class DestructAndGetRtpStateTask; | 83 class DestructAndGetRtpStateTask; |
| 87 | 84 |
| 88 rtc::ThreadChecker thread_checker_; | 85 rtc::ThreadChecker thread_checker_; |
| 89 rtc::TaskQueue* const worker_queue_; | 86 rtc::TaskQueue* const worker_queue_; |
| 90 rtc::Event thread_sync_event_; | 87 rtc::Event thread_sync_event_; |
| 91 | 88 |
| 92 SendStatisticsProxy stats_proxy_; | 89 SendStatisticsProxy stats_proxy_; |
| 93 const VideoSendStream::Config config_; | 90 const VideoSendStream::Config config_; |
| 94 std::unique_ptr<VideoSendStreamImpl> send_stream_; | 91 std::unique_ptr<VideoSendStreamImpl> send_stream_; |
| 95 std::unique_ptr<ViEEncoder> vie_encoder_; | 92 std::unique_ptr<ViEEncoder> vie_encoder_; |
| 96 }; | 93 }; |
| 97 | 94 |
| 98 } // namespace internal | 95 } // namespace internal |
| 99 } // namespace webrtc | 96 } // namespace webrtc |
| 100 | 97 |
| 101 #endif // WEBRTC_VIDEO_VIDEO_SEND_STREAM_H_ | 98 #endif // WEBRTC_VIDEO_VIDEO_SEND_STREAM_H_ |
| OLD | NEW |