WebRTC詳解-zz

一、WebRTC目的

WebRTC(Web Real-Time Communication)項目的最終目的主要是讓Web開發者可以基於瀏覽器(Chrome\FireFox\...)
輕易快捷開發出豐富的實時多媒體應用,而無需下載安裝任何插件,Web開發者也無需關注多媒體的數字信號處理過程,
只需編寫簡單的Javascript程序便可實現,W3C等組織正在制定Javascript 標準API,目前是WebRTC 1.0版本,Draft狀態, 網址
另外WebRTC還但願可以創建一個多互聯網瀏覽器間健壯的實時通訊的平臺,造成開發者與瀏覽器廠商良好的生態環境。
同時,Google也但願和致力於讓WebRTC的技術成爲HTML5標準之一,可見Google佈局之深遠。

二、WebRTC架構圖

 
架構圖顏色標識說明:
(1)紫色部分是Web開發者API層;
(2)藍色實線部分是面向瀏覽器廠商的API層(也就是紅色框標內模塊,也是本人專一研究的部分)
(3)藍色虛線部分瀏覽器廠商能夠自定義實現
 

三、WebRTC架構組件介紹

 
(1) Your Web App
Web開發者開發的程序,Web開發者能夠基於集成WebRTC的瀏覽器提供的web API開發基於視頻、音頻的實時通訊應用。
 
(2) Web API
面向第三方開發者的WebRTC標準API(Javascript),
使開發者可以容易地開發出相似於網絡視頻聊天的web應用,最新的標準化進程能夠查看 這裏

(3) WebRTC Native C++ API
本地C++ API層,使瀏覽器廠商容易實現WebRTC標準的Web API,抽象地對數字信號過程進行處理。
 
(4) Transport / Session
傳輸/會話層
會話層組件採用了libjingle庫的部分組件實現,無須使用xmpp/jingle協議

a.  RTP Stack協議棧
Real Time Protocol

b.  STUN/ICE
能夠經過STUN和ICE組件來創建不一樣類型網絡間的呼叫鏈接。

c.  Session Management
一個抽象的會話層,提供會話創建和管理功能。該層協議留給應用開發者自定義實現。
 
(5) VoiceEngine
音頻引擎是包含一系列音頻多媒體處理的框架,包括從視頻採集卡到網絡傳輸端等整個解決方案。
PS:VoiceEngine是WebRTC極具價值的技術之一,是Google收購GIPS公司後開源的。
在VoIP上,技術業界領先,後面的文章會詳細瞭解
 
a.  iSAC
Internet Speech Audio Codec
針對VoIP和音頻流的寬帶和超寬帶音頻編解碼器,是WebRTC音頻引擎的默認的編解碼器
採樣頻率:16khz,24khz,32khz;(默認爲16khz)
自適應速率爲10kbit/s ~ 52kbit/;
自適應包大小:30~60ms;
算法延時:frame + 3ms
 
b.  iLBC
Internet Low Bitrate Codec
VoIP音頻流的窄帶語音編解碼器
採樣頻率:8khz;
20ms幀比特率爲15.2kbps
30ms幀比特率爲13.33kbps
標準由IETF RFC3951和RFC3952定義

c.  NetEQ for Voice
針對音頻軟件實現的語音信號處理元件
NetEQ算法:自適應抖動控制算法以及語音包丟失隱藏算法。使其可以快速且高解析度地適應不斷變化的網絡環境,確保音質優美且緩衝延遲最小。
是GIPS公司獨步天下的技術,可以有效的處理因爲網絡抖動和語音包丟失時候對語音質量產生的影響。
PS:NetEQ 也是WebRTC中一個極具價值的技術,對於提升VoIP質量有明顯效果,加以AEC\NR\AGC等模塊集成使用,效果更好。
 
d.  Acoustic Echo Canceler (AEC)
回聲消除器是一個基於軟件的信號處理元件,能實時的去除mic採集到的回聲。
 
e.  Noise Reduction (NR)
噪聲抑制也是一個基於軟件的信號處理元件,用於消除與相關VoIP的某些類型的背景噪聲(嘶嘶聲,風扇噪音等等… …)
 
(6) VideoEngine
WebRTC視頻處理引擎
VideoEngine是包含一系列視頻處理的總體框架,從攝像頭採集視頻到視頻信息網絡傳輸再到視頻顯示整個完整過程的解決方案。
 
a.  VP8
視頻圖像編解碼器,是WebRTC視頻引擎的默認的編解碼器
VP8適合實時通訊應用場景,由於它主要是針對低延時而設計的編解碼器。
PS:VPx編解碼器是Google收購ON2公司後開源的,VPx如今是WebM項目的一部分,而WebM項目是Google致力於推進的HTML5標準之一
 
