• Home
  • Raw
  • Download

Lines Matching refs:ChannelManager

80 ChannelManager::ChannelManager(MediaEngineInterface* me,  in ChannelManager()  function in cricket::ChannelManager
87 ChannelManager::ChannelManager(MediaEngineInterface* me, in ChannelManager() function in cricket::ChannelManager
95 void ChannelManager::Construct(MediaEngineInterface* me, in Construct()
111 this, &ChannelManager::OnVideoCaptureStateChange); in Construct()
114 ChannelManager::~ChannelManager() { in ~ChannelManager()
127 &ChannelManager::DestructorDeletes_w, this)); in ~ChannelManager()
130 bool ChannelManager::SetVideoRtxEnabled(bool enable) { in SetVideoRtxEnabled()
145 void ChannelManager::GetSupportedAudioCodecs( in GetSupportedAudioCodecs()
156 void ChannelManager::GetSupportedAudioRtpHeaderExtensions( in GetSupportedAudioRtpHeaderExtensions()
161 void ChannelManager::GetSupportedVideoCodecs( in GetSupportedVideoCodecs()
175 void ChannelManager::GetSupportedVideoRtpHeaderExtensions( in GetSupportedVideoRtpHeaderExtensions()
180 void ChannelManager::GetSupportedDataCodecs( in GetSupportedDataCodecs()
185 bool ChannelManager::Init() { in Init()
201 &ChannelManager::InitMediaEngine_w, this)); in Init()
218 bool ChannelManager::InitMediaEngine_w() { in InitMediaEngine_w()
223 void ChannelManager::Terminate() { in Terminate()
228 worker_thread_->Invoke<void>(Bind(&ChannelManager::Terminate_w, this)); in Terminate()
232 void ChannelManager::DestructorDeletes_w() { in DestructorDeletes_w()
238 void ChannelManager::Terminate_w() { in Terminate_w()
250 VoiceChannel* ChannelManager::CreateVoiceChannel( in CreateVoiceChannel()
257 Bind(&ChannelManager::CreateVoiceChannel_w, this, media_controller, in CreateVoiceChannel()
261 VoiceChannel* ChannelManager::CreateVoiceChannel_w( in CreateVoiceChannel_w()
286 void ChannelManager::DestroyVoiceChannel(VoiceChannel* voice_channel) { in DestroyVoiceChannel()
290 Bind(&ChannelManager::DestroyVoiceChannel_w, this, voice_channel)); in DestroyVoiceChannel()
294 void ChannelManager::DestroyVoiceChannel_w(VoiceChannel* voice_channel) { in DestroyVoiceChannel_w()
308 VideoChannel* ChannelManager::CreateVideoChannel( in CreateVideoChannel()
315 Bind(&ChannelManager::CreateVideoChannel_w, this, media_controller, in CreateVideoChannel()
319 VideoChannel* ChannelManager::CreateVideoChannel_w( in CreateVideoChannel_w()
344 void ChannelManager::DestroyVideoChannel(VideoChannel* video_channel) { in DestroyVideoChannel()
348 Bind(&ChannelManager::DestroyVideoChannel_w, this, video_channel)); in DestroyVideoChannel()
352 void ChannelManager::DestroyVideoChannel_w(VideoChannel* video_channel) { in DestroyVideoChannel_w()
367 DataChannel* ChannelManager::CreateDataChannel( in CreateDataChannel()
373 Bind(&ChannelManager::CreateDataChannel_w, this, transport_controller, in CreateDataChannel()
377 DataChannel* ChannelManager::CreateDataChannel_w( in CreateDataChannel_w()
403 void ChannelManager::DestroyDataChannel(DataChannel* data_channel) { in DestroyDataChannel()
407 Bind(&ChannelManager::DestroyDataChannel_w, this, data_channel)); in DestroyDataChannel()
411 void ChannelManager::DestroyDataChannel_w(DataChannel* data_channel) { in DestroyDataChannel_w()
425 bool ChannelManager::GetOutputVolume(int* level) { in GetOutputVolume()
433 bool ChannelManager::SetOutputVolume(int level) { in SetOutputVolume()
448 std::vector<cricket::VideoFormat> ChannelManager::GetSupportedFormats( in GetSupportedFormats()
452 worker_thread_->Invoke<void>(rtc::Bind(&ChannelManager::GetSupportedFormats_w, in GetSupportedFormats()
457 void ChannelManager::GetSupportedFormats_w( in GetSupportedFormats_w()
469 bool ChannelManager::StartVideoCapture( in StartVideoCapture()
476 bool ChannelManager::MuteToBlackThenPause( in MuteToBlackThenPause()
486 bool ChannelManager::StopVideoCapture( in StopVideoCapture()
493 bool ChannelManager::RestartVideoCapture( in RestartVideoCapture()
503 bool ChannelManager::AddVideoRenderer( in AddVideoRenderer()
510 bool ChannelManager::RemoveVideoRenderer( in RemoveVideoRenderer()
517 bool ChannelManager::IsScreencastRunning() const { in IsScreencastRunning()
519 Bind(&ChannelManager::IsScreencastRunning_w, this)); in IsScreencastRunning()
522 bool ChannelManager::IsScreencastRunning_w() const { in IsScreencastRunning_w()
532 void ChannelManager::OnVideoCaptureStateChange(VideoCapturer* capturer, in OnVideoCaptureStateChange()
541 void ChannelManager::OnMessage(rtc::Message* message) { in OnMessage()
553 bool ChannelManager::StartAecDump(rtc::PlatformFile file) { in StartAecDump()
558 void ChannelManager::StopAecDump() { in StopAecDump()
563 bool ChannelManager::StartRtcEventLog(rtc::PlatformFile file) { in StartRtcEventLog()
568 void ChannelManager::StopRtcEventLog() { in StopRtcEventLog()