|
Revision 512, 323 bytes
(checked in by shans, 5 years ago)
|
Moved "plugin" to "note" in line with original remix
Set up envelopes as notes
Started work on "continuous" (0, Forever) sounds and plugins
Added some repeat and shift utilities for notes
|
| Line | |
|---|
| 1 |
type note = Sound.sound -> Sound.sound;; |
|---|
| 2 |
|
|---|
| 3 |
val from_sound : Sound.sound -> note;; |
|---|
| 4 |
|
|---|
| 5 |
val from_ladspa : Ladspa_raw.plugin -> |
|---|
| 6 |
(Ladspa_raw.plugin -> Ladspa_raw.handle -> unit) -> note;; |
|---|
| 7 |
|
|---|
| 8 |
val from_envelope : Envelope.envelope -> note;; |
|---|
| 9 |
|
|---|
| 10 |
val ladspa_init : (int -> float) -> Ladspa_raw.plugin -> Ladspa_raw.handle -> unit;; |
|---|
| 11 |
|
|---|