@supraio/client-daemon-js 0.0.0-mzdecoder.270 → 0.0.0-mzdecoder.272
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/daemon.html +1 -1
- package/daemon.js +2 -2
- package/package.json +1 -1
- package/screen.html +1 -1
- package/screen.js +4 -4
- package/screen.js.map +2 -2
- package/sdk.js +6 -6
- package/sdk.js.map +2 -2
package/sdk.js
CHANGED
|
@@ -17416,7 +17416,7 @@ async function initGoEnvironment() {
|
|
|
17416
17416
|
}
|
|
17417
17417
|
|
|
17418
17418
|
// daemon/plain.ts
|
|
17419
|
-
var DAEMON_JS_URL = "supra-client-daemon.js?v=0.0.0-mzdecoder.
|
|
17419
|
+
var DAEMON_JS_URL = "supra-client-daemon.js?v=0.0.0-mzdecoder.272";
|
|
17420
17420
|
async function startPlainDaemon() {
|
|
17421
17421
|
const fs = await initBrowserFS();
|
|
17422
17422
|
window.fs = fs;
|
|
@@ -17427,7 +17427,7 @@ async function startPlainDaemon() {
|
|
|
17427
17427
|
}
|
|
17428
17428
|
|
|
17429
17429
|
// daemon/wasm.ts
|
|
17430
|
-
var DAEMON_WASM_URL = "supra-client-daemon.wasm?v=0.0.0-mzdecoder.
|
|
17430
|
+
var DAEMON_WASM_URL = "supra-client-daemon.wasm?v=0.0.0-mzdecoder.272";
|
|
17431
17431
|
async function startWasmDaemon() {
|
|
17432
17432
|
await initGoEnvironment();
|
|
17433
17433
|
await startGoDaemon();
|
|
@@ -17488,7 +17488,7 @@ function getGoArgv2(binFile, options) {
|
|
|
17488
17488
|
}
|
|
17489
17489
|
|
|
17490
17490
|
// screen/plain.ts
|
|
17491
|
-
var SCREEN_JS_URL = "supra-client-screen.js?v=0.0.0-mzdecoder.
|
|
17491
|
+
var SCREEN_JS_URL = "supra-client-screen.js?v=0.0.0-mzdecoder.272";
|
|
17492
17492
|
async function startPlainScreen(options) {
|
|
17493
17493
|
options = options != null ? options : parseQueryOptions();
|
|
17494
17494
|
const fs = await initBrowserFS();
|
|
@@ -17546,12 +17546,12 @@ async function createH264Decoder() {
|
|
|
17546
17546
|
}
|
|
17547
17547
|
|
|
17548
17548
|
// screen/wasm.ts
|
|
17549
|
-
var SCREEN_WASM_URL = "supra-client-screen.wasm?v=0.0.0-mzdecoder.
|
|
17549
|
+
var SCREEN_WASM_URL = "supra-client-screen.wasm?v=0.0.0-mzdecoder.272";
|
|
17550
17550
|
async function startWasmScreen(options) {
|
|
17551
|
-
|
|
17551
|
+
options = options != null ? options : parseQueryOptions();
|
|
17552
17552
|
await initH264Decoder();
|
|
17553
17553
|
await initGoEnvironment();
|
|
17554
|
-
await startGoScreen(
|
|
17554
|
+
await startGoScreen(options);
|
|
17555
17555
|
}
|
|
17556
17556
|
async function startGoScreen(options) {
|
|
17557
17557
|
const go = new window.Go();
|