GUAC-1354: Add base Guacamole.VideoPlayer (no codec implementations at present). Allow custom video codec implementations via onvideo callback on Guacamole.Client.

This commit is contained in:
Michael Jumper
2015-10-18 22:07:01 -07:00
parent b9a97646ee
commit 3057db60ff
3 changed files with 165 additions and 32 deletions

View File

@@ -1183,7 +1183,7 @@ Guacamole.Display.VisibleLayer = function(width, height) {
/**
* The parent layer container of this layer, if any.
* @type Guacamole.Display.LayerContainer
* @type Guacamole.Display.VisibleLayer
*/
this.parent = null;
@@ -1275,11 +1275,11 @@ Guacamole.Display.VisibleLayer = function(width, height) {
};
/**
* Moves the upper-left corner of this LayerContainer to the given X and Y
* coordinate, sets the Z stacking order, and reparents this LayerContainer
* to the given LayerContainer.
* Moves the upper-left corner of this VisibleLayer to the given X and Y
* coordinate, sets the Z stacking order, and reparents this VisibleLayer
* to the given VisibleLayer.
*
* @param {Guacamole.Display.LayerContainer} parent The parent to set.
* @param {Guacamole.Display.VisibleLayer} parent The parent to set.
* @param {Number} x The X coordinate to move to.
* @param {Number} y The Y coordinate to move to.
* @param {Number} z The Z coordinate to move to.
@@ -1378,7 +1378,7 @@ Guacamole.Display.VisibleLayer = function(width, height) {
/**
* The next identifier to be assigned to the layer container. This identifier
* uniquely identifies each LayerContainer, but is unrelated to the index of
* uniquely identifies each VisibleLayer, but is unrelated to the index of
* the layer, which exists at the protocol/client level only.
*
* @private