Otto Rottier

Results 150 comments of Otto Rottier

~You can use https://docs.rs/crossbeam-channel/latest/crossbeam_channel/macro.select.html to poll all receivers concurrently in the EventLoop thread~ This won't work for dynamically sized event handler collection....

So maybe you should just use a single channel. Use an ever increasing numerical id to select the right callback, and make sure the renderer ships the id alongside the...

I'm hoping we can do something on the compiler level. A hint is provided here: https://gist.github.com/GabrielMajeri/545042ee4f956d5b2141105eb6a505a9 But that is limited to some SIMD operations

Thanks for the kind words. Using this library with vst plugins is something I have not looked into yet, but it will definitely be interesting. I'm not sure which direction...

Alright, that seems like the right direction. Fun idea. It is probably best to first start with a toy example, where you instantiate an OfflineAudioContext per `process` call of the...

Closing due to inactivity, feel free to re-open

Amazing, I did not realize there was this much to gain still from the Graph::insert/remove stuff. Let's continue discussing at https://github.com/orottier/web-audio-api-rs/pull/199

Hey @b-ma, it took me some time to continue with this. I had a look at both porting or binding existing C++ stuff, but it is not my range of...

Good to hear. If the code looks good to you I intend to merge this version. I have created #220 for further improvements

> Seems that going to multichannel from here wouldn't be too complicated, no? Indeed, just a bit of extra bookkeeping > Also there was a bench for the convolution in...