Search results

  1. B

    Audio lib for non real-time processing?

    You could try to call the update functions of your blocks individually, and take a look at the consumed cycles. In most cases in the audiolibrary the output block takes care of calling the audio update functions of all connected blocks. (there is a static variable in audiostream which is the...
  2. B

    Floating-Point Audio Library Extension

    hi Guys, Great work chip you really inspired me to start to do something with float support :) i created a branch of the core library which includes float support which should work better with all the old stuff that is around. (it uses two blocks for floats) Also it removes the need for all...
  3. B

    Dynamic Object instances--Dynamic Rewiring

    No i check against the specific input index and destination index so that shouldn't be a problem :) p->src_index == this->src_index && p->dest_index == this->dest_index
  4. B

    Dynamic Object instances--Dynamic Rewiring

    Created the request :)
  5. B

    Dynamic Object instances--Dynamic Rewiring

    Hi Guys, as i need similar functionality to switch between synth patches i did some hacking on the AudioStream & AudioConnection classes. My fork of the core library supports disconnection of audioconnections and disables unconnected audiostreams. See: https://github.com/b0rg3rt/cores I do not...
  6. B

    Audio Library

    Ok clear, this also means that i cannot create "convenience" classes to aggregate multiple elements together without recursion ? This also results in the same compilation error. A workaround is to do it procedurally but this is not as nice. (I must admit that my C++ is a bit rusty so i could...
  7. B

    Audio Library

    Hi guys, i am new to the teensy and building a drum synth using the audio library. Because i want to synthesize cymbals which involves multiple fm modulated oscillators, filters and envelopes i would like to put all of these in its own class. Unfortunately this was not as straight forward as i...
Back
Top