<html>
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  </head>
  <body>
    <div class="moz-cite-prefix">On 03.04.2022 20:01, Orm Finnendahl
      wrote:<br>
    </div>
    <blockquote type="cite" cite="mid:Ykng9RlcI7faQtjy@orm-t14s">
      <pre class="moz-quote-pre" wrap="">Hi,

 the help of delread4~ states the "delay time is at least one sample",
but it seems the lower limit is one block (and the lowest blocksize I
can use on linux seems to be 64 samples). I assume this is related to
the dsp scheduling order introducing one sample block latency.</pre>
    </blockquote>
    <p>If the delread~ is scheduled <i>before </i>the delwrite~, there
      will be one block of additional delay. You can force the delread~
      to be scheduled <i>after </i>the delwrite~ by putting the two
      objects in different subpatches and connect them with dummy
      signals, as explained in 3.audio.examples/G05.execution.order.pd.</p>
    <p>However, once you add a feedback path - as you do in your patch
      -, this trick doesn't work because in the digital domain, feedback
      without delay is simply not possible. The only thing you can do is
      decrease the block size. This is explained in
      3.audio.examples/G04.control.blocksize.pd.</p>
    <p>Christof</p>
  </body>
</html>