Henrik Enquist
Henrik Enquist
> I've tried with setting the chunk size to 16k. I'm not sure that the reported Processing load is overly meaningful as when watching Performance Monitor it was well under...
Does it run reliably with a lightweight config? For example if you keep only the mixer(s) in the pipeline but remove all filters.
> using the aggregated pipeline Filter groupings Ah that explains it! There is a bug, the old "channel" property on filter steps has been removed. It's supposed to give an...
I'm not planning to include it in the next release, there are too many problems with it. But I'll update the asio branch to have all the new things from...
Just tried the FFTW feature on an arm windows system, and there it doesn't build at all. The FFTW rust binding depends on some very outdated libraries and it doesn't...
Fixes https://github.com/HEnquist/wasapi-rs/issues/27
I don't know why the windows api is divided into so many little bits, but I would guess it's to keep backward compatibility since the apis have been expanded many...
The Float trait has a lot of methods that are not needed by RustFFT, see: https://docs.rs/num-traits/latest/num_traits/float/trait.Float.html So if Float is a requirement, all those need to be implemented, even if...
It would be possible to change the chunk size of the SincFixedIn/Out and FastFixedIn/Out. I think the easiest way to do this while avoiding allocations would be to only allow...
That PR has a lot more changes than what is required! See https://github.com/HEnquist/rubato/pull/82 It's a draft and only implemented for SincFixedIn/Out so far but I think it works as it...