WebRTC音视频引擎研究--整体架构分析

转自:MeAndJack

WebRTC官网

WebRTC目的

WebRTC(Web Real-Time Communication)项目的最终目的主要是让Web开发者能够基于浏览器(Chrome\FireFox…)轻易快捷开发出丰富的实时多媒体应用,而无需下载安装任何插件,Web开发者也无需关注多媒体的数字信号处理过程,只需编写简单的Javascript程序即可实现,W3C等组织正在制定Javascript 标准API,目前是WebRTC 1.0版本,Draft状态,网址;另外WebRTC还希望能够建立一个多互联网浏览器间健壮的实时通信的平台,形成开发者与浏览器厂商良好的生态环境。同时,Google也希望和致力于让WebRTC的技术成为HTML5标准之一,可见Google布局之深远。

WebRTC架构图

webrtc-structure

架构图颜色标识说明:
(1)紫色部分是Web开发者API层;
(2)蓝色实线部分是面向浏览器厂商的API层(也就是红色框标内模块,也是本人专注研究的部分)
(3)蓝色虚线部分浏览器厂商可以自定义实现

WebRTC架构组件介绍

Your Web App

Web开发者开发的程序,Web开发者可以基于集成WebRTC的浏览器提供的web API开发基于视频、音频的实时通信应用。

Web API

面向第三方开发者的WebRTC标准API(Javascript),使开发者能够容易地开发出类似于网络视频聊天的web应用,最新的标准化进程可以查看这里。

WebRTC Native C++ API

本地C++ API层,使浏览器厂商容易实现WebRTC标准的Web API,抽象地对数字信号过程进行处理。

Transport / Session

传输/会话层
会话层组件采用了libjingle库的部分组件实现,无须使用xmpp/jingle协议

  • RTP Stack协议栈: Real Time Protocol
  • STUN/ICE: 可以通过STUN和ICE组件来建立不同类型网络间的呼叫连接。
  • Session Management: 一个抽象的会话层,提供会话建立和管理功能。该层协议留给应用开发者自定义实现。

VoiceEngine

音频引擎是包含一系列音频多媒体处理的框架,包括从视频采集卡到网络传输端等整个解决方案。
PS:VoiceEngine是WebRTC极具价值的技术之一,是Google收购GIPS公司后开源的。在VoIP上,技术业界领先,后面的文章会详细了解

  • iSAC

Internet Speech Audio Codec
针对VoIP和音频流的宽带和超宽带音频编解码器,是WebRTC音频引擎的默认的编解码器
采样频率:16khz,24khz,32khz;(默认为16khz)
自适应速率为10kbit/s ~ 52kbit/;
自适应包大小:30~60ms;
算法延时:frame + 3ms

  • iLBC

Internet Low Bitrate Codec
VoIP音频流的窄带语音编解码器
采样频率:8khz;
20ms帧比特率为15.2kbps
30ms帧比特率为13.33kbps
标准由IETF RFC3951和RFC3952定义

  • NetEQ for Voice

针对音频软件实现的语音信号处理元件
NetEQ算法:自适应抖动控制算法以及语音包丢失隐藏算法。使其能够快速且高解析度地适应不断变化的网络环境,确保音质优美且缓冲延迟最小。
是GIPS公司独步天下的技术,能够有效的处理由于网络抖动和语音包丢失时候对语音质量产生的影响。
PS:NetEQ 也是WebRTC中一个极具价值的技术,对于提高VoIP质量有明显效果,加以AEC\NR\AGC等模块集成使用,效果更好。

  • Acoustic Echo Canceler (AEC)

回声消除器是一个基于软件的信号处理元件,能实时的去除mic采集到的回声。

  • Noise Reduction (NR)

噪声抑制也是一个基于软件的信号处理元件,用于消除与相关VoIP的某些类型的背景噪声(嘶嘶声,风扇噪音等等… …)

VideoEngine

WebRTC视频处理引擎
VideoEngine是包含一系列视频处理的整体框架,从摄像头采集视频到视频信息网络传输再到视频显示整个完整过程的解决方案。

  • VP8

视频图像编解码器,是WebRTC视频引擎的默认的编解码器
VP8适合实时通信应用场景,因为它主要是针对低延时而设计的编解码器。
PS:VPx编解码器是Google收购ON2公司后开源的,VPx现在是WebM项目的一部分,而WebM项目是Google致力于推动的HTML5标准之一

  • Video Jitter Buffer

视频抖动缓冲器,可以降低由于视频抖动和视频信息包丢失带来的不良影响。

  • Image enhancements

图像质量增强模块
对网络摄像头采集到的图像进行处理,包括明暗度检测、颜色增强、降噪处理等功能,用来提升视频质量。

WebRTC核心模块API

