@grame/faustwasm 0.2.2 → 0.2.3
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/LIB.dsp +1 -0
- package/README.md +2 -0
- package/assets/standalone/faustwasm/index.d.ts +8 -8
- package/assets/standalone/faustwasm/index.js.map +1 -1
- package/dist/cjs/index.d.ts +8 -8
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs-bundle/index.d.ts +8 -8
- package/dist/cjs-bundle/index.js +3 -3
- package/dist/cjs-bundle/index.js.map +2 -2
- package/dist/esm/index.d.ts +8 -8
- package/dist/esm/index.js.map +1 -1
- package/dist/esm-bundle/index.d.ts +8 -8
- package/dist/esm-bundle/index.js +3 -3
- package/dist/esm-bundle/index.js.map +2 -2
- package/libfaust-wasm/libfaust-wasm.data +0 -0
- package/libfaust-wasm/libfaust-wasm.js +1 -1
- package/libfaust-wasm/libfaust-wasm.wasm +0 -0
- package/package.json +1 -1
- package/src/FaustWebAudioDsp.ts +13 -13
- package/test/faustlive-wasm/faustwasm/index.d.ts +8 -8
- package/test/faustlive-wasm/faustwasm/index.js.map +1 -1
- package/test/mono.dsp +1 -0
|
@@ -488,10 +488,10 @@ export declare class Soundfile {
|
|
|
488
488
|
getHEAPFloat64(): Float64Array;
|
|
489
489
|
}
|
|
490
490
|
/**
|
|
491
|
-
* DSP implementation
|
|
491
|
+
* DSP implementation that mimic the C++ 'dsp' class:
|
|
492
492
|
* - adding MIDI control: metadata are decoded and incoming MIDI messages will control the associated controllers
|
|
493
493
|
* - an output handler can be set to treat produced output controllers (like 'bargraph')
|
|
494
|
-
* - regular controllers are handled using setParamValue/getParamValue
|
|
494
|
+
* - regular controllers are handled using setParamValue/getParamValue and getParams methods
|
|
495
495
|
*/
|
|
496
496
|
export interface IFaustBaseWebAudioDsp {
|
|
497
497
|
/**
|
|
@@ -603,12 +603,6 @@ export interface IFaustBaseWebAudioDsp {
|
|
|
603
603
|
* @return the DSP JSON description as object
|
|
604
604
|
*/
|
|
605
605
|
getMeta(): FaustDspMeta;
|
|
606
|
-
/**
|
|
607
|
-
* Get DSP JSON description with its UI and metadata.
|
|
608
|
-
*
|
|
609
|
-
* @return the DSP JSON description
|
|
610
|
-
*/
|
|
611
|
-
getJSON(): string;
|
|
612
606
|
/**
|
|
613
607
|
* Get DSP UI description.
|
|
614
608
|
*
|
|
@@ -621,6 +615,12 @@ export interface IFaustBaseWebAudioDsp {
|
|
|
621
615
|
* @return the DSP UI items description
|
|
622
616
|
*/
|
|
623
617
|
getDescriptors(): FaustUIInputItem[];
|
|
618
|
+
/**
|
|
619
|
+
* Get DSP JSON description with its UI and metadata.
|
|
620
|
+
*
|
|
621
|
+
* @return the DSP JSON description
|
|
622
|
+
*/
|
|
623
|
+
getJSON(): string;
|
|
624
624
|
/**
|
|
625
625
|
* Start the DSP.
|
|
626
626
|
*/
|