webrtc 关键模块创建的时机

文章目录

    • [一 webrtc 各个模块创建的时机](#一 webrtc 各个模块创建的时机)
      • [1 CreatePeerConnectionFactory](#1 CreatePeerConnectionFactory)
        • [1.1.1 创建的模块](#1.1.1 创建的模块)
        • [1.1.2 关键代码](#1.1.2 关键代码)
      • 2PeerConnectionFactory::Initialize
        • [1.2.1 创建的模块](#1.2.1 创建的模块)
        • [1.2.2 关键代码](#1.2.2 关键代码)
      • [3 CreatePeerConnection](#3 CreatePeerConnection)
        • [1.3.1 创建的模块](#1.3.1 创建的模块)
        • [1.3.2 关键代码](#1.3.2 关键代码)
      • [4 PeerConnection::Initialize](#4 PeerConnection::Initialize)
        • [1.4.1 创建的模块](#1.4.1 创建的模块)
        • [1.4.2 关键代码](#1.4.2 关键代码)
      • 5PeerConnection::AddTransceiver
        • [1.5.1 创建的模块](#1.5.1 创建的模块)
        • [1.5.2 关键代码](#1.5.2 关键代码)
      • 6PeerConnection::SetLocalDescription
        • 6.1PushdownTransportDescription
          • [1.6.1.1 创建的模块](#1.6.1.1 创建的模块)
          • [1.6.1.2 关键代码](#1.6.1.2 关键代码)
        • 6.2UpdateTransceiversAndDataChannels
          • [1.6.2.1 创建的模块](#1.6.2.1 创建的模块)
          • [1.6.2.2 关键代码](#1.6.2.2 关键代码)
        • [6.3 UpdateSessionState](#6.3 UpdateSessionState)
          • [1.6.3.1 创建的模块](#1.6.3.1 创建的模块)
          • [1.6.3.2 关键代码](#1.6.3.2 关键代码)

一 webrtc 各个模块创建的时机

1 CreatePeerConnectionFactory

1.1.1 创建的模块
c 复制代码
TaskQueueFactory
CallFactory
CompositeMediaEngine
WebRtcVoiceEngine
WebRtcVideoEngine
1.1.2 关键代码
c 复制代码
/*
api/create_peerconnection_factory.h
CreatePeerConnectionFactory 函数

PeerConnectionFactoryDependencies dependencies;
dependencies.task_queue_factory = CreateDefaultTaskQueueFactory();
dependencies.call_factory = CreateCallFactory();
创建:

dependencies.media_engine = cricket::CreateMediaEngine(std::move(media_dependencies));
创建了:
CompositeMediaEngine
WebRtcVoiceEngine
WebRtcVideoEngine
*/

2PeerConnectionFactory::Initialize

1.2.1 创建的模块
c 复制代码
BasicNetworkManager
BasicPacketSocketFactory
ChannelManager
1.2.2 关键代码
c 复制代码
/*
// 关键代码
default_network_manager_.reset(new rtc::BasicNetworkManager());	
default_socket_factory_.reset(
      new rtc::BasicPacketSocketFactory(network_thread_));
	  
channel_manager_ = std::make_unique<cricket::ChannelManager>(
	  std::move(media_engine_), std::make_unique<cricket::RtpDataEngine>(),
	  worker_thread_, network_thread_);

// 收集音频编码器
channelManager::Init -> media_engine_->Init  -> voice().Init();
*/

3 CreatePeerConnection

1.3.1 创建的模块
c 复制代码
Call
RtpTransportControllerSend
BasicPortAllocator
PeerConnection
1.3.2 关键代码
c 复制代码
/*
PeerConnectionFactory::CreatePeerConnection

创建call
    PeerConnectionFactory::CreateCall_w
    CallFactory::CreateCall
    Call::Create
创建:RtpTransportControllerSend
创建 BasicPortAllocator
*/

4 PeerConnection::Initialize

1.4.1 创建的模块
c 复制代码
JsepTransportController
WebRtcSessionDescriptionFactory
1.4.2 关键代码
c 复制代码
// 创建JsepTransportController
transport_controller_.reset(new JsepTransportController(
      signaling_thread(), network_thread(), port_allocator_.get(),
      async_resolver_factory_.get(), config));
// 创建WebRtcSessionDescriptionFactory
webrtc_session_desc_factory_.reset(new WebRtcSessionDescriptionFactory(
  signaling_thread(), channel_manager(), this, session_id(),
  std::move(dependencies.cert_generator), certificate, &ssrc_generator_));

5PeerConnection::AddTransceiver

1.5.1 创建的模块
c 复制代码
RtpSenderInternal
RtpReceiverInternal
RtpTransceiver
1.5.2 关键代码
c 复制代码
/*
PeerConnection::CreateSender              RtpSenderInternal
PeerConnection::CreateReceiver            RtpReceiverInternal
PeerConnection::CreateAndAddTransceiver   RtpTransceiver
*/

6PeerConnection::SetLocalDescription

6.1PushdownTransportDescription
1.6.1.1 创建的模块
c 复制代码
DtlsTransportInternal 
RtpTransport 
SrtpTransport
DtlsSrtpTransport 
RtpTransportInternal
1.6.1.2 关键代码
c 复制代码
/*
创建:
PeerConnection::PushdownTransportDescription  
transport_controller_->SetLocalDescription
JsepTransportController::ApplyDescription_n 
JsepTransportController::MaybeCreateJsepTransport
*/
6.2UpdateTransceiversAndDataChannels
1.6.2.1 创建的模块
c 复制代码
VoiceMediaChannel
VoiceChannel
或
VideoMediaChannel
VideoChannel
1.6.2.2 关键代码
c 复制代码
/*
创建:
VoiceMediaChannel
VoiceChannel

PeerConnection::UpdateTransceiversAndDataChannels		
PeerConnection::UpdateTransceiverChannel
PeerConnection::CreateVoiceChannel
channel_manager()->CreateVoiceChannel
	
关键代码:			
创建:VoiceMediaChannel
VoiceMediaChannel* media_channel = media_engine_->voice().CreateMediaChannel(call, media_config, options, crypto_options);
创建:VoiceChannel    成员有:VoiceMediaChannel  rtp_transport(MaybeCreateJsepTransport 创建的rtp_transport)

或

创建:
VideoMediaChannel
VideoChannel

PeerConnection::UpdateTransceiversAndDataChannels		
PeerConnection::UpdateTransceiverChannel
PeerConnection::CreateVideoChannel	  
channel_manager()->CreateVideoChannel
	
关键代码:			
创建 VideoMediaChannel
VideoMediaChannel* media_channel = media_engine_->video().CreateMediaChannel
创建:VideoChannel 成员有:VideoMediaChannel  rtp_transport(MaybeCreateJsepTransport 创建的rtp_transport)
*/
6.3 UpdateSessionState
1.6.3.1 创建的模块
c 复制代码
WebRtcAudioSendStream
webrtc::AudioSendStream
ChannelSend
WebRtcVideoSendStream
VideoSendStream
1.6.3.2 关键代码
c 复制代码
/*
创建 WebRtcAudioSendStream
创建 webrtc::AudioSendStream
创建:ChannelSend

PeerConnection::UpdateSessionState
PeerConnection::PushdownMediaDescription
BaseChannel::SetLocalContent
VoiceChannel::SetLocalContent_w
BaseChannel::UpdateLocalStreams_w
WebRtcVoiceMediaChannel::AddSendStream
WebRtcVoiceMediaChannel::WebRtcAudioSendStream
AudioSendStream::AudioSendStream  创建 webrtc::AudioSendStream
voe::CreateChannelSend 创建:ChannelSend

或

创建:WebRtcVideoSendStream
创建: VideoSendStream

PeerConnection::UpdateSessionState
PeerConnection::PushdownMediaDescription
BaseChannel::SetLocalContent
VoiceChannel::SetLocalContent_w
BaseChannel::UpdateLocalStreams_w
WebRtcVideoChannel::AddSendStream
WebRtcVideoChannel::WebRtcVideoSendStream
备注:
1 创建 WebRtcVideoSendStream
2 创建 webrtc::VideoSendStream::Config,把自己传递给 config.send_transport

VideoChannel::SetRemoteContent_w
WebRtcVideoChannel::SetSendParameters
WebRtcVideoChannel::ApplyChangedParams
WebRtcVideoChannel::WebRtcVideoSendStream::SetSendParameter
WebRtcVideoChannel::WebRtcVideoSendStream::SetCodec
WebRtcVideoChannel::WebRtcVideoSendStream::RecreateWebRtcStream
Call::CreateVideoSendStream (参数有webrtc::VideoSendStream::Config)
创建 VideoSendStream
创建 VideoSendStreamImpl(参数有webrtc::VideoSendStream::Config)
创建 rtp_video_sender 其中 参数send_transport 就是 WebRtcVideoChannel
备注:将来分片rtp数据就是通过WebRtcVideoChannel 发送出去
*/
相关推荐
.select.14 分钟前
TCP 3
服务器·网络·tcp/ip
阿捏利23 分钟前
详解网络协议(十六)UDP协议
网络·网络协议·udp
芯智工坊34 分钟前
第13章 Mosquitto监控与日志管理
前端·网络·人工智能·mqtt·开源
派大星酷36 分钟前
Cookie、Session、Token、JWT 原理 + 流程 + 区别 + 实战
java·网络
weixin_4307509337 分钟前
AC旁挂+不同区域不同网段+同名wifi同密码 ——实现无线终端智能漫游
网络·华为·无线·漫游
qqxhb1 小时前
23|工具生态全景:本地文件、网络、数据库、浏览器自动化
网络·数据库·自动化·ai编程·最小权限·人工确认
ALex_zry1 小时前
C++模板元编程实战技巧
网络·c++·windows
taxunjishu1 小时前
AGV 与伺服协同控制Profinet 转 Modbus TCP塔讯智能网关仓储场景应用实践
网络·网络协议
VOOHU 沃虎1 小时前
AI服务器多相电源设计:组合电感如何提升CPU/GPU供电效率
服务器·网络·信息与通信
电子科技圈2 小时前
赋能高端音频功能促进多样化设备创新——XMOS USB Audio平台实现四大功能升级
人工智能·mcu·音视频·智能家居·边缘计算·语音识别·智能硬件