--
You received this message because you are subscribed to the Google Groups "kurento" group.
To unsubscribe from this group and stop receiving emails from it, send an email to kurento+u...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
callerWebRtcEndpoint.on('OnIceGatheringDone', function(error) {
candidates_ready[callerId] = true;
if (candidates_ready[calleeId]) {
recorderEndpoint.record();
}
});
calleeWebRtcEndpoint.on('OnIceGatheringDone', function(error) {
candidates_ready[calleeId] = true;
if (candidates_ready[callerId]) {
recorderEndpoint.record();
}
}); recorderEndpoint.record();