mirror of
https://github.com/antos-rde/antosdk-apps.git
synced 2024-11-19 11:48:22 +01:00
RemoteDesktop: improve stability
This commit is contained in:
parent
9800f701e6
commit
a4943e83d1
@ -7,6 +7,7 @@ Further information on **wvnc**: [https://blog.lxsang.me/post/id/23](https://blo
|
|||||||
|
|
||||||
|
|
||||||
## Change logs
|
## Change logs
|
||||||
|
* v0.1.9 - improve stability
|
||||||
* v0.1.7-8 - remove package dependencies, use web assembly for jpeg decoding, improve rendering performance and connection stability
|
* v0.1.7-8 - remove package dependencies, use web assembly for jpeg decoding, improve rendering performance and connection stability
|
||||||
* v0.1.6 - Change category
|
* v0.1.6 - Change category
|
||||||
* v0.1.5 - add package dependencies and use the new **libwvnc**
|
* v0.1.5 - add package dependencies and use the new **libwvnc**
|
||||||
|
@ -7,6 +7,7 @@ Further information on **wvnc**: [https://blog.lxsang.me/post/id/23](https://blo
|
|||||||
|
|
||||||
|
|
||||||
## Change logs
|
## Change logs
|
||||||
|
* v0.1.9 - improve stability
|
||||||
* v0.1.7-8 - remove package dependencies, use web assembly for jpeg decoding, improve rendering performance and connection stability
|
* v0.1.7-8 - remove package dependencies, use web assembly for jpeg decoding, improve rendering performance and connection stability
|
||||||
* v0.1.6 - Change category
|
* v0.1.6 - Change category
|
||||||
* v0.1.5 - add package dependencies and use the new **libwvnc**
|
* v0.1.5 - add package dependencies and use the new **libwvnc**
|
||||||
|
@ -24,19 +24,26 @@
|
|||||||
w = datain[5] | (datain[6] << 8);
|
w = datain[5] | (datain[6] << 8);
|
||||||
h = datain[7] | (datain[8] << 8);
|
h = datain[7] | (datain[8] << 8);
|
||||||
flag = datain[9];
|
flag = datain[9];
|
||||||
p = api.createBuffer(datain.length);
|
|
||||||
Module.HEAP8.set(datain, p);
|
|
||||||
size = w * h * 4;
|
|
||||||
po = api.decodeBuffer(p, datain.length, size);
|
|
||||||
dataout = new Uint8Array(Module.HEAP8.buffer, po, size);
|
|
||||||
msg = {};
|
msg = {};
|
||||||
tmp = new Uint8Array(size);
|
msg.pixels = void 0;
|
||||||
tmp.set(dataout, 0);
|
|
||||||
msg.pixels = tmp.buffer;
|
|
||||||
msg.x = x;
|
msg.x = x;
|
||||||
msg.y = y;
|
msg.y = y;
|
||||||
msg.w = w;
|
msg.w = w;
|
||||||
msg.h = h;
|
msg.h = h;
|
||||||
|
size = w * h * 4;
|
||||||
|
tmp = new Uint8Array(size);
|
||||||
|
if (flag === 0) {
|
||||||
|
tmp.set(datain.subarray(10), 0);
|
||||||
|
msg.pixels = tmp.buffer;
|
||||||
|
postMessage(msg, [msg.pixels]);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
p = api.createBuffer(datain.length);
|
||||||
|
Module.HEAP8.set(datain, p);
|
||||||
|
po = api.decodeBuffer(p, datain.length, size);
|
||||||
|
dataout = new Uint8Array(Module.HEAP8.buffer, po, size);
|
||||||
|
tmp.set(dataout, 0);
|
||||||
|
msg.pixels = tmp.buffer;
|
||||||
postMessage(msg, [msg.pixels]);
|
postMessage(msg, [msg.pixels]);
|
||||||
api.destroyBuffer(po);
|
api.destroyBuffer(po);
|
||||||
return api.destroyBuffer(p);
|
return api.destroyBuffer(p);
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
"author": "Dany LE",
|
"author": "Dany LE",
|
||||||
"email": "contact@iohub.dev"
|
"email": "contact@iohub.dev"
|
||||||
},
|
},
|
||||||
"version":"0.1.8-b",
|
"version":"0.1.9-b",
|
||||||
"dependencies": [],
|
"dependencies": [],
|
||||||
"category":"Internet",
|
"category":"Internet",
|
||||||
"icon": "icon.png",
|
"icon": "icon.png",
|
||||||
|
Binary file not shown.
Binary file not shown.
@ -153,8 +153,6 @@ class WVNC
|
|||||||
if not @socket
|
if not @socket
|
||||||
return
|
return
|
||||||
data = new Uint8Array msg.pixels
|
data = new Uint8Array msg.pixels
|
||||||
#w = @buffer.width * @scale
|
|
||||||
#h = @buffer.height * @scale
|
|
||||||
ctx = @canvas.getContext "2d", { alpha: false }
|
ctx = @canvas.getContext "2d", { alpha: false }
|
||||||
imgData = ctx.createImageData msg.w, msg.h
|
imgData = ctx.createImageData msg.w, msg.h
|
||||||
imgData.data.set data
|
imgData.data.set data
|
||||||
|
@ -24,19 +24,26 @@
|
|||||||
w = datain[5] | (datain[6] << 8);
|
w = datain[5] | (datain[6] << 8);
|
||||||
h = datain[7] | (datain[8] << 8);
|
h = datain[7] | (datain[8] << 8);
|
||||||
flag = datain[9];
|
flag = datain[9];
|
||||||
p = api.createBuffer(datain.length);
|
|
||||||
Module.HEAP8.set(datain, p);
|
|
||||||
size = w * h * 4;
|
|
||||||
po = api.decodeBuffer(p, datain.length, size);
|
|
||||||
dataout = new Uint8Array(Module.HEAP8.buffer, po, size);
|
|
||||||
msg = {};
|
msg = {};
|
||||||
tmp = new Uint8Array(size);
|
msg.pixels = void 0;
|
||||||
tmp.set(dataout, 0);
|
|
||||||
msg.pixels = tmp.buffer;
|
|
||||||
msg.x = x;
|
msg.x = x;
|
||||||
msg.y = y;
|
msg.y = y;
|
||||||
msg.w = w;
|
msg.w = w;
|
||||||
msg.h = h;
|
msg.h = h;
|
||||||
|
size = w * h * 4;
|
||||||
|
tmp = new Uint8Array(size);
|
||||||
|
if (flag === 0) {
|
||||||
|
tmp.set(datain.subarray(10), 0);
|
||||||
|
msg.pixels = tmp.buffer;
|
||||||
|
postMessage(msg, [msg.pixels]);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
p = api.createBuffer(datain.length);
|
||||||
|
Module.HEAP8.set(datain, p);
|
||||||
|
po = api.decodeBuffer(p, datain.length, size);
|
||||||
|
dataout = new Uint8Array(Module.HEAP8.buffer, po, size);
|
||||||
|
tmp.set(dataout, 0);
|
||||||
|
msg.pixels = tmp.buffer;
|
||||||
postMessage(msg, [msg.pixels]);
|
postMessage(msg, [msg.pixels]);
|
||||||
api.destroyBuffer(po);
|
api.destroyBuffer(po);
|
||||||
return api.destroyBuffer(p);
|
return api.destroyBuffer(p);
|
||||||
|
Binary file not shown.
@ -7,7 +7,7 @@
|
|||||||
"author": "Dany LE",
|
"author": "Dany LE",
|
||||||
"email": "contact@iohub.dev"
|
"email": "contact@iohub.dev"
|
||||||
},
|
},
|
||||||
"version":"0.1.8-b",
|
"version":"0.1.9-b",
|
||||||
"dependencies": [],
|
"dependencies": [],
|
||||||
"category":"Internet",
|
"category":"Internet",
|
||||||
"icon": "icon.png",
|
"icon": "icon.png",
|
||||||
|
@ -365,7 +365,7 @@
|
|||||||
"description": "https://raw.githubusercontent.com/lxsang/antosdk-apps/master/RemoteDesktop/README.md",
|
"description": "https://raw.githubusercontent.com/lxsang/antosdk-apps/master/RemoteDesktop/README.md",
|
||||||
"category": "Internet",
|
"category": "Internet",
|
||||||
"author": "Dany LE",
|
"author": "Dany LE",
|
||||||
"version": "0.1.8-b",
|
"version": "0.1.9-b",
|
||||||
"dependencies": [],"category":"Internet","icon":"icon.png","mimes":["none"],
|
"dependencies": [],"category":"Internet","icon":"icon.png","mimes":["none"],
|
||||||
"download": "https://raw.githubusercontent.com/lxsang/antosdk-apps/master/RemoteDesktop/build/release/RemoteDesktop.zip"
|
"download": "https://raw.githubusercontent.com/lxsang/antosdk-apps/master/RemoteDesktop/build/release/RemoteDesktop.zip"
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user