@grame/faustwasm 0.0.45 → 0.0.47
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/faustwasm/index.d.ts +2 -2
- package/assets/standalone/faustwasm/index.js.map +1 -1
- package/assets/standalone/index.js +159 -142
- package/assets/standalone/template-poly.html +60 -0
- package/assets/standalone/template.html +50 -0
- package/assets/standalone/template.js +63 -0
- package/dist/cjs/index.d.ts +2 -2
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs-bundle/index.d.ts +2 -2
- package/dist/cjs-bundle/index.js.map +1 -1
- package/dist/esm/index.d.ts +2 -2
- package/dist/esm/index.js.map +1 -1
- package/dist/esm-bundle/index.d.ts +2 -2
- package/dist/esm-bundle/index.js.map +1 -1
- package/package.json +1 -1
- package/scripts/faust2wasm.js +6 -2
- package/src/FaustDspGenerator.ts +2 -2
- package/src/copyWebStandaloneAssets.d.ts +2 -1
- package/src/copyWebStandaloneAssets.js +23 -2
- package/test/faustlive-wasm/faustwasm/index.d.ts +2 -2
- package/test/faustlive-wasm/faustwasm/index.js.map +1 -1
- package/test/poly.dsp +1 -1
|
@@ -1199,7 +1199,7 @@ export interface IFaustPolyDspGenerator {
|
|
|
1199
1199
|
*
|
|
1200
1200
|
* @param compiler - the Faust compiler
|
|
1201
1201
|
* @param name - the DSP name
|
|
1202
|
-
* @param dspCode - the DSP code ('
|
|
1202
|
+
* @param dspCode - the DSP code ('dspCode' can possibly contain an integrated effect)
|
|
1203
1203
|
* @param args - the compilation parameters
|
|
1204
1204
|
* @param effectCode - optional effect DSP code
|
|
1205
1205
|
* @returns the compiled factory or 'null' if failure
|
|
@@ -1215,7 +1215,7 @@ export interface IFaustPolyDspGenerator {
|
|
|
1215
1215
|
* @param voices - the number of voices
|
|
1216
1216
|
* @param name - AudioWorklet Processor name
|
|
1217
1217
|
* @param voiceFactory - the Faust factory for voices, either obtained with a compiler (createDSPFactory) or loaded from files (loadDSPFactory)
|
|
1218
|
-
* @param mixerModule - the wasm Mixer module (loaded from 'mixer32.wasm' or 'mixer64.wasm' files)
|
|
1218
|
+
* @param mixerModule - the wasm Mixer module (loaded from 'mixer32.wasm' or 'mixer64.wasm' files located in the 'faustwasm' package)
|
|
1219
1219
|
* @param effectFactory - the Faust factory for the effect, either obtained with a compiler (createDSPFactory) or loaded from files (loadDSPFactory)
|
|
1220
1220
|
* @param sp - whether to compile a ScriptProcessorNode or an AudioWorkletNode
|
|
1221
1221
|
* @param bufferSize - the buffer size in frames to be used in ScriptProcessorNode only, since AudioWorkletNode always uses 128 frames
|