supersonic-scsynth 0.1.9 → 0.2.1
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/README.md +1 -1
- package/dist/supersonic.js +810 -290
- package/dist/wasm/manifest.json +3 -3
- package/dist/wasm/scsynth-nrt.wasm +0 -0
- package/dist/workers/debug_worker.js +16 -3
- package/dist/workers/osc_in_worker.js +15 -2
- package/dist/workers/osc_out_prescheduler_worker.js +575 -0
- package/dist/workers/osc_out_worker.js +46 -183
- package/dist/workers/ring_buffer_worker_base.js +305 -0
- package/dist/workers/scsynth_audio_worklet.js +44 -23
- package/dist/workers/system_worker.js +64 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -163,7 +163,7 @@ dist/
|
|
|
163
163
|
└── workers/
|
|
164
164
|
├── scsynth_audio_worklet.js # AudioWorklet processor
|
|
165
165
|
├── osc_in_worker.js # OSC input handler
|
|
166
|
-
├──
|
|
166
|
+
├── osc_out_prescheduler_worker.js # OSC pre-scheduler (timers & tag cancellation)
|
|
167
167
|
└── debug_worker.js # Debug logger
|
|
168
168
|
```
|
|
169
169
|
|