Home
last modified time | relevance | path

Searched refs:GetRtpState (Results 1 – 19 of 19) sorted by relevance

/external/webrtc/modules/rtp_rtcp/source/
Dvideo_fec_generator.h50 virtual absl::optional<RtpState> GetRtpState() = 0;
Dulpfec_generator.h60 absl::optional<RtpState> GetRtpState() override { return absl::nullopt; } in GetRtpState() function
Dflexfec_sender.cc196 absl::optional<RtpState> FlexfecSender::GetRtpState() { in GetRtpState() function in webrtc::FlexfecSender
Drtp_sender.h166 RtpState GetRtpState() const RTC_LOCKS_EXCLUDED(send_mutex_);
Drtp_rtcp_interface.h210 virtual RtpState GetRtpState() const = 0;
Drtp_rtcp_impl2.h107 RtpState GetRtpState() const override;
Drtp_rtcp_impl2.cc212 RtpState ModuleRtpRtcpImpl2::GetRtpState() const { in GetRtpState() function in webrtc::ModuleRtpRtcpImpl2
213 RtpState state = rtp_sender_->packet_generator.GetRtpState(); in GetRtpState()
Drtp_rtcp_impl.h98 RtpState GetRtpState() const override;
Drtp_rtcp_impl.cc268 RtpState ModuleRtpRtcpImpl::GetRtpState() const { in GetRtpState() function in webrtc::ModuleRtpRtcpImpl
269 RtpState state = rtp_sender_->packet_generator.GetRtpState(); in GetRtpState()
Dflexfec_sender_unittest.cc329 RtpState updated_rtp_state = sender.GetRtpState().value(); in TEST()
Drtp_sender.cc830 RtpState RTPSender::GetRtpState() const { in GetRtpState() function in webrtc::RTPSender
Drtp_sender_unittest.cc1714 RtpState state = rtp_sender()->GetRtpState(); in TEST_P()
/external/webrtc/modules/rtp_rtcp/include/
Dflexfec_sender.h73 absl::optional<RtpState> GetRtpState() override;
/external/webrtc/audio/
Daudio_send_stream.h102 RtpState GetRtpState() const;
Daudio_send_stream.cc582 RtpState AudioSendStream::GetRtpState() const { in GetRtpState() function in webrtc::internal::AudioSendStream
583 return rtp_rtcp_module_->GetRtpState(); in GetRtpState()
/external/webrtc/modules/rtp_rtcp/mocks/
Dmock_rtp_rtcp.h68 MOCK_METHOD(RtpState, GetRtpState, (), (const, override));
/external/webrtc/call/
Drtp_video_sender.cc704 rtp_states[ssrc] = rtp_streams_[i].rtp_rtcp->GetRtpState(); in GetRtpStates()
710 rtp_streams_[i].fec_generator->GetRtpState(); in GetRtpStates()
Dcall_unittest.cc332 static_cast<internal::AudioSendStream*>(stream)->GetRtpState(); in TEST()
Dcall.cc806 suspended_audio_send_ssrcs_[ssrc] = audio_send_stream->GetRtpState(); in DestroyAudioSendStream()