Home
last modified time | relevance | path

Searched refs:SetREDStatus (Results 1 – 14 of 14) sorted by relevance

/external/webrtc/webrtc/modules/audio_coding/test/
DTestRedFec.cc93 EXPECT_EQ(0, _acmA->SetREDStatus(true)); in Perform()
125 EXPECT_EQ(0, _acmA->SetREDStatus(false)); in Perform()
129 EXPECT_EQ(0, _acmA->SetREDStatus(true)); in Perform()
132 EXPECT_EQ(-1, _acmA->SetREDStatus(true)); in Perform()
149 EXPECT_EQ(0, _acmA->SetREDStatus(false)); in Perform()
155 EXPECT_EQ(0, _acmA->SetREDStatus(true)); in Perform()
158 EXPECT_EQ(-1, _acmA->SetREDStatus(true)); in Perform()
177 EXPECT_EQ(0, _acmA->SetREDStatus(false)); in Perform()
183 EXPECT_EQ(0, _acmA->SetREDStatus(true)); in Perform()
186 EXPECT_EQ(-1, _acmA->SetREDStatus(true)); in Perform()
[all …]
Ddelay_test.cc159 ASSERT_EQ(0, acm_a_->SetREDStatus(config.fec)) << in ConfigAcm()
/external/webrtc/webrtc/voice_engine/
Dvoe_rtp_rtcp_impl.h75 int SetREDStatus(int channel, bool enable, int redPayloadtype = -1) override;
Dvoe_rtp_rtcp_impl.cc363 int VoERTP_RTCPImpl::SetREDStatus(int channel, in SetREDStatus() function in webrtc::VoERTP_RTCPImpl
381 return channelPtr->SetREDStatus(enable, redPayloadtype); in SetREDStatus()
Dchannel.h354 int SetREDStatus(bool enable, int redPayloadtype);
Dchannel.cc3260 int Channel::SetREDStatus(bool enable, int redPayloadtype) { in SetREDStatus() function in webrtc::voe::Channel
3280 if (audio_coding_->SetREDStatus(enable) != 0) { in SetREDStatus()
/external/webrtc/webrtc/voice_engine/include/
Dvoe_rtp_rtcp.h193 virtual int SetREDStatus(int channel, bool enable, int redPayloadtype = -1) {
/external/webrtc/webrtc/modules/audio_coding/include/
Daudio_coding_module.h297 virtual int32_t SetREDStatus(bool enable_red) = 0;
/external/webrtc/webrtc/modules/audio_coding/acm2/
Daudio_coding_module_impl.h73 int SetREDStatus(bool enable_red) override;
Daudio_coding_module_impl.cc453 int AudioCodingModuleImpl::SetREDStatus(bool enable_red) { in SetREDStatus() function in webrtc::acm2::AudioCodingModuleImpl
/external/webrtc/webrtc/test/
Dmock_voice_engine.h296 MOCK_METHOD3(SetREDStatus, int(int channel, bool enable, int redPayloadtype));
/external/webrtc/talk/media/webrtc/
Dwebrtcvoiceengine.cc1474 engine()->voe()->rtp()->SetREDStatus(channel, false); in SetSendCodecs()
1517 if (engine()->voe()->rtp()->SetREDStatus(channel, true, codec.id) == -1) { in SetSendCodecs()
1518 LOG_RTCERR3(SetREDStatus, channel, true, codec.id); in SetSendCodecs()
Dfakewebrtcvoiceengine.h632 WEBRTC_FUNC(SetREDStatus, (int channel, bool enable, int redPayloadtype)) {
/external/webrtc/webrtc/voice_engine/test/cmd_test/
Dvoe_cmd_test.cc469 res = rtp_rtcp->SetREDStatus(chan, true, cinst.pltype); in RunTest()