String sdpOffer = params.get("sdpOffer").getAsString();
log.debug("Received SDP offer");
// Media Logic
MediaPipeline mp = mpf.create();
WebRtcEndpoint webRtcEndpoint = mp.newWebRtcEndpoint().build();
FaceOverlayFilter faceOverlayFilter = mp.newFaceOverlayFilter().build();
faceOverlayFilter.setOverlayedImage(
"http://files.kurento.org/imgs/mario-wings.png", -0.35F, -1.2F,
1.6F, 1.6F);
webRtcEndpoint.connect(faceOverlayFilter);