Open suganthikarthick opened 9 years ago
usrsctp
is needed for WebRTC data channel support. If you are only interested in audio / video, it should be possible to build without it.javascriptcoregtk
and seed
are needed for the OpenWebRTC 'bridge' code which basically bridges the OpenWebRTC C API to the JavaScript WebRTC API. If you write only native applications, you do not need it and I am intending to make building those parts what is called a 'variant' in cerbero so that people can more easily disable them for embedded platforms where that layer is perhaps not so interesting or is more difficult to cross-compile. I need to do this to finish off the Raspberry Pi build, for example.srtp
is a standard part of WebRTC and must be built.videorepair
is needed.ercolorspace
is mostly for ARM optimisations for colour space conversion, but depending on your device, doing software colour space conversion may not be desirable / possible anyway. And in your case, the decoder should decode to the format that the encoder wants (I420 or similar) so you should not need it.sctp
is only need if you want data channel support.Thank you. We are using ARM architecture.
Hi all, We are using openWRT for cross compiling OpenWebrtc. Our requirement is we have a target board, where we need to receive the media streams from a camera through WiFi, sending the media streams in a webrtc compatible format to the cloud (basically webrtc based browsers). We are using openwebrtc for this purpose. FYI, we do not need any display at target side. GUI support is not needed.
We have the following queries when porting the openwebrtc to our target.
It would be helpful if you give your suggestion on this.
Thank you.