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 发送出去
*/
相关推荐
unfeeling_13 小时前
Keepalived实验
linux·服务器·网络
坐吃山猪14 小时前
OpenClaw04_Gateway常见问题
网络·gateway·openclaw
上海云盾商务经理杨杨14 小时前
2025年重大网络安全事件回顾与趋势分析
网络·安全·web安全
山河君14 小时前
四麦克风声源定位实战:基于 GCC-PHAT + 最小二乘法实现 DOA
算法·音视频·语音识别·信号处理·最小二乘法·tdoa
kylezhao201914 小时前
C# 的开闭原则(OCP)在工控上位机开发中的具体应用
网络·c#·开闭原则
白太岁14 小时前
通信:(5) 电路交换、报文交换与分组交换
运维·服务器·网络·网络协议
岛屿旅人15 小时前
2025年中东地区网络安全态势综述
网络·安全·web安全·网络安全
jack@london16 小时前
WSL访问本地代理网络
网络
olivesun8816 小时前
通讯设备供应商PSIRT网络安全日报自动化搭建指南20260225
网络
汽车仪器仪表相关领域16 小时前
中小型储能/轻型电动车电池管理中枢:BMS-100型电池管理系统 全场景实战全解
大数据·网络·人工智能