@grame/faustwasm 0.7.0 → 0.7.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/assets/standalone/create-node.js +5 -3
- package/assets/standalone/faustwasm/index.d.ts +4 -4
- package/assets/standalone/faustwasm/index.js +18 -11
- package/assets/standalone/faustwasm/index.js.map +2 -2
- package/assets/standalone/index-pwa.js +1 -1
- package/dist/cjs/index.d.ts +4 -4
- package/dist/cjs/index.js +18 -11
- package/dist/cjs/index.js.map +2 -2
- package/dist/cjs-bundle/index.d.ts +4 -4
- package/dist/cjs-bundle/index.js +20 -13
- package/dist/cjs-bundle/index.js.map +2 -2
- package/dist/esm/index.d.ts +4 -4
- package/dist/esm/index.js +18 -11
- package/dist/esm/index.js.map +2 -2
- package/dist/esm-bundle/index.d.ts +4 -4
- package/dist/esm-bundle/index.js +20 -13
- package/dist/esm-bundle/index.js.map +2 -2
- package/libfaust-wasm/libfaust-wasm.js +1 -1
- package/libfaust-wasm/libfaust-wasm.wasm +0 -0
- package/package.json +1 -1
- package/src/FaustScriptProcessorNode.ts +26 -16
- package/src/FaustWebAudioDsp.ts +2 -2
- package/test/faustlive-wasm/faustwasm/index.d.ts +4 -4
- package/test/faustlive-wasm/faustwasm/index.js +18 -11
- package/test/faustlive-wasm/faustwasm/index.js.map +2 -2
- package/test/faustlive-wasm/index.js +2 -1
- package/test/max_bug/create-node.js +140 -0
- package/test/max_bug/dsp-meta.json +247 -0
- package/test/max_bug/dsp-module.wasm +0 -0
- package/test/max_bug/faust-ui/index.css +442 -0
- package/test/max_bug/faust-ui/index.css.map +1 -0
- package/test/max_bug/faust-ui/index.d.ts +1 -0
- package/test/max_bug/faust-ui/index.js +3844 -0
- package/test/max_bug/faust-ui/index.js.map +1 -0
- package/test/max_bug/faustwasm/index.d.ts +1585 -0
- package/test/max_bug/faustwasm/index.js +4646 -0
- package/test/max_bug/faustwasm/index.js.map +7 -0
- package/test/max_bug/icon.png +0 -0
- package/test/max_bug/index.html +76 -0
- package/test/max_bug/index.js +149 -0
- package/test/max_bug/manifest.json +17 -0
- package/test/max_bug/service-worker.js +73 -0
- package/test/max_bug.dsp +13 -0
- package/test/tables.dsp +0 -71
|
@@ -628,11 +628,11 @@ export interface IFaustBaseWebAudioDsp {
|
|
|
628
628
|
*/
|
|
629
629
|
getJSON(): string;
|
|
630
630
|
/**
|
|
631
|
-
* Start the DSP.
|
|
631
|
+
* Start the DSP audio processing.
|
|
632
632
|
*/
|
|
633
633
|
start(): void;
|
|
634
634
|
/**
|
|
635
|
-
* Stop the DSP.
|
|
635
|
+
* Stop the DSP audio processing.
|
|
636
636
|
*/
|
|
637
637
|
stop(): void;
|
|
638
638
|
/**
|
|
@@ -1362,9 +1362,9 @@ export declare class FaustScriptProcessorNode<Poly extends boolean = false> exte
|
|
|
1362
1362
|
protected fDSPCode: Poly extends true ? FaustPolyWebAudioDsp : FaustMonoWebAudioDsp;
|
|
1363
1363
|
protected fInputs: Float32Array[];
|
|
1364
1364
|
protected fOutputs: Float32Array[];
|
|
1365
|
+
protected handleDeviceMotion: any;
|
|
1366
|
+
protected handleDeviceOrientation: any;
|
|
1365
1367
|
init(instance: Poly extends true ? FaustPolyWebAudioDsp : FaustMonoWebAudioDsp): void;
|
|
1366
|
-
private handleDeviceMotion;
|
|
1367
|
-
private handleDeviceOrientation;
|
|
1368
1368
|
/** Setup accelerometer and gyroscope handlers */
|
|
1369
1369
|
startSensors(): Promise<void>;
|
|
1370
1370
|
stopSensors(): void;
|