/external/webrtc/audio/ |
D | audio_receive_stream.cc | 37 ss << "{remote_ssrc: " << remote_ssrc; in ToString() 81 event_log, config.rtp.local_ssrc, config.rtp.remote_ssrc, in CreateChannelReceive() 123 RTC_LOG(LS_INFO) << "AudioReceiveStream: " << config.rtp.remote_ssrc; in AudioReceiveStream() 138 config.rtp.remote_ssrc, channel_receive_.get()); in AudioReceiveStream() 144 RTC_LOG(LS_INFO) << "~AudioReceiveStream: " << config_.rtp.remote_ssrc; in ~AudioReceiveStream() 179 stats.remote_ssrc = config_.rtp.remote_ssrc; in GetStats() 295 return config_.rtp.remote_ssrc; in Ssrc() 304 return config_.rtp.remote_ssrc; in id() 388 old_config.rtp.remote_ssrc == new_config.rtp.remote_ssrc); in ConfigureStream() 399 RTC_DCHECK_EQ(old_config.rtp.remote_ssrc, new_config.rtp.remote_ssrc); in ConfigureStream()
|
/external/webrtc/call/ |
D | flexfec_receive_stream_impl.cc | 47 ss << ", remote_ssrc: " << remote_ssrc; in ToString() 71 if (remote_ssrc == 0) in IsCompleteAndEnabled() 94 if (config.remote_ssrc == 0) { in MaybeCreateFlexfecReceiver() 117 clock, config.remote_ssrc, config.protected_media_ssrcs[0], in MaybeCreateFlexfecReceiver() 174 receiver_controller->CreateReceiver(config_.remote_ssrc, this); in FlexfecReceiveStreamImpl() 189 if (packet.Ssrc() == config_.remote_ssrc) { in OnRtpPacket()
|
D | call_unittest.cc | 115 config.rtp.remote_ssrc = 42; in TEST() 161 config.rtp.remote_ssrc = ssrc; in TEST() 183 recv_config.rtp.remote_ssrc = 42; in TEST() 222 recv_config.rtp.remote_ssrc = 42; in TEST() 248 config.remote_ssrc = 38837212; in TEST() 267 config.remote_ssrc = ssrc; in TEST() 295 config.remote_ssrc = 838383; in TEST() 300 config.remote_ssrc = 424993; in TEST() 305 config.remote_ssrc = 99383; in TEST() 310 config.remote_ssrc = 5548; in TEST()
|
D | audio_receive_stream.h | 38 uint32_t remote_ssrc = 0; member 109 uint32_t remote_ssrc = 0; member
|
D | call.cc | 115 rtclog_config->remote_ssrc = config.rtp.remote_ssrc; in CreateRtcLogStreamConfig() 150 rtclog_config->remote_ssrc = config.rtp.remote_ssrc; in CreateRtcLogStreamConfig() 833 receive_rtp_config_.emplace(config.rtp.remote_ssrc, ReceiveRtpConfig(config)); in CreateAudioReceiveStream() 856 uint32_t ssrc = config.rtp.remote_ssrc; in DestroyAudioReceiveStream() 997 receive_rtp_config_.emplace(config.rtp.remote_ssrc, ReceiveRtpConfig(config)); in CreateVideoReceiveStream() 1019 receive_rtp_config_.erase(config.rtp.remote_ssrc); in DestroyVideoReceiveStream() 1027 ->RemoveStream(config.rtp.remote_ssrc); in DestroyVideoReceiveStream() 1052 RTC_DCHECK(receive_rtp_config_.find(config.remote_ssrc) == in CreateFlexfecReceiveStream() 1054 receive_rtp_config_.emplace(config.remote_ssrc, ReceiveRtpConfig(config)); in CreateFlexfecReceiveStream() 1067 uint32_t ssrc = config.remote_ssrc; in DestroyFlexfecReceiveStream()
|
D | flexfec_receive_stream_unittest.cc | 48 config.remote_ssrc = ByteReader<uint32_t>::ReadBigEndian(kFlexfecSsrc); in CreateDefaultConfig() 76 config.remote_ssrc = 238423838; in TEST()
|
D | flexfec_receive_stream.h | 52 uint32_t remote_ssrc = 0; member
|
/external/webrtc/modules/rtp_rtcp/source/ |
D | rtcp_receiver.cc | 106 uint32_t remote_ssrc = 0; member 222 int32_t RTCPReceiver::RTT(uint32_t remote_ssrc, in RTT() argument 233 auto it_info = it->second.find(remote_ssrc); in RTT() 513 const uint32_t remote_ssrc = sender_report.sender_ssrc(); in HandleSenderReport() local 515 packet_information->remote_ssrc = remote_ssrc; in HandleSenderReport() 517 UpdateTmmbrRemoteIsAlive(remote_ssrc); in HandleSenderReport() 520 if (remote_ssrc_ == remote_ssrc) { in HandleSenderReport() 534 HandleReportBlock(report_block, packet_information, remote_ssrc); in HandleSenderReport() 545 const uint32_t remote_ssrc = receiver_report.sender_ssrc(); in HandleReceiverReport() local 547 packet_information->remote_ssrc = remote_ssrc; in HandleReceiverReport() [all …]
|
D | rtcp_transceiver.cc | 54 uint32_t remote_ssrc, in AddMediaReceiverRtcpObserver() argument 58 task_queue_->PostTask(ToQueuedTask([ptr, remote_ssrc, observer] { in AddMediaReceiverRtcpObserver() 59 ptr->AddMediaReceiverRtcpObserver(remote_ssrc, observer); in AddMediaReceiverRtcpObserver() 64 uint32_t remote_ssrc, in RemoveMediaReceiverRtcpObserver() argument 69 auto remove = [ptr, remote_ssrc, observer] { in RemoveMediaReceiverRtcpObserver() 70 ptr->RemoveMediaReceiverRtcpObserver(remote_ssrc, observer); in RemoveMediaReceiverRtcpObserver()
|
D | rtcp_receiver.h | 71 int32_t CNAME(uint32_t remote_ssrc, char cname[RTCP_CNAME_SIZE]) const; 83 int32_t RTT(uint32_t remote_ssrc, 138 TmmbrInformation* FindOrCreateTmmbrInfo(uint32_t remote_ssrc) 141 void UpdateTmmbrRemoteIsAlive(uint32_t remote_ssrc) 143 TmmbrInformation* GetTmmbrInformation(uint32_t remote_ssrc) 156 uint32_t remote_ssrc)
|
D | rtcp_transceiver_impl.h | 44 void AddMediaReceiverRtcpObserver(uint32_t remote_ssrc, 46 void RemoveMediaReceiverRtcpObserver(uint32_t remote_ssrc, 89 uint32_t remote_ssrc);
|
D | rtcp_transceiver_impl.cc | 104 uint32_t remote_ssrc, in AddMediaReceiverRtcpObserver() argument 106 auto& stored = remote_senders_[remote_ssrc].observers; in AddMediaReceiverRtcpObserver() 112 uint32_t remote_ssrc, in RemoveMediaReceiverRtcpObserver() argument 114 auto remote_sender_it = remote_senders_.find(remote_ssrc); in RemoveMediaReceiverRtcpObserver() 309 uint32_t remote_ssrc) { in HandleTargetBitrate() argument 310 auto remote_sender_it = remote_senders_.find(remote_ssrc); in HandleTargetBitrate() 332 observer->OnBitrateAllocation(remote_ssrc, bitrate_allocation); in HandleTargetBitrate()
|
D | rtcp_transceiver.h | 50 void AddMediaReceiverRtcpObserver(uint32_t remote_ssrc, 54 void RemoveMediaReceiverRtcpObserver(uint32_t remote_ssrc,
|
/external/webrtc/test/ |
D | call_config_utils_unittest.cc | 29 recv_config.rtp.remote_ssrc = 100; in TEST() 52 EXPECT_EQ(recv_config.rtp.remote_ssrc, unmarshaled_config.rtp.remote_ssrc); in TEST()
|
D | call_config_utils.cc | 40 receive_config.rtp.remote_ssrc = json["rtp"]["remote_ssrc"].asInt64(); in ParseVideoReceiveStreamJsonConfig() 90 rtp_json["remote_ssrc"] = config.rtp.remote_ssrc; in GenerateVideoReceiveStreamJsonConfig()
|
/external/webrtc/logging/rtc_event_log/ |
D | rtc_stream_config.cc | 23 return local_ssrc == other.local_ssrc && remote_ssrc == other.remote_ssrc && in operator ==()
|
D | rtc_stream_config.h | 34 uint32_t remote_ssrc = 0; member
|
/external/webrtc/video/ |
D | video_receive_stream.cc | 259 config_.rtp.remote_ssrc, &rtp_video_stream_receiver_); in VideoReceiveStream() 263 config_.rtp.remote_ssrc, rtp_receive_statistics_.get()); in VideoReceiveStream() 267 rtp_receive_statistics_->EnableRetransmitDetection(config.rtp.remote_ssrc, in VideoReceiveStream() 364 << this->config_.rtp.remote_ssrc << "-" << rtc::TimeMicros() in Start() 464 rtp_receive_statistics_->GetStatistician(config_.rtp.remote_ssrc); in UpdateHistograms() 593 return config_.rtp.remote_ssrc; in id()
|
D | video_receive_stream2.cc | 255 config_.rtp.remote_ssrc, &rtp_video_stream_receiver_); in VideoReceiveStream2() 259 config_.rtp.remote_ssrc, rtp_receive_statistics_.get()); in VideoReceiveStream2() 263 rtp_receive_statistics_->EnableRetransmitDetection(config.rtp.remote_ssrc, in VideoReceiveStream2() 340 << this->config_.rtp.remote_ssrc << "-" << rtc::TimeMicros() in Start() 442 rtp_receive_statistics_->GetStatistician(config_.rtp.remote_ssrc); in UpdateHistograms() 574 return config_.rtp.remote_ssrc; in id()
|
D | rtp_video_stream_receiver2.cc | 226 ulpfec_receiver_(UlpfecReceiver::Create(config->rtp.remote_ssrc, in RtpVideoStreamReceiver2() 261 RTC_DCHECK(config_.rtp.remote_ssrc != config_.rtp.local_ssrc); in RtpVideoStreamReceiver2() 264 rtp_rtcp_->SetRemoteSSRC(config_.rtp.remote_ssrc); in RtpVideoStreamReceiver2() 270 rtp_receive_statistics_->SetMaxReorderingThreshold(config_.rtp.remote_ssrc, in RtpVideoStreamReceiver2() 311 config_.rtp.remote_ssrc); in RtpVideoStreamReceiver2() 901 config_.rtp.remote_ssrc); in SetDepacketizerToDecoderFrameTransformer() 1024 rtp_rtcp_->RTT(config_.rtp.remote_ssrc, &rtt, nullptr, nullptr, nullptr); in DeliverRtcp()
|
D | rtp_video_stream_receiver.cc | 253 ulpfec_receiver_(UlpfecReceiver::Create(config->rtp.remote_ssrc, in RtpVideoStreamReceiver() 283 RTC_DCHECK(config_.rtp.remote_ssrc != config_.rtp.local_ssrc); in RtpVideoStreamReceiver() 286 rtp_rtcp_->SetRemoteSSRC(config_.rtp.remote_ssrc); in RtpVideoStreamReceiver() 292 rtp_receive_statistics_->SetMaxReorderingThreshold(config_.rtp.remote_ssrc, in RtpVideoStreamReceiver() 339 config_.rtp.remote_ssrc); in RtpVideoStreamReceiver() 930 config_.rtp.remote_ssrc); in SetDepacketizerToDecoderFrameTransformer() 1051 rtp_rtcp_->RTT(config_.rtp.remote_ssrc, &rtt, nullptr, nullptr, nullptr); in DeliverRtcp()
|
/external/webrtc/test/fuzzers/ |
D | vp9_replay_fuzzer.cc | 30 vp9_config.rtp.remote_ssrc = 1337; in FuzzOneInput()
|
D | vp8_replay_fuzzer.cc | 30 vp8_config.rtp.remote_ssrc = 1337; in FuzzOneInput()
|
/external/webrtc/media/engine/ |
D | fake_webrtc_call.cc | 422 if (p->GetConfig().rtp.remote_ssrc == ssrc) { in GetVideoReceiveStream() 448 if (p->GetConfig().rtp.remote_ssrc == ssrc) { in GetAudioReceiveStream() 601 if (receiver->GetConfig().rtp.remote_ssrc == ssrc) in DeliverPacket() 607 if (receiver->GetConfig().rtp.remote_ssrc == ssrc) { in DeliverPacket()
|
/external/webrtc/modules/rtp_rtcp/include/ |
D | rtp_rtcp.h | 51 uint32_t remote_ssrc,
|