summaryrefslogtreecommitdiff
path: root/gtk2_ardour/ardour_ui.h
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2020-03-19 16:03:28 +0100
committerRobin Gareus <robin@gareus.org>2020-03-19 16:18:48 +0100
commit5f27382b882557c52a99e2924e875b5b43d6a7d4 (patch)
tree339f537036a0d41d8ded7db62b26d75dd8f9c581 /gtk2_ardour/ardour_ui.h
parente8776d39fed085ed1920724906b81c969fa24573 (diff)
Remove Audio+MIDI track, and consolidate route creation methods
Audio+MIDI tracks were just MIDI tracks with an additional audio input, and do not directly allow use of vocoders (an instrument is loaded by default). For pitch-correction or similar use-cases one would prefer an audio-track (main data) with MIDI only being used as control-input. Ardour 5/6 pin-connections and side-chain offer a much nicer workflow for this setup. Alternatively one can get those tracks-types by manually adding an input port to an existing track, and creating a custom template.
Diffstat (limited to 'gtk2_ardour/ardour_ui.h')
-rw-r--r--gtk2_ardour/ardour_ui.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/gtk2_ardour/ardour_ui.h b/gtk2_ardour/ardour_ui.h
index bc61f054d5..7d55b976af 100644
--- a/gtk2_ardour/ardour_ui.h
+++ b/gtk2_ardour/ardour_ui.h
@@ -315,15 +315,6 @@ public:
void session_add_audio_route (bool, int32_t, int32_t, ARDOUR::TrackMode, ARDOUR::RouteGroup *,
uint32_t, std::string const &, bool, ARDOUR::PresentationInfo::order_t order);
- void session_add_mixed_track (const ARDOUR::ChanCount&, const ARDOUR::ChanCount&, ARDOUR::RouteGroup*,
- uint32_t, std::string const &, bool strict_io,
- ARDOUR::PluginInfoPtr, ARDOUR::Plugin::PresetRecord* pset,
- ARDOUR::PresentationInfo::order_t order);
-
- void session_add_midi_bus (ARDOUR::RouteGroup*, uint32_t, std::string const &, bool strict_io,
- ARDOUR::PluginInfoPtr, ARDOUR::Plugin::PresetRecord* pset,
- ARDOUR::PresentationInfo::order_t order);
-
void session_add_midi_route (bool, ARDOUR::RouteGroup *, uint32_t, std::string const &, bool,
ARDOUR::PluginInfoPtr, ARDOUR::Plugin::PresetRecord*,
ARDOUR::PresentationInfo::order_t order);