root/ocaml-remix/trunk/plugin.mli

Revision 511, 279 bytes (checked in by shans, 1 year ago)

Handle ladspa plugins that don't consume any inputs.
Convenience function for generating ladspa initialisation functions.

Line 
1 type plugin = Sound.sound -> Sound.sound;;
2
3 val from_sound : Sound.sound -> plugin;;
4
5 val from_ladspa : Ladspa_raw.plugin ->
6       (Ladspa_raw.plugin -> Ladspa_raw.handle -> unit) -> plugin;;
7
8 val ladspa_init : (int -> float) -> Ladspa_raw.plugin -> Ladspa_raw.handle -> unit;;
Note: See TracBrowser for help on using the browser.