]> Shamusworld >> Repos - ardour-manual/blob - _manual/19_synchronization/02_latency-and-latency-compensation.html
add sync & latency chapter
[ardour-manual] / _manual / 19_synchronization / 02_latency-and-latency-compensation.html
1 ---
2 layout: default
3 title: Latency and Latency-Compensation
4 ---
5
6 <h2>Latency</h2>
7
8 <p>
9 When speaking about synchronization, there is no way around also mentioning Latency:
10 <a href="http://en.wikipedia.org/wiki/Latency_%28audio%29" title="http://en.wikipedia.org/wiki/Latency_%28audio%29">Latency</a> is how you call the reaction time of a system to a certain stimulus. There are many factors that contribute to the total latency of a given system.
11 In order to achieve exact time synchronization all sources of latency need to be take into account and compensated for.
12 </p>
13 <ul>
14 <li><strong>Sound propagation through the air</strong>: since it is a mechanical perturbation in a fluid, sound travels at comparatively slow <a href="http://en.wikipedia.org/wiki/Speed_of_sound" title="http://en.wikipedia.org/wiki/Speed_of_sound">speed</a> of about 340 m/s. Some interesting consequences:
15 <ul>
16 <li>Your acoustic guitar or piano has a latency of about 1-2 ms, due to the propagation of the sound between your instrument and your ear .  </li>
17 <li>At a large concert venue if you are far away from the stage the sound will travel faster through the path “singer → mic → nearest loudspeaker → your ear” than through the “singer → air → your ear” one, so you&#039;ll hear the real sound as an echo of the amplified one. </li>
18 </ul>
19 </li>
20 <li><strong>Digital-to-Analog and Analog-to-Digital conversion</strong>: electric signals travel quite fast, 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, so their contribution to the total latency may be considerable. Fast converters are, for instance, one of the factors that distinguishes a quality audio interface from a cheap one, along with other features like low noise, low distortion, etc.</li>
21 <li><strong>Digital Signal Processing</strong>: 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. This is usually the main cause of latency when you use a computer and one you can try to predict and optimize.</li>
22 <li><strong>Computer I/O Architecture</strong>: a computer is a general purpose processor, not a digital audio processor. This means our audio data has to jump a lot of fences in his path from the 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.) Thanks to the combined efforts of kernel, audio driver and jackd developers, you are in position to tune your system a bit more towards the digital audio processing task, but don&#039;t expect miracles. Remember you can use your computer also to write documents, surf the net, save some lemmings… Polyvalence comes at a cost.</li>
23 </ul>
24
25 <p><img src="/ardour/manual/html/diagrams/latency-chain.png"  title="Figure 1: Latency chain" alt="Figure 1: Latency chain" /></a></p>
26 <p>Figure 1: Latency chain. The numbers are an example for a typical PC. With professional gear and an optimized system the total roundtrip latency is usually lower. The important point is that latency is always additive and a sum of many independent factors.</p>
27
28 <p>
29 There is not much that can done about the first two other than using headphones or sitting near the loudspeaker and buying quality gear.
30 </p>
31
32 <p>
33 Processing latency is usually divided into capture latency and playback latency:
34 </p>
35 <ul>
36 <li><strong>Capture latency</strong>: the time necessary for the digitized audio to be available for digital processing. Usually it is one audio period.</li>
37 </ul>
38 <ul>
39 <li><strong>Playback latency</strong>: the time necessary for the digitized audio to be processed and delivered out of the processing chain. At best it is one audio period.</li>
40 </ul>
41
42 <p>
43 But this division is an implementation detail of no great interest. What really matters is the combination of both. It is called <strong>processing roundtrip latency</strong>: the time necessary for a certain audio event to be captured, processed and played back.
44 </p>
45
46 <p>
47 It is important to note that <strong>processing latency in a jackd is a matter of choice</strong>: It can be lowered within the limits imposed only by the hardware and audio driver. But the lower it is, the more likely the system will fail to meet its processing deadline and the <em>dreaded</em> <strong>xrun</strong> will make its appearance more often, leaving its merry trail of clicks, pops and crackles.
48 </p>
49
50 <p>
51 The digital I/O latency is usually negligible for integrated or <acronym title="Periphal Component Interface">PCI</acronym> audio devices but for USB or FireWire interfaces the bus clocking and buffering can add some milliseconds.
52 </p>
53
54 <p>
55 The <a href="http://jackaudio.org" title="http://jackaudio.org">JACK</a> Audio Connection Kit has a few parameters to configure the latency. However the settings are constrained by hardware (audio-device, CPU and bus-speed). Lower latencies increase the load on the computer-system (it needs to process the audio in smaller chunks which arrive much more frequently). If the system can not keep up: an <em>x-run</em> (short for buffer over-run and buffer under-run) occurs which usually results in audible clicks or dropouts.
56 </p>
57
58 <p>
59 Low-latency is not always a feature you want to have. It comes with a couple of drawbacks: the most prominent is increased power-consumption because the CPU needs to process many small chunks of audio-data, it is constantly active and can not enter power-saving mode. Furthermore, if more than one application (sound-processor) is involved in processing the sound, the operating system performs a context-switch to run each of these for each audio-cycle which results in a much higher system-load and an increased chance of x-runs.
60 </p>
61
62 <p>
63 Reliable low-latency (≤10ms) on GNU/Linux can usually only be achieved by running <a href="https://rt.wiki.kernel.org/" title="https://rt.wiki.kernel.org/">realtime-kernel</a>.
64 </p>
65
66 <p>
67 Yet there are only few situations where a very low-latency is really important, because they require very quick response from the computer. Some examples that come quickly to mind are:
68 </p>
69 <ul>
70 <li><strong>Playing virtual instruments</strong>: a large delay between the pressing of the keys and the sound the instrument produces will throw-off the timing of most instrumentalists (save if they are church organists, whom we believe are awesome latency-compensation organic systems.)</li>
71 <li><strong>Software audio monitoring</strong>: if a singer is hearing her own voice through two different paths, her head bones and headphones, large latencies can be disturbing.</li>
72 <li><strong>Live-effects</strong>: This case is similar to playing virtual instruments: instead of virtual-instruments/sythensizers it is about real-instruments and and effects processing. Low latency is important when using the computer as effect-rack (e.g. guitar effects) - also precise synchronization may be important if you manually trigger sound effects like delays.</li>
73 <li><strong>Live-mixing</strong>: Some sound engineers use a computer for mixing live performances. Basically that is a combination of the above: monitoring on stage, effect-processing and EQ. It is actually more tricky since one not only wants low latency (audio should not lag too much behind the performance) but exact low-latency (minimal jitter) for delay-lines between speaker in front and back.</li>
74 </ul>
75
76 <p>
77 In many other cases - such as playback, recording, overdubbing, mixing, mastering, etc. latency is not important, It can be relatively large and easily be compensated for.
78 </p>
79
80 <p>
81 To explain the last statement: during mixing or mastering you don&#039;t care if it take 10 or 100ms between the instant you press the <em>play button</em> and sound coming from the speaker. The same is true when recording.
82 </p>
83
84 <p>
85 During tracking, it is however important that the sound that is currently played back is internally aligned with the sound that is being recorded.
86 </p>
87
88 <p>
89 This is where latency-compensation comes into play: There are two possibilities to compensate for latency in a DAW: <em>read-ahead</em> the DAW actually starts playing a bit early. So that the sound hits the speakers a short time later, it is exactly aligned with the timecode of the material that is being recorded.
90 and <em>write-behind</em> since we know that the sound that is being played back has latency, the incoming audio can be delayed by the same amount to line things up again.
91 </p>
92
93 <p>
94 As you may see the second approach has various issues implementation issues regarding timecode and transport synchronization. Ardour uses internal read-ahead to compensate for latency. The time displayed in the Ardour clock corresponds to the audio-signal that you hear on the speakers (and is not where ardour reads files from disk).
95 </p>
96
97 <p>
98 NB. this is also one of the reasons why many projects start at timecode <code>01:00:00:00</code>. 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 <code>01:00:00:00</code>. Ardour3 does handle the case of <code>00:00:00:00</code> properly but not all systems/software/hardware that you may inter-operate with may behave the same.
99 </p>
100
101
102 <h2>Latency compensation and clock sync</h2>
103
104 <p>
105 To achieve sample accurate timecode synchronization, the latency introduced by the audio-setup needs to be known and compensated for.
106 </p>
107
108 <p>
109 In order to compensate for Latency, JACK or JACK applications need to know exactly how long a certain signal needs to be read-ahead or delayed:
110 </p>
111
112 <p><img src="/ardour/manual/html/diagrams/jack-latency-excerpt.png"  title="Figure 2: Jack Latency Compensation" alt="Figure 2: Jack Latency Compensation" /></p>
113 <p>Figure 2: Jack Latency Compensation. This figure outlines the jack latency API. -- excerpt from http://jackaudio.org/files/jack-latency.png</p>
114
115 <p>
116 In Figure 2, clients A and B need to be able to answer the following two questions:
117 </p>
118 <ul>
119 <li>how long has it been since te data read from port Ai or Bi arrived at the edge of the JACK graph (capture)?</li>
120 <li>how long will it be until teh data writen to port Ao or Bo arrives at the edge of the JACK graph (playback)?</li>
121 </ul>
122
123 <p>
124 JACK includes an <acronym title="Application Programming Interface">API</acronym> 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 indicated by <code>-I</code> and <code>-O</code> in Figure 2 and vary from system to system but are generally constant values. On a general purpose computer system the only way to accurately learn about the total latency is to measure it.
125 </p>
126
127
128 <h2>Calibrating JACK latency</h2>
129
130 <p>
131 Linux DSP guru Fons Adriaensen wrote a tool called <code>jack_delay</code> to accurately measure the roundtrip latency of a closed loop audio chain, with sub-sample accuracy. JACK itself includes a variant of this called <code>jack_iodelay</code>.
132 </p>
133
134 <p>
135 Jack_iodelay allows you to measure the total latency of the system, subtracts the known latency of JACK itself and suggests parameters for jackd&#039;s audio-backend <code>-I</code> and <code>-O</code> options.
136 </p>
137
138 <p>
139 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. This is not a theoretical estimation, jack_delay is a measuring tool that will provide very accurate answers.
140 </p>
141
142 <p>
143 You can close the loop in a number of ways:
144 </p>
145 <ul>
146 <li>Putting a speaker close to a microphone. This is rarely done, as air propagation latency is well known so there is no need to measure it.</li>
147 <li>Connecting the output of your audio interface to its input using a patch cable. This can be an analog or a digital loop, depending on the nature of the input/output you use. A digital loop won&#039;t factor in the converters latency.</li>
148 </ul>
149
150 <p>
151 Once you have closed the loop you have to:
152 </p>
153 <ol>
154 <li>Launch jackd with the configuration you want to test.</li>
155 <li>Launch jack_delay.</li>
156 <li>Make the appropriate connections between your jack ports so the loop is closed.</li>
157 <li>Adjust the playback and capture levels in your mixer.</li>
158 </ol>
159
160