From 4a9b2cd014c1bae4aa0298cc4003ff5abcc83340 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Thu, 11 Jan 2024 05:56:18 +0100 Subject: [PATCH] Vapor: set surround bus channel names --- libs/ardour/route.cc | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/libs/ardour/route.cc b/libs/ardour/route.cc index af0d5321f4..ba29fa1762 100644 --- a/libs/ardour/route.cc +++ b/libs/ardour/route.cc @@ -303,6 +303,11 @@ Route::init () _monitor_control.reset (new MonitorProcessor (_session)); _monitor_control->activate (); + _output->set_audio_channel_names (std::vector { + _("L"), _("R"), _("C"), _("LFE"), _("Ls"), _("Rs"), + _("Lrs"), _("Rrs"), _("Lfh"), _("Rfh"), _("Lrh"), _("Rrh"), + _("Lb"), _("Rb") + }); } if (_presentation_info.flags() & PresentationInfo::FoldbackBus) {