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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
59 CallStats* call_stats); | 59 CallStats* call_stats); |
60 ~VideoReceiveStream() override; | 60 ~VideoReceiveStream() override; |
61 | 61 |
62 const Config& config() const { return config_; } | 62 const Config& config() const { return config_; } |
63 | 63 |
64 void SignalNetworkState(NetworkState state); | 64 void SignalNetworkState(NetworkState state); |
65 bool DeliverRtcp(const uint8_t* packet, size_t length); | 65 bool DeliverRtcp(const uint8_t* packet, size_t length); |
66 | 66 |
67 void SetSync(Syncable* audio_syncable); | 67 void SetSync(Syncable* audio_syncable); |
68 | 68 |
| 69 // Implements SecondaryRtpSinksContainer (from webrtc::VideoReceiveStream). |
| 70 void AddSecondarySink(RtpPacketSinkInterface* sink) override; |
| 71 void RemoveSecondarySink(const RtpPacketSinkInterface* sink) override; |
| 72 |
69 // Implements webrtc::VideoReceiveStream. | 73 // Implements webrtc::VideoReceiveStream. |
70 void Start() override; | 74 void Start() override; |
71 void Stop() override; | 75 void Stop() override; |
72 | 76 |
73 webrtc::VideoReceiveStream::Stats GetStats() const override; | 77 webrtc::VideoReceiveStream::Stats GetStats() const override; |
74 | 78 |
75 // Takes ownership of the file, is responsible for closing it later. | 79 // Takes ownership of the file, is responsible for closing it later. |
76 // Calling this method will close and finalize any current log. | 80 // Calling this method will close and finalize any current log. |
77 // Giving rtc::kInvalidPlatformFileValue disables logging. | 81 // Giving rtc::kInvalidPlatformFileValue disables logging. |
78 // If a frame to be written would make the log too large the write fails and | 82 // If a frame to be written would make the log too large the write fails and |
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
137 std::unique_ptr<VCMJitterEstimator> jitter_estimator_; | 141 std::unique_ptr<VCMJitterEstimator> jitter_estimator_; |
138 std::unique_ptr<video_coding::FrameBuffer> frame_buffer_; | 142 std::unique_ptr<video_coding::FrameBuffer> frame_buffer_; |
139 | 143 |
140 std::unique_ptr<RtpStreamReceiverInterface> media_receiver_; | 144 std::unique_ptr<RtpStreamReceiverInterface> media_receiver_; |
141 std::unique_ptr<RtpStreamReceiverInterface> rtx_receiver_; | 145 std::unique_ptr<RtpStreamReceiverInterface> rtx_receiver_; |
142 }; | 146 }; |
143 } // namespace internal | 147 } // namespace internal |
144 } // namespace webrtc | 148 } // namespace webrtc |
145 | 149 |
146 #endif // WEBRTC_VIDEO_VIDEO_RECEIVE_STREAM_H_ | 150 #endif // WEBRTC_VIDEO_VIDEO_RECEIVE_STREAM_H_ |
OLD | NEW |