b.  Video Jitter Buffer
視頻抖動緩衝器,能夠下降因爲視頻抖動和視頻信息包丟失帶來的不良影響。
 
c.  Image enhancements
圖像質量加強模塊
對網絡攝像頭採集到的圖像進行處理,包括明暗度檢測、顏色加強、降噪處理等功能,用來提高視頻質量。
 

四、WebRTC核心模塊API

(1)、網絡傳輸模塊:libjingle

WebRTC重用了libjingle的一些組件,主要是network和transport組件,關於libjingle的文檔資料能夠查看 這裏

(2)、音頻、視頻圖像處理的主要數據結構
常量\VideoEngine\VoiceEngine
 
注意:如下全部的方法、類、結構體、枚舉常量等都在webrtc命名空間裏  

類、結構體、枚舉常量html

頭文件web

說明算法

Structuresapi

common_types.h瀏覽器

Lists the structures common to the VoiceEngine & VideoEngine網絡

Enumerators數據結構

common_types.h架構

List the enumerators common to the  VoiceEngine & VideoEngine框架

Classestcp

common_types.h

List the classes common to VoiceEngine & VideoEngine

class VoiceEngine

voe_base.h

How 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 VideoEngine

vie_base.h

How 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

頭文件

說明

VoEAudioProcessing

voe_audio_processing.h

Adds support for Noise Suppression (NS), Automatic Gain Control (AGC) and Echo Control (EC). Receiving side VAD is also included.

VoEBase

voe_base.h

Enables full duplex VoIP using G.711.
NOTE: This API must always be created.

VoECallReport

voe_call_report.h

Adds support for call reports which contains number of dead-or-alive detections, RTT measurements, and Echo metrics.

VoECodec

voe_codec.h

Adds non-default codecs (e.g. iLBC, iSAC, G.722 etc.), Voice Activity Detection (VAD) support.

VoEDTMF

voe_dtmf.h

Adds telephone event transmission, DTMF tone generation and telephone event detection. (Telephone events include DTMF.)

VoEEncryption

voe_encryption.h

Adds external encryption/decryption support.

VoEErrors

voe_errors.h

Error Codes for the VoiceEngine

VoEExternalMedia

voe_external_media.h

Adds support for external media processing and enables utilization of an external audio resource.

VoEFile

voe_file.h

Adds file playback, file recording and file conversion functions.

VoEHardware

voe_hardware.h

Adds sound device handling, CPU load monitoring and device information functions.

VoENetEqStats

voe_neteq_stats.h

Adds buffer statistics functions.

VoENetwork

voe_network.h

Adds external transport, port and address filtering, Windows QoS support and packet timeout notifications.

VoERTP_RTCP

voe_rtp_rtcp.h

Adds support for RTCP sender reports, SSRC handling, RTP/RTCP statistics, Forward Error Correction (FEC), RTCP APP, RTP capturing and RTP keepalive.

VoEVideoSync

voe_video_sync.h

Adds RTP header modification support, playout-delay tuning and monitoring.

VoEVolumeControl

voe_volume_control.h

Adds speaker volume controls, microphone volume controls, mute support, and additional stereo scaling methods.



(4)、視頻引擎(VideoEngine)模塊 APIs

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

sub-API

頭文件

說明

ViEBase

vie_base.h

Basic functionality for creating a VideoEngine instance, channels and VoiceEngine interaction.

NOTE: This API must always be created.

ViECapture

vie_capture.h

Adds support for capture device allocation as well as capture device capabilities.

ViECodec

vie_codec.h

Adds non-default codecs, codec settings and packet loss functionality.

ViEEncryption

vie_encryption.h

Adds external encryption/decryption support.

ViEErrors

vie_errors.h

Error codes for the VideoEngine

ViEExternalCodec

vie_external_codec.h

Adds support for using external codecs.

ViEFile

vie_file.h

Adds support for file recording, file playout, background images and snapshot.

ViEImageProcess

vie_image_process.h

Adds effect filters, deflickering, denoising and color enhancement.

ViENetwork

vie_network.h

Adds send and receive functionality, external transport, port and address filtering, Windows QoS support, packet timeout notification and changes to network settings.

ViERender

vie_render.h

Adds rendering functionality.

ViERTP_RTCP

vie_rtp_rtcp.h

Adds support for RTCP reports, SSRS handling RTP/RTCP statistics, NACK/FEC, keep-alive functionality and key frame request methods.

 
 
歡迎指出不對之處:zengxijin@qq.com
 
/==================================================================================================================/
    Author: zengxijin    zengxijin@qq.com     歡迎轉載,請註明出處
/========================================================================================
相關文章
相關標籤/搜索