/external/webrtc/audio/ |
D | audio_send_stream.h | 67 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_;
|
D | audio_send_stream.cc | 110 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/ |
D | mock_rtp_rtcp.h | 66 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/ |
D | rtp_sender.h | 165 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_);
|
D | rtp_rtcp_impl2.h | 105 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;
|
D | rtp_rtcp_interface.h | 208 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;
|
D | flexfec_sender.cc | 77 const RtpState* rtp_state, in FlexfecSender() 196 absl::optional<RtpState> FlexfecSender::GetRtpState() { in GetRtpState() 197 RtpState rtp_state; in GetRtpState()
|
D | rtp_rtcp_impl.h | 96 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;
|
D | rtp_sender.cc | 818 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()
|
D | video_fec_generator.h | 50 virtual absl::optional<RtpState> GetRtpState() = 0;
|
D | rtp_rtcp_impl2.cc | 203 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()
|
D | rtp_rtcp_impl.cc | 259 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()
|
D | ulpfec_generator.h | 60 absl::optional<RtpState> GetRtpState() override { return absl::nullopt; } in GetRtpState()
|
D | flexfec_sender_unittest.cc | 310 RtpState initial_rtp_state; in TEST() 329 RtpState updated_rtp_state = sender.GetRtpState().value(); in TEST()
|
/external/webrtc/modules/rtp_rtcp/include/ |
D | flexfec_sender.h | 45 const RtpState* rtp_state, 73 absl::optional<RtpState> GetRtpState() override;
|
D | rtp_rtcp_defines.h | 153 struct RtpState { struct 154 RtpState() in RtpState() argument
|
/external/webrtc/call/ |
D | rtp_video_sender.h | 79 std::map<uint32_t, RtpState> suspended_ssrcs, 114 std::map<uint32_t, RtpState> GetRtpStates() const 188 std::map<uint32_t, RtpState> suspended_ssrcs_;
|
D | rtp_video_sender.cc | 127 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()
|
D | rtp_video_sender_interface.h | 46 virtual std::map<uint32_t, RtpState> GetRtpStates() const = 0;
|
D | rtp_transport_controller_send_interface.h | 105 std::map<uint32_t, RtpState> suspended_ssrcs,
|
D | call_unittest.cc | 331 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()
|
D | rtp_transport_controller_send.h | 66 std::map<uint32_t, RtpState> suspended_ssrcs,
|
/external/webrtc/video/ |
D | video_send_stream.h | 52 using RtpStateMap = std::map<uint32_t, RtpState>; 67 const std::map<uint32_t, RtpState>& suspended_ssrcs,
|
D | video_send_stream_impl.h | 86 std::map<uint32_t, RtpState> suspended_ssrcs, 106 std::map<uint32_t, RtpState> GetRtpStates() const;
|
/external/webrtc/call/test/ |
D | mock_rtp_transport_controller_send.h | 37 ((std::map<uint32_t, RtpState>),
|