当前位置:网站首页>webrtc代码解读一:音频数据的接收解码播放过程
webrtc代码解读一:音频数据的接收解码播放过程
2022-08-04 05:32:00 【睏哥RTC】
RTP connection创建过程(从下往上调用):
Channel::Channel调用RtpRtcp::CreateRtpRtcp
Channel::Channel 调用RtpReceiver::CreateAudioReceiver (RtpReceiver,这里注册Channel类为RTP包回调处理类)
ChannelProxy::ChannelProxy里调用new voe::Channel
CreateChannelAndProxy里调用new voe::ChannelProxy
AudioReceiveStream::AudioReceiveStream调用CreateChannelAndProxy
call::CreateAudioReceiveStream里new internal::AudioReceiveStream (成员列表里也保存了new出的对象,注意:internal::AudioReceiveStream 继承自webrtc::AudioReceiveStream )
WebRtcVoiceMediaChannel::RecreateAudioReceiveStream里调用: call::CreateAudioReceiveStream; (保存到成员变量:webrtc::AudioReceiveStream* stream_)
WebRtcVoiceMediaChannel构造函数等里调用RecreateAudioReceiveStream
WebRtcVoiceEngine::CreateChannel 里new出WebRtcVoiceMediaChannel对象
ChannelManager::CreateVoiceChannel里调用WebRtcVoiceEngine::CreateChannel
PeerConnection::CreateVoiceChannel里调用ChannelManager::CreateVoiceChannel
PeerConnection::CreateChannels里调用PeerConnection::CreateVoiceChannel
PeerConnection::ApplyLocalDescription里调用PeerConnection::CreateChannels
PeerConnection::SetLocalDescription里调用PeerConnection::ApplyLocalDescription
RTP回调函数注册:
注册SignalReadPacket的回调:
PeerConnection::SetLocalDescription->PeerConnection::ApplyLocalDescription->PeerConnection::PushdownTransportDescription -> JsepTransportController::SetLocalDescription->JsepTransportController::ApplyDescription_n -> JsepTransportController::MaybeCreateJsepTransport->JsepTransportController::CreateDtlsSrtpTransport-> DtlsSrtpTransport::SetDtlsTransports->RtpTransport::SetRtpPacketTransport -> new_packet_transport->SignalReadPacket.connect(this,&RtpTransport::OnReadPacket);
JsepTransportController::MaybeCreateJsepTransport -> JsepTransportController::CreateDtlsTransport -> new cricket::P2PTransportChannel
AllocationSequence::CreateUDPPorts调用UDPPort::Create
AllocationSequence::Init调用rtc::AsyncPacketSocket::connect(this, &AllocationSequence::OnReadPacket)
AllocationSequence::OnReadPacket调用UDPPort::OnReadPacket调用(Connection::OnReadPacket或Port::OnReadPacket)
Connection::OnReadPacket转发到P2PTransportChannel::OnReadPacket
注册SignalPacketReceived的回调:
PeerConnection::CreateVoiceChannel 调用 voice_channel->SetRtpTransport(rtp_transport); 调用BaseChannel::ConnectToRtpTransport 调用 rtp_transport_->SignalPacketReceived.connect(this,
&BaseChannel::OnPacketReceived);
RTP包投递过程:
AsyncUDPSocket::OnReadEvent发出SignalReadPacket事件, RtpTransport::OnReadPacket 处理事件,转发 BaseChannel::OnPacketReceived->BaseChannel::ProcessPacket->WebRtcVoiceMediaChannel::OnPacketReceived -> Call::DeliverPacket->Call::DeliverRtp -> audio_receiver_controller_.OnRtpPacket -> demuxer_.OnRtpPacket -> (sink->OnRtpPacket(packet) 此处sink为addsink添加的ChannelProxy指针) -> ChannelProxy::OnRtpPacket -> Channel::OnRtpPacket->Channel::ReceivePacket-> (rtp_receiver_->IncomingRtpPacket) -> RTPReceiverVideo::ParseRtpPacket ->Channel::OnReceivedPayloadData(rtp模块回调未解码原始帧) -> audio_coding_->IncomingPacket ->receiver_.InsertPacket -> NetEqImpl::InsertPacket -> NetEqImpl::InsertPacketInternal
音频解码:
AudioDeviceWindowsCore::DoRenderThread()->AudioDeviceBuffer::RequestPlayoutData->AudioTransportImpl::NeedMorePlayData->AudioTransportImpl::PullRenderData->AudioMixerImpl::Mix->AudioMixerImpl::GetAudioFromSources->AudioReceiveStream::GetAudioFrameWithInfo(AudioReceiveStream实现了AudioMixer::Source) ->ChannelProxy::GetAudioFrameWithInfo->Channel::GetAudioFrameWithInfo->AudioCodingModuleImpl::PlayoutData10Ms->AcmReceiver::GetAudio->NetEqImpl::GetAudio->NetEqImpl::GetAudioInternal -> NetEqImpl::Decode -> NetEqImpl::DecodeLoop
边栏推荐
猜你喜欢
随机推荐
第一章 绪论
Code to celebrate the Dragon Boat Festival - Zongzi, your heart
结构体传参-C语言
Detailed steps to install MySQL
[日常办公][shell]常用代码段
理想的生活
淘宝分布式文件系统存储引擎(一)
No matching function for call to 'RCTBridgeModuleNameForClass'
MySQL存储过程学习笔记(基于8.0)
LeetCode_Nov_4th_Week
LeetCode_Nov_5th_Week
Design and implementation of legal aid platform based on asp.net (with project link)
[开发杂项][VS Code]remote-ssd retry failed
The usefulness of bind() system call
LeetCode_22_Apr_4th_Week
LeetCode_Nov_1st_Week
[daily office][ssh]cheatsheet
[开发杂项][调试]debug into kernel
Rules.make - suitable for viewing in edit mode
2022在 Go (Golang) 中使用微服务的系统课程
![虚幻引擎 5 完整指南[2022六月最新课程学习内容]](/img/b3/fe90bca8166108e2e577d5a5e2ea6a.png)








