|
|
|
|
@ -258,4 +258,25 @@ public boolean isPartialStreaming(Call call)
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Move origin of a partial desktop streaming.
|
|
|
|
|
*
|
|
|
|
|
* @param call the <tt>Call</tt> whose video transmission properties we are
|
|
|
|
|
* interested in.
|
|
|
|
|
* @param x new x coordinate origin
|
|
|
|
|
* @param y new y coordinate origin
|
|
|
|
|
*/
|
|
|
|
|
public void movePartialDesktopStreaming(Call call, int x,
|
|
|
|
|
int y)
|
|
|
|
|
{
|
|
|
|
|
CallJabberImpl callImpl = (CallJabberImpl)call;
|
|
|
|
|
MediaDevice device = callImpl.getDefaultDevice(MediaType.VIDEO);
|
|
|
|
|
|
|
|
|
|
if(device != null)
|
|
|
|
|
{
|
|
|
|
|
MediaService mediaService = JabberActivator.getMediaService();
|
|
|
|
|
mediaService.movePartialDesktopStreaming(device, x, y);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|