forked from novnc/noVNC
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request novnc#893 from CendioOssman/amt
Basic support for Intel AMT
- Loading branch information
Showing
5 changed files
with
217 additions
and
218 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
/* | ||
* noVNC: HTML5 VNC client | ||
* Copyright (C) 2017 Pierre Ossman for Cendio AB | ||
* Licensed under MPL 2.0 (see LICENSE.txt) | ||
* | ||
* See README.md for usage and integration instructions. | ||
*/ | ||
|
||
export var encodings = { | ||
encodingRaw: 0, | ||
encodingCopyRect: 1, | ||
encodingRRE: 2, | ||
encodingHextile: 5, | ||
encodingTight: 7, | ||
|
||
pseudoEncodingQualityLevel9: -23, | ||
pseudoEncodingQualityLevel0: -32, | ||
pseudoEncodingDesktopSize: -223, | ||
pseudoEncodingLastRect: -224, | ||
pseudoEncodingCursor: -239, | ||
pseudoEncodingQEMUExtendedKeyEvent: -258, | ||
pseudoEncodingTightPNG: -260, | ||
pseudoEncodingExtendedDesktopSize: -308, | ||
pseudoEncodingXvp: -309, | ||
pseudoEncodingFence: -312, | ||
pseudoEncodingContinuousUpdates: -313, | ||
pseudoEncodingCompressLevel9: -247, | ||
pseudoEncodingCompressLevel0: -256, | ||
} | ||
|
||
export function encodingName(num) { | ||
switch (num) { | ||
case encodings.encodingRaw: return "Raw"; | ||
case encodings.encodingCopyRect: return "CopyRect"; | ||
case encodings.encodingRRE: return "RRE"; | ||
case encodings.encodingHextile: return "Hextile"; | ||
case encodings.encodingTight: return "Tight"; | ||
default: return "[unknown encoding " + num + "]"; | ||
} | ||
} |
Oops, something went wrong.