On Tue, 2022-03-22 at 16:00 +0100, Christof Ressi wrote:
I think the solution is simple:
In jack_open_audio() replace
if (advance_samples < DEFDACBLKSIZE) advance_samples = DEFDACBLKSIZE; with
if (advance_samples < jack_blocksize) advance_samples = jack_blocksize; @Roman: can you give this a try?
Yeah, it works. Now - without callbacks - it works with any setting for 'delay (ms)'. Of course, now the displayed settings doesn't always reflect the setting used internally.
Roman