Webrtc Intro - Native APIs

来源:互联网 发布:js女装官网价位 编辑:程序博客网 时间:2024/05/21 08:57




Native APIs

The WebRTC native APIs are implemented based on the following WebRTC spec. 

The code that implements WebRTC native APIs (including the Stream and the PeerConnection APIs) are availablehere. A sample client application is also provided there.

The target audience of this document are those who want to use WebRTC Native APIs to implement WebRTC JavaScript APIs or to develop native RTC applications.

Contents

  1. 1Block diagram
  2. 2Calling sequences
    1. 2.1Set up a call
    2. 2.2Receive a call
    3. 2.3Close down a call
  3. 3Threading model
  4. 4API documentation
  5. 5Reference

Block diagram



Calling sequences

Set up a call

Receive a call

Close down a call


Threading model

WebRTC native APIs use two globally available threads: the signaling thread and the worker thread. Depending on how the PeerConnection factory is created, the application can either provide those 2 threads or just let them be created internally.

The calls to the Stream APIs and the PeerConnection APIs will be proxied to the signaling thread which means that the application can call those APIs from whatever thread.

All callbacks will be made on the signaling thread. The application should return the callback as quickly as possible to avoid blocking the signaling thread. Resource intensive processes should be posted to a different thread.

The worker thread is used to handle more resource intensive processes such as data streaming.

API documentation

  • Stream APIs (mediastream.h)
  • PeerConnection APIs (peerconnection.h)

Reference

The current HTML5 specification for WebRTC is here: http://dev.w3.org/2011/webrtc/editor/webrtc.html

The source code of the WebRTC Native API is here:
https://chromium.googlesource.com/external/webrtc/+/master/talk/app/webrtc

Client and server sample apps can be found here:
https://chromium.googlesource.com/external/webrtc/+/master/talk/examples

0 0
原创粉丝点击