/external/webrtc/webrtc/ |
video_receive_stream.h | 117 // RTX settings for incoming video payloads that may be received. RTX is 119 struct Rtx { 120 // SSRCs to use for the RTX streams. 123 // Payload type to use for the RTX stream. 127 // Map from video RTP payload type -> RTX config. 128 typedef std::map<int, Rtx> RtxMap; 129 RtxMap rtx; member in struct:webrtc::VideoReceiveStream::Config::Rtp 131 // If set to true, the RTX payload type mapping supplied in |rtx| will b [all...] |
video_send_stream.h | 122 struct Rtx { 124 // SSRCs to use for the RTX streams. 127 // Payload type to use for the RTX stream. 129 } rtx; member in struct:webrtc::VideoSendStream::Config::Rtp
|
/external/webrtc/webrtc/call/ |
rtc_event_log_unittest.cc | 144 // Check RTX map. 145 ASSERT_EQ(static_cast<int>(config.rtp.rtx.size()), 150 EXPECT_EQ(1u, config.rtp.rtx.count(rtx_map.payload_type())); 152 const VideoReceiveStream::Config::Rtp::Rtx& rtx = local 153 config.rtp.rtx.at(rtx_map.payload_type()); 156 EXPECT_EQ(rtx.ssrc, rtx_config.rtx_ssrc()); 157 EXPECT_EQ(rtx.payload_type, rtx_config.rtx_payload_type()); 205 // Check RTX settings. 206 ASSERT_EQ(static_cast<int>(config.rtp.rtx.ssrcs.size()) [all...] |
/external/webrtc/webrtc/video/ |
video_send_stream.cc | 49 std::string VideoSendStream::Config::Rtp::Rtx::ToString() 85 ss << ", rtx: " << rtx.ToString(); 198 // TODO(changbin): Should set RTX for RED mapping in RTP sender in future. 479 if (config_.rtp.rtx.ssrcs.empty()) { 483 // Set up RTX. 484 RTC_DCHECK_EQ(config_.rtp.rtx.ssrcs.size(), config_.rtp.ssrcs.size()); 485 for (size_t i = 0; i < config_.rtp.rtx.ssrcs.size(); ++i) { 486 uint32_t ssrc = config_.rtp.rtx.ssrcs[i]; 487 vie_channel_->SetSSRC(config_.rtp.rtx.ssrcs[i], kViEStreamTypeRtx [all...] |
/external/webrtc/talk/media/webrtc/ |
webrtcvideoengine2.cc | 231 LOG(LS_ERROR) << "RTX SSRC '" << rtx_ssrc 238 << "RTX SSRCs exist, but don't cover all SSRCs (unsupported): " 334 // TODO(andresp): Add rtx codec for vp9 and verify it works. 1140 webrtc::VideoReceiveStream::Config::Rtp::Rtx& rtx = local [all...] |