Reputation: 1733
I want to use WebRTC's media layer with proprietary signaling on IOS. Is it possible to use only the WebRTC media layer from the ObjC library that has been released for IOS (libjingle_peerconnection_objc.a)?
Upvotes: 2
Views: 554
Reputation: 21
If you want to replace media part only in your proprietary solution you can use VoiceEngine from WebRTC.
It's a part of webrtc's core and peer connection api is built on top of this. You should be aware that at your disposal will be RTP sender/receiver + voice processing. Security layer, NAT traversal, etc should be implemented by yourself.
Upvotes: 0
Reputation: 2128
yes.
Upvotes: 1