From 5e01275d0e1c652506f784d230e6c2f738e149c6 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Thu, 8 Apr 2021 01:16:47 +0200 Subject: [PATCH] Set default master-bus meter-point to output For master-bus measuring the signal directly at the output is preferable. This includes the panner, mute, and loudness gain. --- libs/ardour/route.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/libs/ardour/route.cc b/libs/ardour/route.cc index 1a68f6ae14..7a0cea92ab 100644 --- a/libs/ardour/route.cc +++ b/libs/ardour/route.cc @@ -152,6 +152,7 @@ Route::init () /* default master bus to use strict i/o */ if (is_master() || is_monitor ()) { _strict_io = true; + _meter_point = _pending_meter_point = MeterOutput; } /* add standard controls */