Skip to content

Commit

Permalink
First release.
Browse files Browse the repository at this point in the history
  • Loading branch information
WeirdConstructor committed Jan 7, 2021
1 parent ef9bcb2 commit 22764c2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 38 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
0.1.0 (2021-01-08)
==================
Initial release on GitHub.

* Finished base functionality of this synthesizer.
38 changes: 0 additions & 38 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -238,41 +238,3 @@ impl PluginParameters for KickmessVSTParams {
}

plugin_main!(Kickmess);


//use lv2::prelude::*;
//
//#[derive(PortCollection)]
//struct Ports {
// gain: InputPort<Control>,
// input: InputPort<Audio>,
// output: OutputPort<Audio>,
//}
//
//#[uri("https://github.com/WeirdConstructor/kickmess")]
//struct Kickmess;
//
//impl Plugin for Kickmess {
// type Ports = Ports;
//
// type InitFeatures = ();
// type AudioFeatures = ();
//
// fn new(_plugin_info: &PluginInfo, _features: &mut ()) -> Option<Self> {
// Some(Self)
// }
//
// fn run(&mut self, ports: &mut Ports, _features: &mut (), _: u32) {
// let coef = if *(ports.gain) > -90.0 {
// 10.0_f32.powf(*(ports.gain) * 0.05)
// } else {
// 0.0
// };
//
// for (in_frame, out_frame) in Iterator::zip(ports.input.iter(), ports.output.iter_mut()) {
// *out_frame = in_frame * coef;
// }
// }
//}
//
//lv2_descriptors!(Kickmess);

0 comments on commit 22764c2

Please sign in to comment.