Lines Matching refs:Rtp
56 ss << ", rtp: " << rtp.ToString();
71 std::string VideoReceiveStream::Config::Rtp::ToString() const {
157 config.rtp.transport_cc && UseSendSideBwe(config_.rtp.extensions);
174 vie_channel_->SetProtectionMode(config_.rtp.nack.rtp_history_ms > 0, false,
176 RTC_DCHECK(config_.rtp.rtcp_mode != RtcpMode::kOff)
179 vie_channel_->SetRTCPMode(config_.rtp.rtcp_mode);
181 RTC_DCHECK(config_.rtp.remote_ssrc != 0);
183 RTC_DCHECK(config_.rtp.local_ssrc != 0);
184 RTC_DCHECK(config_.rtp.remote_ssrc != config_.rtp.local_ssrc);
186 vie_channel_->SetSSRC(config_.rtp.local_ssrc, kViEStreamTypeNormal, 0);
188 Config::Rtp::RtxMap::const_iterator it = config_.rtp.rtx.begin();
189 for (; it != config_.rtp.rtx.end(); ++it) {
199 config_.rtp.use_rtx_payload_mapping_on_restore);
201 congestion_controller_->SetChannelRembStatus(false, config_.rtp.remb,
204 for (size_t i = 0; i < config_.rtp.extensions.size(); ++i) {
205 const std::string& extension = config_.rtp.extensions[i].name;
206 int id = config_.rtp.extensions[i].id;
220 RTC_NOTREACHED() << "Unsupported RTP extension.";
224 if (config_.rtp.fec.ulpfec_payload_type != -1) {
226 RTC_DCHECK(config_.rtp.fec.red_payload_type != -1);
231 codec.plType = config_.rtp.fec.ulpfec_payload_type;
234 if (config_.rtp.fec.red_payload_type != -1) {
239 codec.plType = config_.rtp.fec.red_payload_type;
241 if (config_.rtp.fec.red_rtx_payload_type != -1) {
243 config_.rtp.fec.red_rtx_payload_type,
244 config_.rtp.fec.red_payload_type);
248 if (config.rtp.rtcp_xr.receiver_reference_time_report)
252 new ReceiveStatisticsProxy(config_.rtp.remote_ssrc, clock_));
300 bool send_side_bwe = UseSendSideBwe(config_.rtp.extensions);
384 vie_channel_->SetRTCPMode(state == kNetworkUp ? config_.rtp.rtcp_mode