2013-02-15 13:21:59 -05:00
|
|
|
|
|
|
|
<p>
|
2014-02-18 17:13:02 -05:00
|
|
|
<a
|
2017-02-25 00:30:29 -05:00
|
|
|
href="http://en.wikipedia.org/wiki/Latency_%28audio%29"><dfn>Latency</dfn></a>
|
|
|
|
is a system's reaction time to a given stimulus. There are many factors that
|
|
|
|
contribute to the total latency of a system. In order to achieve exact time
|
|
|
|
synchronization all sources of latency need to be taken into account and
|
2014-02-18 17:13:02 -05:00
|
|
|
compensated for.
|
2013-02-15 13:21:59 -05:00
|
|
|
</p>
|
|
|
|
|
2014-02-18 17:13:02 -05:00
|
|
|
<h2>Sources of Latency</h2>
|
2013-02-15 13:21:59 -05:00
|
|
|
|
2014-02-18 17:13:02 -05:00
|
|
|
<h3>Sound propagation through the air</h3>
|
2013-02-15 13:21:59 -05:00
|
|
|
<p>
|
2017-02-25 00:30:29 -05:00
|
|
|
Since sound is a mechanical perturbation in a fluid, it travels at
|
|
|
|
comparatively slow <a href="http://en.wikipedia.org/wiki/Speed_of_sound">speed</a>
|
2019-01-14 08:20:39 -05:00
|
|
|
of about 340 m/s. As a consequence, an acoustic guitar or piano has a
|
2017-02-25 00:30:29 -05:00
|
|
|
latency of about 1–2 ms, due to the propagation time of the sound
|
2019-01-14 08:20:39 -05:00
|
|
|
between the instrument and the player's ear.
|
2013-02-15 13:21:59 -05:00
|
|
|
</p>
|
2019-01-14 08:20:39 -05:00
|
|
|
|
2014-02-18 17:13:02 -05:00
|
|
|
<h3>Digital-to-Analog and Analog-to-Digital conversion</h3>
|
2013-02-15 13:21:59 -05:00
|
|
|
<p>
|
2017-02-25 00:30:29 -05:00
|
|
|
Electric signals travel quite fast (on the order of the speed of light),
|
|
|
|
so their propagation time is negligible in this context. But the conversions
|
|
|
|
between the analog and digital domain take a comparatively long time to perform,
|
2014-02-18 17:13:02 -05:00
|
|
|
so their contribution to the total latency may be considerable on
|
|
|
|
otherwise very low-latency systems. Conversion delay is usually below 1 ms.
|
2013-02-15 13:21:59 -05:00
|
|
|
</p>
|
2019-01-14 08:20:39 -05:00
|
|
|
|
2014-02-18 17:13:02 -05:00
|
|
|
<h3>Digital Signal Processing</h3>
|
2013-02-15 13:21:59 -05:00
|
|
|
<p>
|
2017-02-25 00:30:29 -05:00
|
|
|
Digital processors tend to process audio in chunks, and the size of that chunk
|
|
|
|
depends on the needs of the algorithm and performance/cost considerations.
|
2019-01-14 08:20:39 -05:00
|
|
|
This is usually the main cause of latency when using a computer and the one that
|
|
|
|
can be predicted and optimized.
|
2013-02-15 13:21:59 -05:00
|
|
|
</p>
|
2019-01-14 08:20:39 -05:00
|
|
|
|
2014-02-18 17:13:02 -05:00
|
|
|
<h3>Computer I/O Architecture</h3>
|
2013-02-15 13:21:59 -05:00
|
|
|
<p>
|
2017-02-25 00:30:29 -05:00
|
|
|
A computer is a general purpose processor, not a digital audio processor.
|
2019-01-14 08:20:39 -05:00
|
|
|
This means the audio data has to jump a lot of fences in its path from the
|
2017-02-25 00:30:29 -05:00
|
|
|
outside to the CPU and back, contending in the process with some other parts
|
|
|
|
of the system vying for the same resources (CPU time, bus bandwidth, etc.)
|
2013-02-15 13:21:59 -05:00
|
|
|
</p>
|
|
|
|
|
2014-02-18 17:13:02 -05:00
|
|
|
<h2>The Latency chain</h2>
|
2019-08-04 02:36:55 -04:00
|
|
|
|
|
|
|
<p class="note">
|
|
|
|
Note! the rest of this document assumes the use of jackd for the audio
|
|
|
|
backend. While many of the concepts are true, the specifics may be different.
|
|
|
|
</p>
|
2019-01-14 08:20:39 -05:00
|
|
|
<figure>
|
|
|
|
<img src="/images/latency-chain.png" alt="Latency chain">
|
|
|
|
<figcaption>
|
|
|
|
Latency chain
|
|
|
|
</figcaption>
|
|
|
|
</figure>
|
2014-02-18 17:13:02 -05:00
|
|
|
|
2013-02-15 13:21:59 -05:00
|
|
|
<p>
|
2019-01-14 08:20:39 -05:00
|
|
|
The numbers are an example for a typical PC. With professional gear and an
|
|
|
|
optimized system the total round-trip latency is usually lower. The important
|
2014-02-18 17:13:02 -05:00
|
|
|
point is that latency is always additive and a sum of many independent factors.
|
2013-02-15 13:21:59 -05:00
|
|
|
</p>
|
|
|
|
<p>
|
2017-02-25 00:30:29 -05:00
|
|
|
Processing latency is usually divided into <dfn>capture latency</dfn> (the time
|
|
|
|
it takes for the digitized audio to be available for digital processing, usually
|
2020-05-26 12:59:35 -04:00
|
|
|
one audio period), and <dfn>playback latency</dfn> (the time it takes for the
|
|
|
|
audio that has been processed to be available in digital form).
|
2017-02-14 10:20:06 -05:00
|
|
|
In practice, the combination of both matters. It is called <dfn>round-trip
|
2017-02-25 00:30:29 -05:00
|
|
|
latency</dfn>: the time necessary for a certain audio event to be captured,
|
2014-02-18 17:13:02 -05:00
|
|
|
processed and played back.
|
|
|
|
</p>
|
|
|
|
<p class="note">
|
2019-08-04 02:36:55 -04:00
|
|
|
It is important to note that processing latency in Ardour is a matter of
|
2017-02-25 00:30:29 -05:00
|
|
|
choice. It can be lowered within the limits imposed by the hardware (audio
|
|
|
|
device, CPU and bus speed) and audio driver. Lower latencies increase the
|
|
|
|
load on the system because it needs to process the audio in smaller chunks
|
|
|
|
which arrive much more frequently. The lower the latency, the more likely
|
2014-02-18 17:13:02 -05:00
|
|
|
the system will fail to meet its processing deadline and the dreaded
|
2017-02-25 00:30:29 -05:00
|
|
|
<dfn>xrun</dfn> (short for buffer over- or under-run) will make its
|
2014-02-18 17:13:02 -05:00
|
|
|
appearance more often, leaving its merry trail of clicks, pops and crackles.
|
2013-02-15 13:21:59 -05:00
|
|
|
</p>
|
|
|
|
|
|
|
|
<p>
|
2017-02-25 00:30:29 -05:00
|
|
|
The digital I/O latency is usually negligible for integrated or
|
|
|
|
<abbr title="Periphal Component Interface">PCI</abbr> audio devices, but
|
|
|
|
for USB or FireWire interfaces the bus clocking and buffering can add some
|
2014-02-18 17:13:02 -05:00
|
|
|
milliseconds.
|
2013-02-15 13:21:59 -05:00
|
|
|
</p>
|
|
|
|
|
2017-02-14 10:20:06 -05:00
|
|
|
<h2>Low Latency use cases</h2>
|
2019-01-14 08:20:39 -05:00
|
|
|
|
2013-02-15 13:21:59 -05:00
|
|
|
<p>
|
2019-01-14 08:20:39 -05:00
|
|
|
Low latency is <strong>not</strong> always a feature one wants to have. It
|
2017-02-25 00:30:29 -05:00
|
|
|
comes with a couple of drawbacks: the most prominent is increased power
|
2014-02-18 17:13:02 -05:00
|
|
|
consumption because the CPU needs to process many small chunks of audio data,
|
2018-11-10 06:05:33 -05:00
|
|
|
it is constantly active and can not enter power-saving mode (think fan noise).
|
2017-02-25 00:30:29 -05:00
|
|
|
Since each application that is part of the signal chain must run in every
|
2019-01-15 03:58:40 -05:00
|
|
|
audio cycle, low-latency systems will undergo <dfn>context switches</dfn>
|
2017-02-25 00:30:29 -05:00
|
|
|
between applications more often, which incur a significant overhead.
|
|
|
|
This results in a much higher system load and an increased chance of xruns.
|
2013-02-15 13:21:59 -05:00
|
|
|
</p>
|
|
|
|
<p>
|
2014-02-18 17:13:02 -05:00
|
|
|
For a few applications, low latency is critical:
|
2013-02-15 13:21:59 -05:00
|
|
|
</p>
|
2019-01-14 08:20:39 -05:00
|
|
|
|
2014-02-18 17:13:02 -05:00
|
|
|
<h3>Playing virtual instruments</h3>
|
2013-02-15 13:21:59 -05:00
|
|
|
<p>
|
2017-02-25 00:30:29 -05:00
|
|
|
A large delay between the pressing of the keys and the sound the instrument
|
2018-11-10 06:05:33 -05:00
|
|
|
produces will throw off the timing of most instrumentalists (save church
|
2014-02-18 17:13:02 -05:00
|
|
|
organists, whom we believe to be awesome latency-compensation organic systems.)
|
2013-02-15 13:21:59 -05:00
|
|
|
</p>
|
2019-01-14 08:20:39 -05:00
|
|
|
|
2014-02-18 17:13:02 -05:00
|
|
|
<h3>Software audio monitoring</h3>
|
2013-02-15 13:21:59 -05:00
|
|
|
<p>
|
2017-02-25 00:30:29 -05:00
|
|
|
If a singer is hearing her own voice through two different paths, her head
|
2014-02-18 17:13:02 -05:00
|
|
|
bones and headphones, even small latencies can be very disturbing and
|
|
|
|
manifest as a tinny, irritating sound.
|
2013-02-15 13:21:59 -05:00
|
|
|
</p>
|
2019-01-14 08:20:39 -05:00
|
|
|
|
2014-02-18 17:13:02 -05:00
|
|
|
<h3>Live effects</h3>
|
2013-02-15 13:21:59 -05:00
|
|
|
<p>
|
2014-02-18 17:13:02 -05:00
|
|
|
Low latency is important when using the computer as an effect rack for
|
|
|
|
inline effects such as compression or EQ. For reverbs, slightly higher
|
|
|
|
latency might be tolerable, if the direct sound is not routed through the
|
2017-02-25 00:30:29 -05:00
|
|
|
computer.
|
2014-02-18 17:13:02 -05:00
|
|
|
</p>
|
2019-01-14 08:20:39 -05:00
|
|
|
|
2017-02-25 00:30:29 -05:00
|
|
|
<h3>Live mixing</h3>
|
2014-02-18 17:13:02 -05:00
|
|
|
<p>
|
2017-02-25 00:30:29 -05:00
|
|
|
Some sound engineers use a computer for mixing live performances.
|
|
|
|
Basically that is a combination of the above: monitoring on stage,
|
|
|
|
effects processing and EQ.
|
2013-02-15 13:21:59 -05:00
|
|
|
</p>
|
|
|
|
<p>
|
2017-02-25 00:30:29 -05:00
|
|
|
In many other cases, such as playback, recording, overdubbing, mixing,
|
|
|
|
mastering, etc. latency is not important, since it can easily be
|
2019-01-14 08:20:39 -05:00
|
|
|
compensated for.
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
To explain that statement: During mixing or mastering, one doesn't care
|
|
|
|
if it takes 10ms or 100ms between the instant the play button is pressed
|
|
|
|
and the sound coming from the speaker. The same is true when recording with a count in.
|
2013-02-15 13:21:59 -05:00
|
|
|
</p>
|
|
|
|
|
2014-02-18 17:13:02 -05:00
|
|
|
<h2>Latency compensation</h2>
|
|
|
|
<p>
|
2017-02-25 00:30:29 -05:00
|
|
|
During tracking it is important that the sound that is currently being
|
2014-02-18 17:13:02 -05:00
|
|
|
played back is internally aligned with the sound that is being recorded.
|
|
|
|
</p>
|
|
|
|
<p>
|
2018-11-10 06:05:33 -05:00
|
|
|
This is where latency compensation comes into play. There are two ways to
|
2014-02-18 17:13:02 -05:00
|
|
|
compensate for latency in a DAW, <dfn>read-ahead</dfn> and
|
2017-02-25 00:30:29 -05:00
|
|
|
<dfn>write-behind</dfn>. The DAW starts playing a bit early (relative to
|
|
|
|
the playhead), so that when the sound arrives at the speakers a short time
|
2014-02-18 17:13:02 -05:00
|
|
|
later, it is exactly aligned with the material that is being recorded.
|
2018-11-10 06:05:33 -05:00
|
|
|
Since we know that playback has latency, the incoming audio can be delayed
|
2014-02-18 17:13:02 -05:00
|
|
|
by the same amount to line things up again.
|
|
|
|
</p>
|
|
|
|
<p>
|
2019-01-14 08:20:39 -05:00
|
|
|
The second approach is prone to various implementation
|
2017-02-25 00:30:29 -05:00
|
|
|
issues regarding timecode and transport synchronization. Ardour uses read-ahead
|
|
|
|
to compensate for latency. The time displayed in the Ardour clock corresponds
|
2019-08-04 02:36:55 -04:00
|
|
|
to the audio signal that is heard on the speakers (and is not where Ardour
|
2014-02-18 17:13:02 -05:00
|
|
|
reads files from disk).
|
|
|
|
</p>
|
|
|
|
<p>
|
2017-02-25 00:30:29 -05:00
|
|
|
As a side note, this is also one of the reasons why many projects start at
|
|
|
|
timecode <samp>01:00:00:00</samp>. When compensating for output latency the
|
|
|
|
DAW will need to read data from before the start of the session, so that the
|
|
|
|
audio arrives in time at the output when the timecode hits <samp>01:00:00:00</samp>.
|
2019-01-14 08:20:39 -05:00
|
|
|
Ardour does handle the case of <samp>00:00:00:00</samp> properly but not all
|
2014-02-18 17:13:02 -05:00
|
|
|
systems/software/hardware that you may inter-operate with may behave the same.
|
|
|
|
</p>
|
2013-02-15 13:21:59 -05:00
|
|
|
|
2013-02-15 17:20:27 -05:00
|
|
|
<h2>Latency Compensation And Clock Sync</h2>
|
2013-02-15 13:21:59 -05:00
|
|
|
|
|
|
|
<p>
|
2017-02-25 00:30:29 -05:00
|
|
|
To achieve sample accurate timecode synchronization, the latency introduced
|
2014-02-18 17:13:02 -05:00
|
|
|
by the audio setup needs to be known and compensated for.
|
2013-02-15 13:21:59 -05:00
|
|
|
</p>
|
|
|
|
<p>
|
2017-02-25 00:30:29 -05:00
|
|
|
In order to compensate for latency, JACK or JACK applications need to know
|
2014-02-18 17:13:02 -05:00
|
|
|
exactly how long a certain signal needs to be read-ahead or delayed:
|
|
|
|
</p>
|
2019-01-14 08:20:39 -05:00
|
|
|
|
|
|
|
<figure>
|
|
|
|
<img src="/images/jack-latency-excerpt.png" alt="Jack Latency Compensation">
|
|
|
|
<figcaption>
|
|
|
|
Jack Latency Compensation
|
|
|
|
</figcaption>
|
|
|
|
</figure>
|
|
|
|
|
2013-02-15 13:21:59 -05:00
|
|
|
<p>
|
2017-02-25 00:30:29 -05:00
|
|
|
In the figure above, clients A and B need to be able to answer the following
|
2014-02-18 17:13:02 -05:00
|
|
|
two questions:
|
2013-02-15 13:21:59 -05:00
|
|
|
</p>
|
|
|
|
<ul>
|
2014-02-18 17:13:02 -05:00
|
|
|
<li>
|
|
|
|
How long has it been since the data read from port Ai or Bi arrived at the
|
|
|
|
edge of the JACK graph (capture)?
|
|
|
|
</li>
|
|
|
|
<li>
|
2017-02-14 10:20:06 -05:00
|
|
|
How long will it be until the data written to port Ao or Bo arrives at the
|
2014-02-18 17:13:02 -05:00
|
|
|
edge of the JACK graph (playback)?
|
|
|
|
</li>
|
2013-02-15 13:21:59 -05:00
|
|
|
</ul>
|
|
|
|
|
|
|
|
<p>
|
2017-02-25 00:30:29 -05:00
|
|
|
JACK features an <abbr title="Application Programming Interface">API</abbr>
|
|
|
|
that allows applications to determine the answers to above questions.
|
|
|
|
However JACK can not know about the additional latency that is introduced
|
|
|
|
by the computer architecture, operating system and soundcard. These values
|
|
|
|
can be specified by the JACK command line parameters <kbd class="input">-I</kbd>
|
|
|
|
and <kbd class="input">-O</kbd> and vary from system
|
|
|
|
to system but are constant on each. On a general purpose computer system
|
|
|
|
the only way to accurately learn about the total (additional) latency is to
|
2014-02-18 17:13:02 -05:00
|
|
|
measure it.
|
2013-02-15 13:21:59 -05:00
|
|
|
</p>
|
|
|
|
|
2013-02-15 17:20:27 -05:00
|
|
|
<h2>Calibrating JACK Latency</h2>
|
2013-02-15 13:21:59 -05:00
|
|
|
<p>
|
2017-02-25 00:30:29 -05:00
|
|
|
Linux DSP guru Fons Adriaensen wrote a tool called <dfn>jack_delay</dfn>
|
2017-02-14 10:20:06 -05:00
|
|
|
to accurately measure the round-trip latency of a closed loop audio chain,
|
2017-02-25 00:30:29 -05:00
|
|
|
with sub-sample accuracy. JACK itself includes a variant of this tool
|
2014-02-18 17:13:02 -05:00
|
|
|
called <dfn>jack_iodelay</dfn>.
|
2013-02-15 13:21:59 -05:00
|
|
|
</p>
|
|
|
|
<p>
|
2019-01-14 08:20:39 -05:00
|
|
|
Jack_iodelay allows to measure the total latency of the system,
|
2017-02-25 00:30:29 -05:00
|
|
|
subtracts the known latency of JACK itself and suggests values for
|
2014-02-18 17:13:02 -05:00
|
|
|
jackd's audio-backend parameters.
|
2013-02-15 13:21:59 -05:00
|
|
|
</p>
|
|
|
|
<p>
|
2017-02-25 00:30:29 -05:00
|
|
|
jack_[io]delay works by emitting some rather annoying tones, capturing
|
|
|
|
them again after a round trip through the whole chain, and measuring the
|
|
|
|
difference in phase so it can estimate with great accuracy the time taken.
|
2013-02-15 13:21:59 -05:00
|
|
|
</p>
|
|
|
|
<p>
|
2019-01-14 08:20:39 -05:00
|
|
|
The loop can be closed in a number of ways:
|
2013-02-15 13:21:59 -05:00
|
|
|
</p>
|
|
|
|
<ul>
|
2014-02-18 17:13:02 -05:00
|
|
|
<li>
|
2017-02-25 00:30:29 -05:00
|
|
|
Putting a speaker close to a microphone. This is rarely done, as air
|
2014-02-18 17:13:02 -05:00
|
|
|
propagation latency is well known so there is no need to measure it.
|
|
|
|
</li>
|
|
|
|
<li>
|
2019-01-14 08:20:39 -05:00
|
|
|
Connecting the output of the audio interface to its input using a
|
2017-02-25 00:30:29 -05:00
|
|
|
patch cable. This can be an analog or a digital loop, depending on
|
2019-01-14 08:20:39 -05:00
|
|
|
the nature of the input/output used. A digital loop will not factor
|
2017-02-25 00:30:29 -05:00
|
|
|
in the <abbr title="Analog to Digital, Digital to Analog">AD/DA</abbr>
|
2014-02-18 17:13:02 -05:00
|
|
|
converter latency.
|
|
|
|
</li>
|
2013-02-15 13:21:59 -05:00
|
|
|
</ul>
|
|
|
|
<p>
|
2019-01-14 08:20:39 -05:00
|
|
|
Once the loop has been closed, one must:
|
2013-02-15 13:21:59 -05:00
|
|
|
</p>
|
|
|
|
<ol>
|
2019-01-14 08:20:39 -05:00
|
|
|
<li>Launch jackd with the configuration to test.</li>
|
2017-02-14 10:20:06 -05:00
|
|
|
<li>Launch <kbd class="input">jack_delay</kbd> on the command line.</li>
|
2019-01-14 08:20:39 -05:00
|
|
|
<li>Make the appropriate connections between the jack ports so the loop is closed.</li>
|
|
|
|
<li>Adjust the playback and capture levels in the mixer.</li>
|
2013-02-15 13:21:59 -05:00
|
|
|
</ol>
|
2020-07-12 11:32:28 -04:00
|
|
|
<p class="warning">
|
|
|
|
On Linux, the latency of USB audio interfaces is not constant. It may
|
|
|
|
change when the interface is reconnected, on reboot and even when xruns
|
|
|
|
occur. This is due the buffer handling in the Linux USB stack. As a
|
|
|
|
workaround, it is possible to recalibrate the latency at the start of each
|
|
|
|
session and each time an xrun occurs.
|
|
|
|
</p>
|