Home
last modified time | relevance | path

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

/external/webrtc/pc/
Dsession_description_unittest.cc23 TEST(MediaContentDescriptionTest, SetExtmapAllowMixed) { in TEST() argument
59 TEST(SessionDescriptionTest, SetExtmapAllowMixed) { in TEST() argument
Dchannel.cc855 media_channel()->SetExtmapAllowMixed(audio->extmap_allow_mixed()); in SetLocalContent_w()
1025 media_channel()->SetExtmapAllowMixed(video->extmap_allow_mixed()); in SetLocalContent_w()
/external/webrtc/modules/rtp_rtcp/include/
Drtp_header_extension_map.h61 void SetExtmapAllowMixed(bool extmap_allow_mixed) { in SetExtmapAllowMixed() function
/external/webrtc/modules/rtp_rtcp/mocks/
Dmock_rtp_rtcp.h47 MOCK_METHOD(void, SetExtmapAllowMixed, (bool extmap_allow_mixed), (override));
/external/webrtc/modules/rtp_rtcp/source/
Drtp_sender.h74 void SetExtmapAllowMixed(bool extmap_allow_mixed)
Drtp_rtcp_interface.h179 virtual void SetExtmapAllowMixed(bool extmap_allow_mixed) = 0;
Drtp_rtcp_impl2.h85 void SetExtmapAllowMixed(bool extmap_allow_mixed) override;
Drtp_rtcp_impl2.cc518 void ModuleRtpRtcpImpl2::SetExtmapAllowMixed(bool extmap_allow_mixed) { in SetExtmapAllowMixed() function in webrtc::ModuleRtpRtcpImpl2
519 rtp_sender_->packet_generator.SetExtmapAllowMixed(extmap_allow_mixed); in SetExtmapAllowMixed()
Drtp_rtcp_impl.h73 void SetExtmapAllowMixed(bool extmap_allow_mixed) override;
Drtp_sender.cc225 void RTPSender::SetExtmapAllowMixed(bool extmap_allow_mixed) { in SetExtmapAllowMixed() function in webrtc::RTPSender
227 rtp_header_extension_map_.SetExtmapAllowMixed(extmap_allow_mixed); in SetExtmapAllowMixed()
Drtp_rtcp_impl.cc599 void ModuleRtpRtcpImpl::SetExtmapAllowMixed(bool extmap_allow_mixed) { in SetExtmapAllowMixed() function in webrtc::ModuleRtpRtcpImpl
600 rtp_sender_->packet_generator.SetExtmapAllowMixed(extmap_allow_mixed); in SetExtmapAllowMixed()
/external/webrtc/media/engine/
Dwebrtc_voice_engine.cc823 void SetExtmapAllowMixed(bool extmap_allow_mixed) { in SetExtmapAllowMixed() function in cricket::WebRtcVoiceMediaChannel::WebRtcAudioSendStream
1411 SetExtmapAllowMixed(params.extmap_allow_mixed); in SetSendParameters()
1413 it.second->SetExtmapAllowMixed(params.extmap_allow_mixed); in SetSendParameters()
Dwebrtc_video_engine.cc925 SetExtmapAllowMixed(*changed_params.extmap_allow_mixed); in ApplyChangedParams()
Dwebrtc_voice_engine_unittest.cc400 channel_->SetExtmapAllowMixed(extmap_allow_mixed); in TestExtmapAllowMixedCallee()
Dwebrtc_video_engine_unittest.cc2520 channel_->SetExtmapAllowMixed(extmap_allow_mixed); in TestExtmapAllowMixedCallee()
/external/webrtc/media/base/
Dmedia_channel.h251 void SetExtmapAllowMixed(bool extmap_allow_mixed) { in SetExtmapAllowMixed() function
Dfake_media_engine.h254 Base::SetExtmapAllowMixed(extmap_allow_mixed); in SetSendExtmapAllowMixed()
/external/webrtc/audio/
Daudio_send_stream.cc261 rtp_rtcp_module_->SetExtmapAllowMixed(new_config.rtp.extmap_allow_mixed); in ConfigureStream()
Daudio_send_stream_unittest.cc227 EXPECT_CALL(rtp_rtcp_, SetExtmapAllowMixed(false)).Times(1); in SetupDefaultChannelSend()