Ardour  9.0-pre0-350-gf17a656217
rc_configuration_vars.inc.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2000-2019 Paul Davis <paul@linuxaudiosystems.com>
3  * Copyright (C) 2009-2012 Carl Hetherington <carl@carlh.net>
4  * Copyright (C) 2012-2019 Robin Gareus <robin@gareus.org>
5  * Copyright (C) 2013-2015 Nick Mainsbridge <mainsbridge@gmail.com>
6  * Copyright (C) 2013-2018 Colin Fletcher <colin.m.fletcher@googlemail.com>
7  * Copyright (C) 2014-2019 Ben Loftis <ben@harrisonconsoles.com>
8  * Copyright (C) 2018 Len Ovens <len@ovenwerks.net>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License along
21  * with this program; if not, write to the Free Software Foundation, Inc.,
22  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
23  */
24 
25 /*****************************************************
26  DO NOT USE uint8_t or any other type that resolves
27  to a single char, because the value will be
28  stored incorrectly when serialized. Use int32_t
29  instead and ensure that code correctly limits
30  the value of the variable.
31 *****************************************************/
32 
33 CONFIG_VARIABLE (Temporal::TimeDomain, preferred_time_domain, "preferred_time_domain", Temporal::AudioTime)
34 
35 /* IO connection */
36 
37 CONFIG_VARIABLE (bool, auto_connect_standard_busses, "auto-connect-standard-busses", true)
38 /* this variable is used to indicate output mode in Waves Tracks:
39  "Multi Out" == AutoConnectPhysical and "Stereo Out" == AutoConnectMaster
40 */
41 CONFIG_VARIABLE (AutoConnectOption, output_auto_connect, "output-auto-connect", AutoConnectMaster)
42 CONFIG_VARIABLE (AutoConnectOption, input_auto_connect, "input-auto-connect", AutoConnectPhysical)
43 CONFIG_VARIABLE (bool, strict_io, "strict-io", true)
44 
45 /* 0: off, no varispeed, q: 8..96 - resampler adds (resampler_quality - 1) samples latency */
46 CONFIG_VARIABLE (uint32_t, port_resampler_quality, "port-resampler-quality", 17)
47 
48 /* Connect all physical inputs to a dummy port, this makes raw input data available.
49  * `jack_port_get_buffer (jack_port_by_name (c, "system:capture_1") , n_samples);`
50  * nees to work for input-monitoring (recorder page).
51  */
52 CONFIG_VARIABLE (bool, work_around_jack_no_copy_optimization, "work-around-jack-no-copy-optimization", true)
53 
54 /* Naming */
55 CONFIG_VARIABLE (TracksAutoNamingRule, tracks_auto_naming, "tracks-auto-naming", UseDefaultNames)
56 
57 /* Transport Masters (all) */
58 
59 CONFIG_VARIABLE (bool, transport_masters_just_roll_when_sync_lost, "transport-masters-just-roll-when-sync-lost", false)
60 CONFIG_VARIABLE (bool, midi_clock_sets_tempo, "midi-clock-sets-tempo", true)
61 
62 /* MIDI and MIDI related */
63 
64 CONFIG_VARIABLE (bool, trace_midi_input, "trace-midi-input", false)
65 CONFIG_VARIABLE (bool, trace_midi_output, "trace-midi-output", false)
66 CONFIG_VARIABLE (bool, send_mtc, "send-mtc", false)
67 CONFIG_VARIABLE (bool, send_mmc, "send-mmc", false)
68 CONFIG_VARIABLE (bool, send_midi_clock, "send-midi-clock", false)
69 CONFIG_VARIABLE (double, midi_clock_resolution, "midi-clock-resolution", 1.) /* 0 implies do not round, 1 implies round to integer, non-zero is the smallest fractional resolution, in bpm */
70 CONFIG_VARIABLE (bool, mmc_control, "mmc-control", true)
71 CONFIG_VARIABLE (bool, midi_feedback, "midi-feedback", false)
72 CONFIG_VARIABLE (int32_t, mmc_receive_device_id, "mmc-receive-device-id", 0x7f)
73 CONFIG_VARIABLE (int32_t, mmc_send_device_id, "mmc-send-device-id", 0)
74 CONFIG_VARIABLE (int32_t, initial_program_change, "initial-program-change", -1)
75 CONFIG_VARIABLE (bool, first_midi_bank_is_zero, "display-first-midi-bank-as-zero", false)
76 CONFIG_VARIABLE (int32_t, inter_scene_gap_samples, "inter-scene-gap-samples", 1)
77 CONFIG_VARIABLE (bool, midi_input_follows_selection, "midi-input-follows-selection", 1)
78 CONFIG_VARIABLE (std::string, default_trigger_input_port, "default-trigger-input-port", "")
79 
80 /* Timecode and related */
81 
82 CONFIG_VARIABLE (bool, run_all_transport_masters_always, "run-all-transport-masters-always", true)
83 CONFIG_VARIABLE (int, mtc_qf_speed_tolerance, "mtc-qf-speed-tolerance", 5)
84 CONFIG_VARIABLE (bool, timecode_sync_frame_rate, "timecode-sync-frame-rate", true)
85 CONFIG_VARIABLE (bool, send_ltc, "send-ltc", false)
86 CONFIG_VARIABLE (bool, ltc_send_continuously, "ltc-send-continuously", true)
87 CONFIG_VARIABLE (std::string, ltc_output_port, "ltc-output-port", "")
88 CONFIG_VARIABLE (float, ltc_output_volume, "ltc-output-volume", 0.125893)
89 
90 /* control surfaces */
91 
92 CONFIG_VARIABLE (uint32_t, feedback_interval_ms, "feedback-interval-ms", 100)
93 CONFIG_VARIABLE (bool, auto_enable_surfaces, "auto-enable-surfaces", true)
94 
95 /* disk operations */
96 
97 CONFIG_VARIABLE (uint32_t, minimum_disk_read_bytes, "minimum-disk-read-bytes", ARDOUR::DiskReader::default_chunk_samples() * sizeof (ARDOUR::Sample))
98 CONFIG_VARIABLE (uint32_t, minimum_disk_write_bytes, "minimum-disk-write-bytes", ARDOUR::DiskWriter::default_chunk_samples() * sizeof (ARDOUR::Sample))
99 CONFIG_VARIABLE (BufferingPreset, buffering_preset, "buffering-preset", Medium)
100 CONFIG_VARIABLE (float, audio_capture_buffer_seconds, "capture-buffer-seconds", 5.0)
101 CONFIG_VARIABLE (float, audio_playback_buffer_seconds, "playback-buffer-seconds", 5.0)
102 CONFIG_VARIABLE (float, midi_track_buffer_seconds, "midi-track-buffer-seconds", 1.0)
103 CONFIG_VARIABLE (uint32_t, disk_choice_space_threshold, "disk-choice-space-threshold", 57600000)
104 CONFIG_VARIABLE (bool, auto_analyse_audio, "auto-analyse-audio", false)
105 CONFIG_VARIABLE (float, transient_sensitivity, "transient-sensitivity", 50)
106 CONFIG_VARIABLE (float, max_transport_speed, "max-transport-speed", 2.0)
107 
108 /* OSC */
109 
110 CONFIG_VARIABLE (uint32_t, osc_port, "osc-port", 3819)
111 CONFIG_VARIABLE (bool, use_osc, "use-osc", false)
112 
113 /* editing related */
114 
115 CONFIG_VARIABLE (LayerModel, layer_model, "layer-model", Manual)
116 CONFIG_VARIABLE (bool, automation_follows_regions, "automation-follows-regions", true)
117 CONFIG_VARIABLE (bool, region_boundaries_from_selected_tracks, "region-boundaries-from-selected-tracks", true)
118 CONFIG_VARIABLE (bool, region_boundaries_from_onscreen_tracks, "region-boundaries-from-onscreen_tracks", true)
119 CONFIG_VARIABLE (FadeShape, default_fade_shape, "default-fade-shape", FadeConstantPower)
120 CONFIG_VARIABLE (RangeSelectionAfterSplit, range_selection_after_split, "range-selection-after-split", PreserveSel)
121 CONFIG_VARIABLE (RegionSelectionAfterSplit, region_selection_after_split, "region-selection-after-split", None)
122 CONFIG_VARIABLE (bool, interview_editing, "interview-editing", false)
123 
124 /* monitoring, mute, solo etc */
125 
126 CONFIG_VARIABLE (bool, mute_affects_pre_fader, "mute-affects-pre-fader", false)
127 CONFIG_VARIABLE (bool, mute_affects_post_fader, "mute-affects-post-fader", true)
128 CONFIG_VARIABLE (bool, mute_affects_control_outs, "mute-affects-control-outs", true)
129 CONFIG_VARIABLE (bool, mute_affects_main_outs, "mute-affects-main-outs", true)
130 CONFIG_VARIABLE (bool, mute_affects_surround_sends, "mute-affects-surround-sends", true)
131 CONFIG_VARIABLE (MonitorModel, monitoring_model, "monitoring-model", ExternalMonitoring)
132 CONFIG_VARIABLE (ListenPosition, listen_position, "listen-position", AfterFaderListen)
135 CONFIG_VARIABLE (bool, use_monitor_bus, "use-monitor-bus", false)
136 
137 CONFIG_VARIABLE (bool, solo_control_is_listen_control, "solo-control-is-listen-control", false)
138 CONFIG_VARIABLE (bool, exclusive_solo, "exclusive-solo", false)
139 CONFIG_VARIABLE (bool, latched_record_enable, "latched-record-enable", false)
140 CONFIG_VARIABLE (bool, all_safe, "all-safe", false)
141 CONFIG_VARIABLE (bool, show_solo_mutes, "show-solo-mutes", true)
142 CONFIG_VARIABLE (bool, solo_mute_override, "solo-mute-override", false)
143 CONFIG_VARIABLE (bool, auto_input_does_talkback, "auto-input-does-talkback", false)
144 CONFIG_VARIABLE (bool, use_master_volume, "use-master-volume", false)
145 CONFIG_VARIABLE (gain_t, solo_mute_gain, "solo-mute-gain", 0.0)
146 CONFIG_VARIABLE (std::string, monitor_bus_preferred_bundle, "monitor-bus-preferred-bundle", "")
147 CONFIG_VARIABLE (bool, quieten_at_speed, "quieten-at-speed", true)
148 
149 CONFIG_VARIABLE (bool, link_send_and_route_panner, "link-send-and-route-panner", true)
150 CONFIG_VARIABLE (std::string, midi_audition_synth_uri, "midi-audition-synth-uri", "@default@") /*deprecated*/
151 
152 /* click */
153 
154 CONFIG_VARIABLE (bool, clicking, "clicking", false)
155 CONFIG_VARIABLE (bool, click_record_only, "click-record-only", false)
156 CONFIG_VARIABLE (std::string, click_sound, "click-sound", "")
157 CONFIG_VARIABLE (std::string, click_emphasis_sound, "click-emphasis-sound", "")
158 CONFIG_VARIABLE (gain_t, click_gain, "click-gain", 1.0)
159 CONFIG_VARIABLE (bool, use_click_emphasis, "use-click-emphasis", true)
160 
161 /* transport control and related */
162 
166 CONFIG_VARIABLE (bool, skip_playback, "skip-playback", true)
167 CONFIG_VARIABLE (bool, plugins_stop_with_transport, "plugins-stop-with-transport", false)
168 CONFIG_VARIABLE (bool, recording_resets_xrun_count, "recording-resets-xrun-count", false)
169 CONFIG_VARIABLE (bool, stop_recording_on_xrun, "stop-recording-on-xrun", false)
170 CONFIG_VARIABLE (bool, create_xrun_marker, "create-xrun-marker", false)
171 CONFIG_VARIABLE (bool, stop_at_session_end, "stop-at-session-end", false)
172 CONFIG_VARIABLE (float, preroll_seconds, "preroll-seconds", -2.0f)
173 CONFIG_VARIABLE (bool, loop_is_mode, "loop-is-mode", false)
174 CONFIG_VARIABLE (LoopFadeChoice, loop_fade_choice, "loop-fade-choice", XFadeLoop)
175 CONFIG_VARIABLE (float, shuttle_speed_factor, "shuttle-speed-factor", 1.0f) // used for MMC shuttle
176 CONFIG_VARIABLE (float, shuttle_speed_threshold, "shuttle-speed-threshold", 5.0f) // used for MMC shuttle
177 CONFIG_VARIABLE (ShuttleUnits, shuttle_units, "shuttle-units", Percentage)
178 CONFIG_VARIABLE (float, shuttle_max_speed, "shuttle-max-speed", 8.0f)
179 CONFIG_VARIABLE (FastWindOp, mmc_fast_wind_op, "mmc-fast-wind-op", FastWindVarispeed)
180 CONFIG_VARIABLE (bool, locate_while_waiting_for_sync, "locate-while-waiting-for-sync", false)
181 CONFIG_VARIABLE (bool, disable_disarm_during_roll, "disable-disarm-during-roll", false)
182 CONFIG_VARIABLE (AutoReturnTarget, auto_return_target_list, "auto-return-target-list", AutoReturnTarget(LastLocate|RangeSelectionStart|Loop|RegionSelectionStart))
183 CONFIG_VARIABLE (bool, reset_default_speed_on_stop, "reset-default-speed-on-stop", false)
184 CONFIG_VARIABLE (bool, rewind_ffwd_like_tape_decks, "rewind-ffwd-like-tape-decks", true)
185 CONFIG_VARIABLE (bool, auto_return_after_rewind_ffwd, "auto-return-after-rewind-ffwd", false)
186 CONFIG_VARIABLE (bool, stop_on_grid, "stop-on-grid", false)
187 
188 /* metering */
189 
190 CONFIG_VARIABLE (float, meter_falloff, "meter-falloff", 13.3f)
191 CONFIG_VARIABLE (MeterType, meter_type_master, "meter-type-master", MeterK14)
192 CONFIG_VARIABLE (MeterType, meter_type_track, "meter-type-track", MeterPeak)
193 CONFIG_VARIABLE (MeterType, meter_type_bus, "meter-type-bus", MeterPeak)
194 
195 /* miscellany */
196 
197 CONFIG_VARIABLE (bool, try_autostart_engine, "try-autostart-engine", true)
198 CONFIG_VARIABLE (bool, hide_dummy_backend, "hide-dummy-backend", true)
199 CONFIG_VARIABLE (bool, copy_demo_sessions, "copy-demo-sessions", true)
200 CONFIG_VARIABLE (std::string, auditioner_output_left, "auditioner-output-left", "default")
201 CONFIG_VARIABLE (std::string, auditioner_output_right, "auditioner-output-right", "default")
202 CONFIG_VARIABLE (bool, replicate_missing_region_channels, "replicate-missing-region-channels", true)
203 CONFIG_VARIABLE (bool, hiding_groups_deactivates_groups, "deprecated-hiding-groups-deactivates-groups", false) /*deprecated*/
204 CONFIG_VARIABLE (bool, group_override_inverts, "group-override-inverts", true)
205 CONFIG_VARIABLE (bool, verify_remove_last_capture, "verify-remove-last-capture", true)
206 CONFIG_VARIABLE (bool, save_history, "save-history", true)
207 CONFIG_VARIABLE (int32_t, saved_history_depth, "save-history-depth", 20)
208 CONFIG_VARIABLE (int32_t, history_depth, "history-depth", 20)
209 CONFIG_VARIABLE (RegionEquivalence, region_equivalence, "region-equivalency", LayerTime)
210 CONFIG_VARIABLE (bool, periodic_safety_backups, "periodic-safety-backups", true)
211 CONFIG_VARIABLE (uint32_t, periodic_safety_backup_interval, "periodic-safety-backup-interval", 120)
212 CONFIG_VARIABLE (float, automation_interval_msecs, "automation-interval-msecs", 30)
213 #ifdef __APPLE__
214 CONFIG_VARIABLE_SPECIAL (std::string, default_session_parent_dir, "default-session-parent-dir", "~/Music", poor_mans_glob)
215 #elif defined (PLATFORM_WINDOWS)
216 CONFIG_VARIABLE_SPECIAL (std::string, default_session_parent_dir, "default-session-parent-dir", "~\\Documents", poor_mans_glob)
217 #else
218 CONFIG_VARIABLE_SPECIAL (std::string, default_session_parent_dir, "default-session-parent-dir", "~", poor_mans_glob)
219 #endif
220 CONFIG_VARIABLE (std::string, clip_library_dir, "clip-library-dir", "@default@") /* writable folder */
221 CONFIG_VARIABLE (std::string, sample_lib_path, "sample-lib-path", "") /* custom paths */
222 CONFIG_VARIABLE (bool, allow_special_bus_removal, "allow-special-bus-removal", false)
223 CONFIG_VARIABLE (int32_t, processor_usage, "processor-usage", -1)
224 CONFIG_VARIABLE (int32_t, cpu_dma_latency, "cpu-dma-latency", -1) /* >=0 to enable */
225 CONFIG_VARIABLE (int32_t, io_thread_count, "io-thread-count", -2)
226 CONFIG_VARIABLE (int32_t, io_thread_policy, "io-thread-policy", 0)
227 CONFIG_VARIABLE (gain_t, max_gain, "max-gain", 2.0) /* +6.0dB */
228 CONFIG_VARIABLE (uint32_t, max_recent_sessions, "max-recent-sessions", 10)
229 CONFIG_VARIABLE (uint32_t, max_recent_templates, "max-recent-templates", 10)
230 CONFIG_VARIABLE (double, automation_thinning_factor, "automation-thinning-factor", 20.0)
231 CONFIG_VARIABLE (samplecnt_t, range_location_minimum, "range-location-minimum", 128) /* samples */
232 CONFIG_VARIABLE (EditMode, edit_mode, "edit-mode", Slide)
233 CONFIG_VARIABLE (RippleMode, ripple_mode, "ripple-mode", RippleSelected)
234 CONFIG_VARIABLE (Temporal::TimeDomain, default_automation_time_domain, "default-automation-time-domain", Temporal::BeatTime)
235 CONFIG_VARIABLE (ARDOUR::AnyTime, default_quantization, "default-quantization", ARDOUR::AnyTime (Temporal::BBT_Offset (1, 0, 0)))
236 CONFIG_VARIABLE (bool, mark_at_pgm_change, "mark-at-pgm-change", true)
237 CONFIG_VARIABLE (bool, locate_to_pgm_change, "locate-to-pgm-change", true)
238 
239 /* plugin related */
240 
241 CONFIG_VARIABLE (bool, new_plugins_active, "new-plugins-active", true)
242 CONFIG_VARIABLE (bool, use_plugin_own_gui, "use-plugin-own-gui", true)
243 CONFIG_VARIABLE (bool, use_windows_vst, "use-windows-vst", true)
244 CONFIG_VARIABLE (bool, use_lxvst, "use-lxvst", true)
245 CONFIG_VARIABLE (bool, use_macvst, "use-macvst", true)
246 CONFIG_VARIABLE (bool, use_audio_units, "use-audio-units", true)
247 CONFIG_VARIABLE (bool, use_vst3, "use-vst3", true)
248 CONFIG_VARIABLE (bool, discover_plugins_on_start, "discover-plugins-on-start", false)
249 CONFIG_VARIABLE (bool, verbose_plugin_scan, "verbose-plugin-scan", false)
250 CONFIG_VARIABLE (bool, conceal_lv1_if_lv2_exists, "conceal-lv1-if-lv2-exists", true)
251 CONFIG_VARIABLE (bool, conceal_vst2_if_vst3_exists, "conceal-vst2-if-vst3-exists", true)
252 CONFIG_VARIABLE (bool, show_vst3_micro_edit_inline, "show-vst3-micro-edit-inline", true)
253 CONFIG_VARIABLE (bool, ask_replace_instrument, "ask-replace-instrument", true)
254 CONFIG_VARIABLE (bool, ask_setup_instrument, "ask-setup-instrument", true)
255 CONFIG_VARIABLE (bool, setup_sidechain, "setup-sidechain", false)
256 CONFIG_VARIABLE (uint32_t, plugin_scan_timeout, "plugin-scan-timeout", 150) /* deci-seconds */
257 CONFIG_VARIABLE (uint32_t, limit_n_automatables, "limit-n-automatables", 512)
258 CONFIG_VARIABLE (uint32_t, plugin_cache_version, "plugin-cache-version", 0)
259 
260 CONFIG_VARIABLE (float, tail_duration_sec, "tail-duration-sec", 2.0)
261 CONFIG_VARIABLE (uint32_t, max_tail_samples, "max-tail-samples", 0xffffffff) // aka kInfiniteTail
262 
263 /* custom user plugin paths */
264 CONFIG_VARIABLE (std::string, plugin_path_vst, "plugin-path-vst", "@default@")
265 CONFIG_VARIABLE (std::string, plugin_path_lxvst, "plugin-path-lxvst", "@default@")
266 CONFIG_VARIABLE (std::string, plugin_path_vst3, "plugin-path-vst3", "@default@")
267 
268 /* denormal management */
269 
270 CONFIG_VARIABLE (bool, denormal_protection, "denormal-protection", false)
271 CONFIG_VARIABLE (DenormalModel, denormal_model, "denormal-model", DenormalFTZDAZ)
272 
273 
274 /* web addresses used in the program */
275 
276 CONFIG_VARIABLE (std::string, pingback_url, "pingback-url", "http://community.ardour.org/pingback/ignored/")
277 CONFIG_VARIABLE (std::string, tutorial_manual_url, "tutorial-manual-url", "http://ardour.org/tutorial")
278 CONFIG_VARIABLE (std::string, reference_manual_url, "reference-manual-url", "http://manual.ardour.org/")
279 CONFIG_VARIABLE (std::string, updates_url, "updates-url", "http://ardour.org/whatsnew.html")
280 CONFIG_VARIABLE (std::string, donate_url, "donate-url", "http://community.ardour.org/donate")
281 CONFIG_VARIABLE (std::string, resource_index_url, "resource-index-url", "http://ardour.org/libraries.xml")
282 
283 /* video timeline configuration */
284 CONFIG_VARIABLE (std::string, xjadeo_binary, "xjadeo-binary", "")
285 CONFIG_VARIABLE (bool, video_advanced_setup, "video-advanced-setup", false)
286 CONFIG_VARIABLE (std::string, video_server_url, "video-server-url", "http://127.0.0.1:1554")
287 #ifndef PLATFORM_WINDOWS
288 CONFIG_VARIABLE (std::string, video_server_docroot, "video-server-docroot", "/")
289 #else
290 CONFIG_VARIABLE (std::string, video_server_docroot, "video-server-docroot", "C:\\")
291 #endif
292 CONFIG_VARIABLE (bool, show_video_server_dialog, "show-video-server-dialog", false)
293 
294 /* export */
295 CONFIG_VARIABLE (float, export_preroll, "export-preroll", 2.0) // seconds
296 CONFIG_VARIABLE (float, export_silence_threshold, "export-silence-threshold", -90) // dB
297 CONFIG_VARIABLE (float, ppqn_factor_for_export, "ppqn-factor-for-export", 1) // Temporal::ticks_per_beat
298 
299 CONFIG_VARIABLE (float, max_midi_clip_size, "max-midi-clip-size", 1024) // number of MIDI events
300 CONFIG_VARIABLE (float, max_audio_clip_duration, "max-audio-clip-duration" , 30.) // seconds
void None
Definition: TypeList.h:49
void session(lua_State *L)
void osc(lua_State *L)
PBD::PropertyDescriptor< gain_t > gain
PBD::PropertyDescriptor< bool > active
PBD::PropertyDescriptor< bool > regions
PBD::PropertyDescriptor< bool > selected
PBD::PropertyDescriptor< Temporal::BBT_Offset > quantization
PBD::PropertyDescriptor< bool > region
PBD::PropertyDescriptor< timepos_t > start
PBD::PropertyDescriptor< layer_t > layer
@ ExternalMonitoring
we leave monitoring to the audio hardware
std::string clip_library_dir(bool create_if_missing=false)
Temporal::samplecnt_t samplecnt_t
void pingback(const std::string &this_version, const std::string &announce_path)
void save(const std::string &filename)
GQuark capture
#define CONFIG_VARIABLE_SPECIAL(Type, var, name, value, mutator)
minimum disk read bytes
CONFIG_VARIABLE(double, midi_clock_resolution, "midi-clock-resolution", 1.) CONFIG_VARIABLE(uint32_t
std::string poor_mans_glob(std::string path)
void split(std::string, std::vector< std::string > &, char)
link region and track selection