WebRTC系列-SDP之setRemoteDescription

文章目录

  • 综述
  • 1. PushdownTransportDescription
    • 1.1 JsepTransport创建
    • 1.2 SetRemoteJsepTransportDescription调用
  • 2. UpdateTransceiversAndDataChannels(CreateChannels)
  • 3. UpdateSessionState
    • 3.1 EnableSending
    • 3.2 PushdownMediaDescription
  • 4. 音频 编码器的创建:
  • 4.2 其他处理

setRemoteDescription()是WebRTC中PeerConnection对外的重要接口之一,无论是offer还是answer端,在收到对方的sdp后都需要调用setRemoteDescription()方法,从而将对方的sdp交给We

你可能感兴趣的:(WebRTC进阶,webrtc)