Closed magnetophon closed 9 months ago
Yes, the architecture file currently only support f32, since JACK port are float, see: https://github.com/grame-cncm/faust/blob/master-dev/architecture/jack.rs#L144
I guess the f32 buffers would need to be converted to f64 in this case, and since @magnetophon you are a Rust guru, maybe you can make this work and prepare a PR ?
BTW, same issue for PortAudio architecture, see: https://github.com/grame-cncm/faust/blob/master-dev/architecture/portaudio.rs#L161
Merci beaucoup, that was very fast!
When I try to compile
process = _,_;
withfaust2jackrust -double test.dsp
, I get:I'm working on a project that needs
-double
to function properly: https://github.com/magnetophon/lamb-rs so I would love to see this fixed! :)