OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2012 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 28 matching lines...) Expand all Loading... |
39 class PacedSender; | 39 class PacedSender; |
40 class PacketRouter; | 40 class PacketRouter; |
41 class PayloadRouter; | 41 class PayloadRouter; |
42 class ProcessThread; | 42 class ProcessThread; |
43 class ReceiveStatisticsProxy; | 43 class ReceiveStatisticsProxy; |
44 class ReportBlockStats; | 44 class ReportBlockStats; |
45 class RtcpRttStats; | 45 class RtcpRttStats; |
46 class ViEChannelProtectionCallback; | 46 class ViEChannelProtectionCallback; |
47 class ViERTPObserver; | 47 class ViERTPObserver; |
48 class VideoCodingModule; | 48 class VideoCodingModule; |
49 class VideoDecoder; | |
50 class VideoRenderCallback; | 49 class VideoRenderCallback; |
51 class VoEVideoSync; | 50 class VoEVideoSync; |
52 | 51 |
53 enum StreamType { | 52 enum StreamType { |
54 kViEStreamTypeNormal = 0, // Normal media stream | 53 kViEStreamTypeNormal = 0, // Normal media stream |
55 kViEStreamTypeRtx = 1 // Retransmission media stream | 54 kViEStreamTypeRtx = 1 // Retransmission media stream |
56 }; | 55 }; |
57 | 56 |
58 class ViEChannel : public VCMFrameTypeCallback, | 57 class ViEChannel : public VCMFrameTypeCallback, |
59 public VCMReceiveCallback, | 58 public VCMReceiveCallback, |
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
156 int32_t OnInitializeDecoder(const int8_t payload_type, | 155 int32_t OnInitializeDecoder(const int8_t payload_type, |
157 const char payload_name[RTP_PAYLOAD_NAME_SIZE], | 156 const char payload_name[RTP_PAYLOAD_NAME_SIZE], |
158 const int frequency, | 157 const int frequency, |
159 const size_t channels, | 158 const size_t channels, |
160 const uint32_t rate) override; | 159 const uint32_t rate) override; |
161 void OnIncomingSSRCChanged(const uint32_t ssrc) override; | 160 void OnIncomingSSRCChanged(const uint32_t ssrc) override; |
162 void OnIncomingCSRCChanged(const uint32_t CSRC, const bool added) override; | 161 void OnIncomingCSRCChanged(const uint32_t CSRC, const bool added) override; |
163 | 162 |
164 int32_t StartSend(); | 163 int32_t StartSend(); |
165 int32_t StopSend(); | 164 int32_t StopSend(); |
166 bool Sending(); | |
167 void StartReceive(); | |
168 void StopReceive(); | |
169 | 165 |
170 // Sets the maximum transfer unit size for the network link, i.e. including | 166 // Sets the maximum transfer unit size for the network link, i.e. including |
171 // IP, UDP and RTP headers. | 167 // IP, UDP and RTP headers. |
172 int32_t SetMTU(uint16_t mtu); | 168 int32_t SetMTU(uint16_t mtu); |
173 | 169 |
174 // Gets the modules used by the channel. | 170 // Gets the modules used by the channel. |
175 RtpRtcp* rtp_rtcp(); | 171 RtpRtcp* rtp_rtcp(); |
176 ViEReceiver* vie_receiver(); | 172 ViEReceiver* vie_receiver(); |
177 VCMProtectionCallback* vcm_protection_callback(); | 173 VCMProtectionCallback* vcm_protection_callback(); |
178 | 174 |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
222 void RegisterPreRenderCallback(I420FrameCallback* pre_render_callback); | 218 void RegisterPreRenderCallback(I420FrameCallback* pre_render_callback); |
223 | 219 |
224 void RegisterSendFrameCountObserver(FrameCountObserver* observer); | 220 void RegisterSendFrameCountObserver(FrameCountObserver* observer); |
225 void RegisterRtcpPacketTypeCounterObserver( | 221 void RegisterRtcpPacketTypeCounterObserver( |
226 RtcpPacketTypeCounterObserver* observer); | 222 RtcpPacketTypeCounterObserver* observer); |
227 void RegisterReceiveStatisticsProxy( | 223 void RegisterReceiveStatisticsProxy( |
228 ReceiveStatisticsProxy* receive_statistics_proxy); | 224 ReceiveStatisticsProxy* receive_statistics_proxy); |
229 void SetIncomingVideoStream(IncomingVideoStream* incoming_video_stream); | 225 void SetIncomingVideoStream(IncomingVideoStream* incoming_video_stream); |
230 | 226 |
231 protected: | 227 protected: |
232 static bool ChannelDecodeThreadFunction(void* obj); | |
233 bool ChannelDecodeProcess(); | |
234 | |
235 void OnRttUpdate(int64_t avg_rtt_ms, int64_t max_rtt_ms); | 228 void OnRttUpdate(int64_t avg_rtt_ms, int64_t max_rtt_ms); |
236 | 229 |
237 int ProtectionRequest(const FecProtectionParams* delta_fec_params, | 230 int ProtectionRequest(const FecProtectionParams* delta_fec_params, |
238 const FecProtectionParams* key_fec_params, | 231 const FecProtectionParams* key_fec_params, |
239 uint32_t* sent_video_rate_bps, | 232 uint32_t* sent_video_rate_bps, |
240 uint32_t* sent_nack_rate_bps, | 233 uint32_t* sent_nack_rate_bps, |
241 uint32_t* sent_fec_rate_bps); | 234 uint32_t* sent_fec_rate_bps); |
242 | 235 |
243 private: | 236 private: |
244 static std::vector<RtpRtcp*> CreateRtpRtcpModules( | 237 static std::vector<RtpRtcp*> CreateRtpRtcpModules( |
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
376 FrameCounts receive_frame_counts_ GUARDED_BY(crit_); | 369 FrameCounts receive_frame_counts_ GUARDED_BY(crit_); |
377 IncomingVideoStream* incoming_video_stream_ GUARDED_BY(crit_); | 370 IncomingVideoStream* incoming_video_stream_ GUARDED_BY(crit_); |
378 RtcpIntraFrameObserver* const intra_frame_observer_; | 371 RtcpIntraFrameObserver* const intra_frame_observer_; |
379 RtcpRttStats* const rtt_stats_; | 372 RtcpRttStats* const rtt_stats_; |
380 PacedSender* const paced_sender_; | 373 PacedSender* const paced_sender_; |
381 PacketRouter* const packet_router_; | 374 PacketRouter* const packet_router_; |
382 | 375 |
383 const rtc::scoped_ptr<RtcpBandwidthObserver> bandwidth_observer_; | 376 const rtc::scoped_ptr<RtcpBandwidthObserver> bandwidth_observer_; |
384 TransportFeedbackObserver* const transport_feedback_observer_; | 377 TransportFeedbackObserver* const transport_feedback_observer_; |
385 | 378 |
386 rtc::PlatformThread decode_thread_; | |
387 | |
388 int nack_history_size_sender_; | 379 int nack_history_size_sender_; |
389 int max_nack_reordering_threshold_; | 380 int max_nack_reordering_threshold_; |
390 I420FrameCallback* pre_render_callback_ GUARDED_BY(crit_); | 381 I420FrameCallback* pre_render_callback_ GUARDED_BY(crit_); |
391 | 382 |
392 const rtc::scoped_ptr<ReportBlockStats> report_block_stats_sender_; | 383 const rtc::scoped_ptr<ReportBlockStats> report_block_stats_sender_; |
393 | 384 |
394 int64_t time_of_first_rtt_ms_ GUARDED_BY(crit_); | 385 int64_t time_of_first_rtt_ms_ GUARDED_BY(crit_); |
395 int64_t rtt_sum_ms_ GUARDED_BY(crit_); | 386 int64_t rtt_sum_ms_ GUARDED_BY(crit_); |
396 int64_t last_rtt_ms_ GUARDED_BY(crit_); | 387 int64_t last_rtt_ms_ GUARDED_BY(crit_); |
397 size_t num_rtts_ GUARDED_BY(crit_); | 388 size_t num_rtts_ GUARDED_BY(crit_); |
398 | 389 |
399 // RtpRtcp modules, declared last as they use other members on construction. | 390 // RtpRtcp modules, declared last as they use other members on construction. |
400 const std::vector<RtpRtcp*> rtp_rtcp_modules_; | 391 const std::vector<RtpRtcp*> rtp_rtcp_modules_; |
401 size_t num_active_rtp_rtcp_modules_ GUARDED_BY(crit_); | 392 size_t num_active_rtp_rtcp_modules_ GUARDED_BY(crit_); |
402 }; | 393 }; |
403 | 394 |
404 } // namespace webrtc | 395 } // namespace webrtc |
405 | 396 |
406 #endif // WEBRTC_VIDEO_VIE_CHANNEL_H_ | 397 #endif // WEBRTC_VIDEO_VIE_CHANNEL_H_ |
OLD | NEW |