Package com.kurento.kmf.media

Examples of com.kurento.kmf.media.WebRtcEndpoint.processOffer()


        1.6F, 1.6F);
    webRtcEndpoint.connect(faceOverlayFilter);
    faceOverlayFilter.connect(webRtcEndpoint);

    // SDP Answer
    String sdpAnswer = webRtcEndpoint.processOffer(sdpOffer);
    JsonObject scParams = new JsonObject();
    scParams.addProperty("sdpAnswer", sdpAnswer);
    transaction.sendResponse(scParams);
  }
View Full Code Here


    webRtcEndpoint.connect(port);
    port.connect(webRtcEndpoint);
    room.joinParticipant(session, webRtcEndpoint, port);

    // SDP Answer
    String sdpAnswer = webRtcEndpoint.processOffer(sdpOffer);
    JsonObject scParams = new JsonObject();
    scParams.addProperty("sdpAnswer", sdpAnswer);
    transaction.sendResponse(scParams);
  }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.