@grame/faustwasm 0.0.45 → 0.0.46
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 +16 -1
- 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
|
@@ -1206,7 +1206,7 @@ export interface IFaustPolyDspGenerator {
|
|
|
1206
1206
|
*
|
|
1207
1207
|
* @param compiler - the Faust compiler
|
|
1208
1208
|
* @param name - the DSP name
|
|
1209
|
-
* @param dspCode - the DSP code ('
|
|
1209
|
+
* @param dspCode - the DSP code ('dspCode' can possibly contain an integrated effect)
|
|
1210
1210
|
* @param args - the compilation parameters
|
|
1211
1211
|
* @param effectCode - optional effect DSP code
|
|
1212
1212
|
* @returns the compiled factory or 'null' if failure
|
|
@@ -1222,7 +1222,7 @@ export interface IFaustPolyDspGenerator {
|
|
|
1222
1222
|
* @param voices - the number of voices
|
|
1223
1223
|
* @param name - AudioWorklet Processor name
|
|
1224
1224
|
* @param voiceFactory - the Faust factory for voices, either obtained with a compiler (createDSPFactory) or loaded from files (loadDSPFactory)
|
|
1225
|
-
* @param mixerModule - the wasm Mixer module (loaded from 'mixer32.wasm' or 'mixer64.wasm' files)
|
|
1225
|
+
* @param mixerModule - the wasm Mixer module (loaded from 'mixer32.wasm' or 'mixer64.wasm' files located in the 'faustwasm' package)
|
|
1226
1226
|
* @param effectFactory - the Faust factory for the effect, either obtained with a compiler (createDSPFactory) or loaded from files (loadDSPFactory)
|
|
1227
1227
|
* @param sp - whether to compile a ScriptProcessorNode or an AudioWorkletNode
|
|
1228
1228
|
* @param bufferSize - the buffer size in frames to be used in ScriptProcessorNode only, since AudioWorkletNode always uses 128 frames
|