Home
last modified time | relevance | path

Searched refs:video_channel (Results 1 – 8 of 8) sorted by relevance

/external/webrtc/pc/
Dchannel_manager.cc288 auto video_channel = std::make_unique<VideoChannel>( in CreateVideoChannel() local
293 video_channel->Init_w(rtp_transport); in CreateVideoChannel()
295 VideoChannel* video_channel_ptr = video_channel.get(); in CreateVideoChannel()
296 video_channels_.push_back(std::move(video_channel)); in CreateVideoChannel()
300 void ChannelManager::DestroyVideoChannel(VideoChannel* video_channel) { in DestroyVideoChannel() argument
302 if (!video_channel) { in DestroyVideoChannel()
307 [&] { DestroyVideoChannel(video_channel); }); in DestroyVideoChannel()
315 return p.get() == video_channel; in DestroyVideoChannel()
Dchannel_manager_unittest.cc81 cricket::VideoChannel* video_channel = cm_->CreateVideoChannel( in TestCreateDestroyChannels() local
86 EXPECT_TRUE(video_channel != nullptr); in TestCreateDestroyChannels()
92 cm_->DestroyVideoChannel(video_channel); in TestCreateDestroyChannels()
Dchannel_manager.h127 void DestroyVideoChannel(VideoChannel* video_channel);
Dpeer_connection_bundle_unittest.cc103 return (video_channel() ? video_channel()->rtp_transport() : nullptr); in video_rtp_transport()
106 cricket::VideoChannel* video_channel() { in video_channel() function in webrtc::PeerConnectionWrapperForBundleTest
Drtc_stats_collector.cc1940 auto* video_channel = static_cast<cricket::VideoChannel*>(channel); in PrepareTransceiverStatsInfos_s_w() local
1941 RTC_DCHECK(video_stats.find(video_channel->media_channel()) == in PrepareTransceiverStatsInfos_s_w()
1943 video_stats[video_channel->media_channel()] = in PrepareTransceiverStatsInfos_s_w()
1982 auto* video_channel = in PrepareTransceiverStatsInfos_s_w() local
1984 RTC_DCHECK(video_stats[video_channel->media_channel()]); in PrepareTransceiverStatsInfos_s_w()
1986 std::move(video_stats[video_channel->media_channel()]); in PrepareTransceiverStatsInfos_s_w()
Dpeer_connection_media_unittest.cc1117 auto video_channel = caller->media_engine()->GetVideoChannel(0); in TEST_P() local
1118 video_channel->set_fail_set_send_codecs(true); in TEST_P()
1140 auto video_channel = caller->media_engine()->GetVideoChannel(0); in TEST_P() local
1141 video_channel->set_fail_set_send_codecs(true); in TEST_P()
1146 video_channel->set_fail_set_send_codecs(false); in TEST_P()
Dpeer_connection.cc3995 cricket::VideoMediaChannel* video_channel = video_media_channel(); in SetConfiguration() local
3996 if (video_channel) { in SetConfiguration()
3997 video_channel->SetVideoCodecSwitchingEnabled( in SetConfiguration()
4423 auto* video_channel = static_cast<cricket::VideoChannel*>( in video_media_channel() local
4425 if (video_channel) { in video_media_channel()
4426 return video_channel->media_channel(); in video_media_channel()
6436 cricket::VideoChannel* video_channel = CreateVideoChannel(video->name); in CreateChannels() local
6437 if (!video_channel) { in CreateChannels()
6441 GetVideoTransceiver()->internal()->SetChannel(video_channel); in CreateChannels()
6483 cricket::VideoChannel* video_channel = channel_manager()->CreateVideoChannel( in CreateVideoChannel() local
[all …]
Dstats_collector.cc939 auto* video_channel = in ExtractBweInfo() local
941 if (!video_channel) { in ExtractBweInfo()
944 video_channel->FillBitrateInfo(&bwe_info); in ExtractBweInfo()