webrtc获取PeerConnection

版权声明:本文为博主原创文章,未经博主允许不得转载。 如果转载,需要获得作者授权。保留追究法律责任的权力。 https://blog.csdn.net/chinabinlang/article/details/80595794

在webrtc中的接口是PeerConnectionInterface, 实现类是PeerConnection;


获取PeerConnection的方法:

  PeerConnection* GetInternalPeerConnection() {
    auto* pci =
        static_cast<PeerConnectionProxyWithInternal<PeerConnectionInterface>*>(
            pc());
    return static_cast<PeerConnection*>(pci->internal());
  }

猜你喜欢

转载自blog.csdn.net/chinabinlang/article/details/80595794