• Home
  • Raw
  • Download

Lines Matching refs:rtp_rtcp

40     std::unique_ptr<ModuleRtpRtcpImpl2> rtp_rtcp,  in RtpStreamSender()  argument
43 : rtp_rtcp(std::move(rtp_rtcp)), in RtpStreamSender()
259 std::unique_ptr<ModuleRtpRtcpImpl2> rtp_rtcp( in CreateRtpStreamSenders() local
261 rtp_rtcp->SetSendingStatus(false); in CreateRtpStreamSenders()
262 rtp_rtcp->SetSendingMediaStatus(false); in CreateRtpStreamSenders()
263 rtp_rtcp->SetRTCPStatus(RtcpMode::kCompound); in CreateRtpStreamSenders()
265 rtp_rtcp->SetStorePacketsStatus(true, kMinSendSidePacketHistorySize); in CreateRtpStreamSenders()
268 video_config.rtp_sender = rtp_rtcp->RtpSender(); in CreateRtpStreamSenders()
291 rtp_streams.emplace_back(std::move(rtp_rtcp), std::move(sender_video), in CreateRtpStreamSenders()
400 transport->packet_router()->AddSendRtpModule(stream.rtp_rtcp.get(), in RtpVideoSender()
409 stream.rtp_rtcp->RegisterRtpHeaderExtension(extension, id); in RtpVideoSender()
418 stream.rtp_rtcp->SetMid(rtp_config_.mid); in RtpVideoSender()
425 stream.rtp_rtcp->SetCNAME(rtp_config_.c_name.c_str()); in RtpVideoSender()
426 stream.rtp_rtcp->SetMaxRtpPacketSize(rtp_config_.max_packet_size); in RtpVideoSender()
427 stream.rtp_rtcp->RegisterSendPayloadFrequency(rtp_config_.payload_type, in RtpVideoSender()
445 transport_->packet_router()->RemoveSendRtpModule(stream.rtp_rtcp.get()); in ~RtpVideoSender()
458 module_process_thread_->RegisterModule(stream.rtp_rtcp.get(), in RegisterProcessThread()
466 module_process_thread_->DeRegisterModule(stream.rtp_rtcp.get()); in DeRegisterProcessThread()
491 rtp_streams_[i].rtp_rtcp->SetSendingStatus(active_modules[i]); in SetActiveModulesLocked()
493 rtp_streams_[i].rtp_rtcp->SetSendingMediaStatus(active_modules[i]); in SetActiveModulesLocked()
530 rtp_streams_[stream_index].rtp_rtcp->StartTimestamp(); in OnEncodedImage()
536 if (!rtp_streams_[stream_index].rtp_rtcp->OnSendingRtpFrame( in OnEncodedImage()
547 rtp_streams_[stream_index].rtp_rtcp->ExpectedRetransmissionTimeMs(); in OnEncodedImage()
589 rtp_streams_[0].rtp_rtcp->SetVideoBitrateAllocation(bitrate); in OnBitrateAllocationUpdated()
599 rtp_streams_[i].rtp_rtcp->SetVideoBitrateAllocation( in OnBitrateAllocationUpdated()
603 rtp_streams_[i].rtp_rtcp->SetVideoBitrateAllocation( in OnBitrateAllocationUpdated()
619 if (rtp_streams_[i].rtp_rtcp->SendingMedia()) { in GetPacketizationOverheadRate()
630 stream.rtp_rtcp->IncomingRtcpPacket(packet, length); in DeliverRtcp()
638 RtpRtcpInterface* const rtp_rtcp = rtp_streams_[i].rtp_rtcp.get(); in ConfigureSsrcs() local
643 rtp_rtcp->SetRtpState(it->second); in ConfigureSsrcs()
645 ssrc_to_rtp_module_[ssrc] = rtp_rtcp; in ConfigureSsrcs()
655 RtpRtcpInterface* const rtp_rtcp = rtp_streams_[i].rtp_rtcp.get(); in ConfigureSsrcs() local
658 rtp_rtcp->SetRtxState(it->second); in ConfigureSsrcs()
664 stream.rtp_rtcp->SetRtxSendPayloadType(rtp_config_.rtx.payload_type, in ConfigureSsrcs()
666 stream.rtp_rtcp->SetRtxSendStatus(kRtxRetransmitted | in ConfigureSsrcs()
672 stream.rtp_rtcp->SetRtxSendPayloadType( in ConfigureSsrcs()
687 rtp_streams_[i].rtp_rtcp->SetRid(rtp_config_.rids[i]); in ConfigureRids()
693 stream.rtp_rtcp->SetRTCPStatus(network_available ? rtp_config_.rtcp_mode in OnNetworkAvailability()
703 RTC_DCHECK_EQ(ssrc, rtp_streams_[i].rtp_rtcp->SSRC()); in GetRtpStates()
704 rtp_states[ssrc] = rtp_streams_[i].rtp_rtcp->GetRtpState(); in GetRtpStates()
720 rtp_states[ssrc] = rtp_streams_[i].rtp_rtcp->GetRtxState(); in GetRtpStates()
746 stream.rtp_rtcp->SetMaxRtpPacketSize(max_rtp_packet_size); in OnTransportOverheadChanged()
757 if (stream.rtp_rtcp->SendingMedia()) { in OnBitrateUpdated()
758 overhead_bytes_per_packet += stream.rtp_rtcp->ExpectedPerPacketOverhead(); in OnBitrateUpdated()
841 if (ssrc == rtp_stream.rtp_rtcp->SSRC()) { in GetSentRtpPacketInfos()
842 return rtp_stream.rtp_rtcp->GetSentRtpPacketInfos(sequence_numbers); in GetSentRtpPacketInfos()
858 stream.rtp_rtcp->SetFecProtectionParams(*delta_params, *key_params); in ProtectionRequest()
860 auto send_bitrate = stream.rtp_rtcp->GetSendRates(); in ProtectionRequest()
874 stream.rtp_rtcp->GetSendRates()[RtpPacketMediaType::kRetransmission] in ProtectionRequest()