mitchmindtree

Results 219 issues of mitchmindtree

Currently all interpolator implementations require being constructed with the initial samples used for inteprolation. In some cases, it might be more convenient to just construct the interpolator with equilibrium values...

I often come across the desire to monitor a `Signal` that is running on the audio thread, from the GUI thread. Normally the kinds of signals I want to monitor...

It would be extremely useful to have a series of benchmarks for testing and demonstrating the feasibility of the `sample` crate for users. Benchmarks that would be nice to have:...

See the [trigint](http://www.dribin.org/dave/trigint/) library (an integer based trigonometry library) for inspiration.

enhancement

I might be vastly underestimating the work and complexity involved in this, but it would be an excellent feature to have and is undoubtably a fundamental tool of DSP. I...

enhancement
help wanted

They already live in `lib.rs`, and can be accessed as `sample::Float` and `sample::Signed`.

Currently the trait-based node graph approach is very fast, efficient, and quite user friendly. However, it has the tendency to lead toward a slightly more OOP design, which can often...

draft
discussion

We could create an `Input` type to use as the `Edge` type for our `petgraph::Graph`. Something like: ``` Rust pub enum Input { Regular, SideChain(Buffer), } ``` I'm still not...

enhancement
help wanted
draft
discussion

`Graph::remove_node` causes indices to shift if index isn't the last node. Options to handle this are: 1. Leave behaviour but document it. 2. Make each `Slot` an `Option` and simply...

bug
help wanted
draft
discussion

This should detect the index of the master node by finding the only node that only has incoming connections and no outgoing connections. One issue is that it is currently...

enhancement
draft
discussion