(1) 网络传输模块:libjingle

WebRTC重用了libjingle的一些组件,主要是network和transport组件,关于libjingle的文档资料可以查看这里。

(2) 音频、视频图像处理的主要数据结构

	常量\VideoEngine\VoiceEngine

注意:以下所有的方法、类、结构体、枚举常量等都在webrtc命名空间里

类、结构体、枚举常量头文件说明
Structurescommon_types.hLists the structures common to the VoiceEngine & VideoEngine
Enumeratorscommon_types.hList the enumerators common to the VoiceEngine & VideoEngine
Classescommon_types.hList the classes common to VoiceEngine & VideoEngine
class VoiceEnginevoe_base.hHow to allocate and release resources for the VoiceEngine using factory methods in the VoiceEngine class. It also lists the APIs which are required to enable file tracing and/or traces as callback messages
class VideoEnginevie_base.hHow to allocate and release resources for the VideoEngine using factory methods in the VideoEngine class. It also lists the APIs which are required to enable file tracing and/or traces as callback messages

(3) 音频引擎(VoiceEngine)模块 APIs

下表列的是目前在 VoiceEngine中可用的sub APIs

sub-API头文件说明
VoEAudioProcessingvoe_audio_processing.hAdds support for Noise Suppression (NS), Automatic Gain Control (AGC) and Echo Control (EC). Receiving side VAD is also included.
VoEBasevoe_base.hEnables full duplex VoIP using G.711.NOTE: This API must always be created.
VoECallReportvoe_call_report.hAdds support for call reports which contains number of dead-or-alive detections, RTT measurements, and Echo metrics.
VoECodecvoe_codec.hAdds non-default codecs (e.g. iLBC, iSAC, G.722 etc.), Voice Activity Detection (VAD) support.
VoEDTMFvoe_dtmf.hAdds telephone event transmission, DTMF tone generation and telephone event detection. (Telephone events include DTMF.)
VoEEncryptionvoe_encryption.hAdds external encryption/decryption support.
VoEErrorsvoe_errors.hError Codes for the VoiceEngine
VoEExternalMediavoe_external_media.hAdds support for external media processing and enables utilization of an external audio resource.
VoEFilevoe_file.hAdds file playback, file recording and file conversion functions.
VoEHardwarevoe_hardware.hAdds sound device handling, CPU load monitoring and device information functions.
VoENetEqStatsvoe_neteq_stats.hAdds buffer statistics functions.
VoENetworkvoe_network.hAdds external transport, port and address filtering, Windows QoS support and packet timeout notifications.
VoERTP_RTCPvoe_rtp_rtcp.hAdds support for RTCP sender reports, SSRC handling, RTP/RTCP statistics, Forward Error Correction (FEC), RTCP APP, RTP capturing and RTP keepalive.
VoEVideoSyncvoe_video_sync.hAdds RTP header modification support, playout-delay tuning and monitoring.
VoEVolumeControlvoe_volume_control.hAdds speaker volume controls, microphone volume controls, mute support, and additional stereo scaling methods.

(4)、视频引擎(VideoEngine)模块 APIs

下表列的是目前在 VideoEngine中可用的sub APIs

sub-API头文件说明
ViEBasevie_base.hBasic functionality for creating a VideoEngine instance, channels and VoiceEngine interaction.NOTE: This API must always be created.
ViECapturevie_capture.hAdds support for capture device allocation as well as capture device capabilities.
ViECodecvie_codec.hAdds non-default codecs, codec settings and packet loss functionality.
ViEEncryptionvie_encryption.hAdds external encryption/decryption support.
ViEErrorsvie_errors.hError codes for the VideoEngine
ViEExternalCodecvie_external_codec.hAdds support for using external codecs.
ViEFilevie_file.hAdds support for file recording, file playout, background images and snapshot.
ViEImageProcessvie_image_process.hAdds effect filters, deflickering, denoising and color enhancement.
ViENetworkvie_network.hAdds send and receive functionality, external transport, port and address filtering, Windows QoS support, packet timeout notification and changes to network settings.
ViERendervie_render.hAdds rendering functionality.
ViERTP_RTCPvie_rtp_rtcp.hAdds support for RTCP reports, SSRS handling RTP/RTCP statistics, NACK/FEC, keep-alive functionality and key frame request methods.
文章目录
  1. 1. WebRTC目的
  2. 2. WebRTC架构图
  3. 3. WebRTC架构组件介绍
    1. 3.0.1. Your Web App
    2. 3.0.2. Web API
    3. 3.0.3. WebRTC Native C++ API
    4. 3.0.4. Transport / Session
    5. 3.0.5. VoiceEngine
    6. 3.0.6. VideoEngine
  • 4. WebRTC核心模块API
  • |