Home
last modified time | relevance | path

Searched refs:RtpState (Results 1 – 25 of 32) sorted by relevance

12

/external/webrtc/audio/
Daudio_send_stream.h67 const absl::optional<RtpState>& suspended_rtp_state);
76 const absl::optional<RtpState>& suspended_rtp_state,
102 RtpState GetRtpState() const;
180 absl::optional<RtpState> const suspended_rtp_state_;
Daudio_send_stream.cc110 const absl::optional<RtpState>& suspended_rtp_state) in AudioSendStream()
142 const absl::optional<RtpState>& suspended_rtp_state, in AudioSendStream()
582 RtpState AudioSendStream::GetRtpState() const { in GetRtpState()
/external/webrtc/modules/rtp_rtcp/mocks/
Dmock_rtp_rtcp.h66 MOCK_METHOD(void, SetRtpState, (const RtpState& rtp_state), (override));
67 MOCK_METHOD(void, SetRtxState, (const RtpState& rtp_state), (override));
68 MOCK_METHOD(RtpState, GetRtpState, (), (const, override));
69 MOCK_METHOD(RtpState, GetRtxState, (), (const, override));
/external/webrtc/modules/rtp_rtcp/source/
Drtp_sender.h165 void SetRtpState(const RtpState& rtp_state) RTC_LOCKS_EXCLUDED(send_mutex_);
166 RtpState GetRtpState() const RTC_LOCKS_EXCLUDED(send_mutex_);
167 void SetRtxRtpState(const RtpState& rtp_state)
169 RtpState GetRtxRtpState() const RTC_LOCKS_EXCLUDED(send_mutex_);
Drtp_rtcp_impl2.h105 void SetRtpState(const RtpState& rtp_state) override;
106 void SetRtxState(const RtpState& rtp_state) override;
107 RtpState GetRtpState() const override;
108 RtpState GetRtxState() const override;
Drtp_rtcp_interface.h208 virtual void SetRtpState(const RtpState& rtp_state) = 0;
209 virtual void SetRtxState(const RtpState& rtp_state) = 0;
210 virtual RtpState GetRtpState() const = 0;
211 virtual RtpState GetRtxState() const = 0;
Dflexfec_sender.cc77 const RtpState* rtp_state, in FlexfecSender()
196 absl::optional<RtpState> FlexfecSender::GetRtpState() { in GetRtpState()
197 RtpState rtp_state; in GetRtpState()
Drtp_rtcp_impl.h96 void SetRtpState(const RtpState& rtp_state) override;
97 void SetRtxState(const RtpState& rtp_state) override;
98 RtpState GetRtpState() const override;
99 RtpState GetRtxState() const override;
Drtp_sender.cc818 void RTPSender::SetRtpState(const RtpState& rtp_state) { in SetRtpState()
830 RtpState RTPSender::GetRtpState() const { in GetRtpState()
833 RtpState state; in GetRtpState()
843 void RTPSender::SetRtxRtpState(const RtpState& rtp_state) { in SetRtxRtpState()
849 RtpState RTPSender::GetRtxRtpState() const { in GetRtxRtpState()
852 RtpState state; in GetRtxRtpState()
Dvideo_fec_generator.h50 virtual absl::optional<RtpState> GetRtpState() = 0;
Drtp_rtcp_impl2.cc203 void ModuleRtpRtcpImpl2::SetRtpState(const RtpState& rtp_state) { in SetRtpState()
208 void ModuleRtpRtcpImpl2::SetRtxState(const RtpState& rtp_state) { in SetRtxState()
212 RtpState ModuleRtpRtcpImpl2::GetRtpState() const { in GetRtpState()
213 RtpState state = rtp_sender_->packet_generator.GetRtpState(); in GetRtpState()
217 RtpState ModuleRtpRtcpImpl2::GetRtxState() const { in GetRtxState()
Drtp_rtcp_impl.cc259 void ModuleRtpRtcpImpl::SetRtpState(const RtpState& rtp_state) { in SetRtpState()
264 void ModuleRtpRtcpImpl::SetRtxState(const RtpState& rtp_state) { in SetRtxState()
268 RtpState ModuleRtpRtcpImpl::GetRtpState() const { in GetRtpState()
269 RtpState state = rtp_sender_->packet_generator.GetRtpState(); in GetRtpState()
273 RtpState ModuleRtpRtcpImpl::GetRtxState() const { in GetRtxState()
Dulpfec_generator.h60 absl::optional<RtpState> GetRtpState() override { return absl::nullopt; } in GetRtpState()
Dflexfec_sender_unittest.cc310 RtpState initial_rtp_state; in TEST()
329 RtpState updated_rtp_state = sender.GetRtpState().value(); in TEST()
/external/webrtc/modules/rtp_rtcp/include/
Dflexfec_sender.h45 const RtpState* rtp_state,
73 absl::optional<RtpState> GetRtpState() override;
Drtp_rtcp_defines.h153 struct RtpState { struct
154 RtpState() in RtpState() argument
/external/webrtc/call/
Drtp_video_sender.h79 std::map<uint32_t, RtpState> suspended_ssrcs,
114 std::map<uint32_t, RtpState> GetRtpStates() const
188 std::map<uint32_t, RtpState> suspended_ssrcs_;
Drtp_video_sender.cc127 const std::map<uint32_t, RtpState>& suspended_ssrcs, in MaybeCreateFecGenerator()
162 const RtpState* rtp_state = nullptr; in MaybeCreateFecGenerator()
194 const std::map<uint32_t, RtpState>& suspended_ssrcs, in CreateRtpStreamSenders()
321 std::map<uint32_t, RtpState> suspended_ssrcs, in RtpVideoSender()
698 std::map<uint32_t, RtpState> RtpVideoSender::GetRtpStates() const { in GetRtpStates()
699 std::map<uint32_t, RtpState> rtp_states; in GetRtpStates()
709 absl::optional<RtpState> fec_state = in GetRtpStates()
Drtp_video_sender_interface.h46 virtual std::map<uint32_t, RtpState> GetRtpStates() const = 0;
Drtp_transport_controller_send_interface.h105 std::map<uint32_t, RtpState> suspended_ssrcs,
Dcall_unittest.cc331 const RtpState rtp_state = in TEST()
337 const RtpState rtp_state1 = create_stream_and_get_rtp_state(kSSRC); in TEST()
338 const RtpState rtp_state2 = create_stream_and_get_rtp_state(kSSRC); in TEST()
Drtp_transport_controller_send.h66 std::map<uint32_t, RtpState> suspended_ssrcs,
/external/webrtc/video/
Dvideo_send_stream.h52 using RtpStateMap = std::map<uint32_t, RtpState>;
67 const std::map<uint32_t, RtpState>& suspended_ssrcs,
Dvideo_send_stream_impl.h86 std::map<uint32_t, RtpState> suspended_ssrcs,
106 std::map<uint32_t, RtpState> GetRtpStates() const;
/external/webrtc/call/test/
Dmock_rtp_transport_controller_send.h37 ((std::map<uint32_t, RtpState>),

12