@stream-io/video-filters-web 0.1.3 → 0.1.4
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/CHANGELOG.md +7 -0
- package/dist/index.cjs.js +4 -4
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +4 -4
- package/dist/index.es.js.map +1 -1
- package/package.json +4 -3
package/dist/index.es.js
CHANGED
|
@@ -1029,7 +1029,7 @@ const createTFLiteSIMDModule = (__Module) => {
|
|
|
1029
1029
|
}
|
|
1030
1030
|
|
|
1031
1031
|
function getBinaryPromise() {
|
|
1032
|
-
if (!wasmBinary && (ENVIRONMENT_IS_WEB
|
|
1032
|
+
if (!wasmBinary && (ENVIRONMENT_IS_WEB)) {
|
|
1033
1033
|
if (typeof fetch == 'function') {
|
|
1034
1034
|
return fetch(wasmBinaryFile, { credentials: 'same-origin' })
|
|
1035
1035
|
.then(function (response) {
|
|
@@ -1257,7 +1257,7 @@ const createTFLiteSIMDModule = (__Module) => {
|
|
|
1257
1257
|
for (var i = 0; i < str.length; ++i) {
|
|
1258
1258
|
HEAP8[buffer++ >> 0] = str.charCodeAt(i);
|
|
1259
1259
|
}
|
|
1260
|
-
|
|
1260
|
+
HEAP8[buffer >> 0] = 0;
|
|
1261
1261
|
}
|
|
1262
1262
|
|
|
1263
1263
|
function _environ_get(__environ, environ_buf) {
|
|
@@ -1536,8 +1536,8 @@ const createTFLiteSIMDModule = (__Module) => {
|
|
|
1536
1536
|
return __Module.ready;
|
|
1537
1537
|
};
|
|
1538
1538
|
|
|
1539
|
-
const version = "0.1.
|
|
1540
|
-
const packageName = "@stream-io/video-filters-web"
|
|
1539
|
+
const version = "0.1.4";
|
|
1540
|
+
const packageName = "@stream-io/video-filters-web";
|
|
1541
1541
|
|
|
1542
1542
|
// @ts-expect-error - module is not declared
|
|
1543
1543
|
// This is a WebAssembly module compiled from the TensorFlow Lite C++ library.
|