]> Shamusworld >> Repos - ardour-manual-diverged/blob - _manual/15_signal-routing/08_signal-flow.html
ecd03e22f581dd18c9849afadce182b75a382e7c
[ardour-manual-diverged] / _manual / 15_signal-routing / 08_signal-flow.html
1 ---
2 layout: default
3 title: Track/Bus Signal Flow
4 ---
5 <h2>Overview</h2>
6 <p>
7 In each individual Track or Bus the signal flow is top to bottom. Consider the following diagram:
8 </p>
9
10 <p class="center"><img width="360px" src="/images/track_signal_routing.png" alt="track signal routing" /></p>
11
12 <p>
13 Trim, Fader and Panner are provided by Ardour.  The Processor-Box can hold 3rd Party Plugins or host-provided redirects (insert, aux-send,..).
14 </p>
15
16 <p>
17 An important aspect is that the signal flow is multi-channel and not fixed throughout the track. For example, a Track can have a mono input, a mono to stereo plugin (e.g. reverb) flowing into a surround panner with 6 outputs. The design of Ardour is that width of the signal flow is defined by the passage through plugins in the processor box, followed by panning.
18 The number of inputs to the panner is defined by the number outputs of the last plugin in the chain. The number of panner outputs is equal to the track's outputs ports, which can be added and remove dynamically. This schema called <em>Flexible I/O</em>. It's very powerful and a distinct feature of Ardour.
19 </p>
20
21 <p class="note">
22 The golden rule of processor signal flow:<br/>The number of outputs of one link of the process chain defines the number inputs of the next, until the panner.
23 </p>
24
25 <p>
26 Due to this rule there is one very common case that is hard to achieve: Keep a mono track mono.  With <em>Flexible I/O</em>, if a stereo plugin is added on a mono track, the signal flow after that plugin becomes stereo.
27 </p>
28
29 <h2>Strict I/O</h2>
30 <p>Strict I/O enforces a simple rule: Plugins have the same number of inputs as they have outputs. By induction the track will have as many output-ports as there are input ports.</p>
31 <ol>
32         <li>Adding a Plugin will not modify the signal-flow. The number of plugin outputs is forced to the number of inputs present at the point of insertion.
33                 If a plugin-pin is missing, it is ignored. If Plugin-pin is unconnected, it is fed with silence. Unconnected plugin outputs are ignored).</li>
34         <li>Strict I/O enforces the number of output ports.  The number of inputs to the panner (outputs of last plugin) defines the number of track outputs (after panner).
35                 Required ports are automatically added, excess ports are removed. The user cannot manually add/remove output ports.</li>
36 </ol>
37
38 <p>
39 Strict I/O is set when creating the track and can later be en/disabled dynamically in the context menu of every mixer strip.
40 </p>
41
42 <p class="center"><img src="/images/strict_io_routing.png" alt="strict i/o routing" /></p>
43
44 <p>There are two exceptions to the above rule 1.</p>
45 <ul>
46 <li>Midi Synths. When adding a synth at a point where there is a Midi port only, the synthesizer plugin will add audio-output ports,
47         which trickle down the processor chain to all follow up plugins as inputs and in turn force their outputs to match.</li>
48 <li>Side chain inputs are not affected by strict i/o</li>
49 </ul>
50
51 <h2>Customizing the Signal Flow</h2>
52 <p>
53 The signal flow though the mixer can be customized at every processor node via "Pin Configuration" in the context menu of every processor.
54 User customization override all automatic (flexible/strict i/o mode) inferred output port settings for the given processor.
55 Non-customized plugins downstream will follow suit depending on the selected route mode. e.g. adding an additional output to a plugin on a track set to strict-i/o will trickle down the process chain until the output and result in the addition of an output port.  This is useful for example in case of a mono to stereo reverb.
56 </p>
57
58 <p>
59 One can also bypass plugin instances with a 'trhu' connection. This connection is latency compensated. One example is separate Left/Right channel Equalization using two mono plugins on a stereo track:
60 </p>
61 <p class="center"><img src="/images/left_right_eq.png" alt="separate left/right Eq" /></p>