Home
last modified time | relevance | path

Searched refs:SupportsRtxPayloadPadding (Results 1 – 11 of 11) sorted by relevance

/aosp_15_r20/external/webrtc/modules/pacing/
H A Dpacket_router.cc60 if (rtp_module->SupportsRtxPayloadPadding()) { in AddSendRtpModule()
175 if (rtp_module->SupportsRtxPayloadPadding()) { in SendPacket()
208 last_send_module_->SupportsRtxPayloadPadding()) { in GeneratePadding()
H A Dpacket_router_unittest.cc196 EXPECT_CALL(rtp_1, SupportsRtxPayloadPadding).WillRepeatedly(Return(true)); in TEST_F()
207 EXPECT_CALL(rtp_2, SupportsRtxPayloadPadding).WillRepeatedly(Return(true)); in TEST_F()
219 EXPECT_CALL(rtp_3, SupportsRtxPayloadPadding).WillRepeatedly(Return(false)); in TEST_F()
/aosp_15_r20/external/webrtc/modules/rtp_rtcp/source/
H A Drtp_sender.cc360 bool RTPSender::SupportsRtxPayloadPadding() const { in SupportsRtxPayloadPadding() function in webrtc::RTPSender
377 if (SupportsRtxPayloadPadding()) { in GeneratePadding()
H A Drtp_rtcp_impl.cc420 bool ModuleRtpRtcpImpl::SupportsRtxPayloadPadding() const { in SupportsRtxPayloadPadding() function in webrtc::ModuleRtpRtcpImpl
422 return rtp_sender_->packet_generator.SupportsRtxPayloadPadding(); in SupportsRtxPayloadPadding()
H A Drtp_rtcp_impl2.cc392 bool ModuleRtpRtcpImpl2::SupportsRtxPayloadPadding() const { in SupportsRtxPayloadPadding() function in webrtc::ModuleRtpRtcpImpl2
394 return rtp_sender_->packet_generator.SupportsRtxPayloadPadding(); in SupportsRtxPayloadPadding()
H A Drtp_sender.h84 bool SupportsRtxPayloadPadding() const RTC_LOCKS_EXCLUDED(send_mutex_);
H A Drtp_rtcp_impl2.h88 bool SupportsRtxPayloadPadding() const override;
H A Drtp_rtcp_interface.h230 virtual bool SupportsRtxPayloadPadding() const = 0;
H A Drtp_rtcp_impl.h82 bool SupportsRtxPayloadPadding() const override;
H A Drtp_sender_unittest.cc1204 EXPECT_TRUE(rtp_sender_->SupportsRtxPayloadPadding()); in TEST_F()
1206 EXPECT_FALSE(rtp_sender_->SupportsRtxPayloadPadding()); in TEST_F()
/aosp_15_r20/external/webrtc/modules/rtp_rtcp/mocks/
H A Dmock_rtp_rtcp.h58 MOCK_METHOD(bool, SupportsRtxPayloadPadding, (), (const, override));