@@ -123,23 +123,23 @@ namespace lsp
123
123
BYPASS, \
124
124
IN_GAIN, \
125
125
OUT_GAIN, \
126
- SWITCH (" showmx" , " Show mix overlay" , 0 .0f ), \
127
- SWITCH (" showsc" , " Show sidechain overlay" , 0 .0f ), \
128
- SWITCH (" pause" , " Pause graph analysis" , 0 .0f ), \
129
- TRIGGER (" clear" , " Clear graph analysis" )
126
+ SWITCH (" showmx" , " Show mix overlay" , " Show mix bar " , 0 .0f ), \
127
+ SWITCH (" showsc" , " Show sidechain overlay" , " Show SC bar " , 0 .0f ), \
128
+ SWITCH (" pause" , " Pause graph analysis" , " Pause " , 0 .0f ), \
129
+ TRIGGER (" clear" , " Clear graph analysis" , " Clear " )
130
130
131
131
#define DYNA_PROC_LR_COMMON \
132
132
DYNA_PROC_COMMON, \
133
- COMBO (" psel" , " Processor selector" , 0 , dyna_proc_sel_lr)
133
+ COMBO (" psel" , " Processor selector" , " Proc selector " , 0 , dyna_proc_sel_lr)
134
134
135
135
#define DYNA_PROC_MS_COMMON \
136
136
DYNA_PROC_COMMON, \
137
- COMBO (" psel" , " Processor selector" , 0 , dyna_proc_sel_ms), \
138
- SWITCH (" msl" , " Mid/Side listen" , 0 .0f )
137
+ COMBO (" psel" , " Processor selector" , " Proc selector " , 0 , dyna_proc_sel_ms), \
138
+ SWITCH (" msl" , " Mid/Side listen" , " M/S listen " , 0 .0f )
139
139
140
140
#define DYNA_PROC_SPLIT_COMMON \
141
- SWITCH (" ssplit" , " Stereo split" , 0 .0f ), \
142
- COMBO (" sscs" , " Split sidechain source" , dyna_processor_metadata::SC_SPLIT_SOURCE_DFL, dyna_proc_sc_split_sources)
141
+ SWITCH (" ssplit" , " Stereo split" , " Stereo split " , 0 .0f ), \
142
+ COMBO (" sscs" , " Split sidechain source" , " Split SC source " , dyna_processor_metadata::SC_SPLIT_SOURCE_DFL, dyna_proc_sc_split_sources)
143
143
144
144
#define DYNA_PROC_SHM_LINK_MONO \
145
145
OPT_RETURN_MONO (" link" , " shml" , " Side-chain shared memory link" )
@@ -148,39 +148,39 @@ namespace lsp
148
148
OPT_RETURN_STEREO (" link" , " shml_" , " Side-chain shared memory link" )
149
149
150
150
#define DYNA_PROC_SC_MONO_CHANNEL (sct ) \
151
- COMBO (" sct" , " Sidechain type" , dyna_processor_metadata::SC_TYPE_DFL, sct), \
152
- COMBO (" scm" , " Sidechain mode" , dyna_processor_metadata::SC_MODE_DFL, dyna_proc_sc_modes), \
151
+ COMBO (" sct" , " Sidechain type" , " SC type " , dyna_processor_metadata::SC_TYPE_DFL, sct), \
152
+ COMBO (" scm" , " Sidechain mode" , " SC mode " , dyna_processor_metadata::SC_MODE_DFL, dyna_proc_sc_modes), \
153
153
CONTROL (" sla" , " Sidechain lookahead" , U_MSEC, dyna_processor_metadata::LOOKAHEAD), \
154
- SWITCH (" scl" , " Sidechain listen" , 0 .0f ), \
154
+ SWITCH (" scl" , " Sidechain listen" , " SC listen " , 0 .0f ), \
155
155
LOG_CONTROL (" scr" , " Sidechain reactivity" , " SC react" , U_MSEC, dyna_processor_metadata::REACTIVITY), \
156
156
AMP_GAIN100 (" scp" , " Sidechain preamp" , GAIN_AMP_0_DB), \
157
- COMBO (" shpm" , " High-pass filter mode" , 0 , dyna_proc_filter_slope), \
157
+ COMBO (" shpm" , " High-pass filter mode" , " HPF mode " , 0 , dyna_proc_filter_slope), \
158
158
LOG_CONTROL (" shpf" , " High-pass filter frequency" , " HPF freq" , U_HZ, dyna_processor_metadata::HPF), \
159
- COMBO (" slpm" , " Low-pass filter mode" , 0 , dyna_proc_filter_slope), \
159
+ COMBO (" slpm" , " Low-pass filter mode" , " LPF mode " , 0 , dyna_proc_filter_slope), \
160
160
LOG_CONTROL (" slpf" , " Low-pass filter frequency" , " LPF freq" , U_HZ, dyna_processor_metadata::LPF)
161
161
162
162
#define DYNA_PROC_SC_STEREO_CHANNEL (id, label, alias, sct ) \
163
- COMBO (" sct" id, " Sidechain type" label, dyna_processor_metadata::SC_TYPE_DFL, sct), \
164
- COMBO (" scm" id, " Sidechain mode" label, dyna_processor_metadata::SC_MODE_DFL, dyna_proc_sc_modes), \
163
+ COMBO (" sct" id, " Sidechain type" label, " SC type " alias, dyna_processor_metadata::SC_TYPE_DFL, sct), \
164
+ COMBO (" scm" id, " Sidechain mode" label, " SC mode " alias, dyna_processor_metadata::SC_MODE_DFL, dyna_proc_sc_modes), \
165
165
CONTROL (" sla" id, " Sidechain lookahead" label, U_MSEC, dyna_processor_metadata::LOOKAHEAD), \
166
- SWITCH (" scl" id, " Sidechain listen" label, 0 .0f ), \
167
- COMBO (" scs" id, " Sidechain source" label, dyna_processor_metadata::SC_SOURCE_DFL, dyna_proc_sc_sources), \
166
+ SWITCH (" scl" id, " Sidechain listen" label, " SC listen " alias, 0 .0f ), \
167
+ COMBO (" scs" id, " Sidechain source" label, " SC source " alias, dyna_processor_metadata::SC_SOURCE_DFL, dyna_proc_sc_sources), \
168
168
LOG_CONTROL (" scr" id, " Sidechain reactivity" label, " SC react" alias, U_MSEC, dyna_processor_metadata::REACTIVITY), \
169
169
AMP_GAIN100 (" scp" id, " Sidechain preamp" label, GAIN_AMP_0_DB), \
170
- COMBO (" shpm" id, " High-pass filter mode" label, 0 , dyna_proc_filter_slope), \
170
+ COMBO (" shpm" id, " High-pass filter mode" label, " HPF mode " alias, 0 , dyna_proc_filter_slope), \
171
171
LOG_CONTROL (" shpf" id, " High-pass filter frequency" label, " HPF freq" alias, U_HZ, dyna_processor_metadata::HPF), \
172
- COMBO (" slpm" id, " Low-pass filter mode" label, 0 , dyna_proc_filter_slope), \
172
+ COMBO (" slpm" id, " Low-pass filter mode" label, " LPF mode " alias, 0 , dyna_proc_filter_slope), \
173
173
LOG_CONTROL (" slpf" id, " Low-pass filter frequency" label, " LPF freq" alias, U_HZ, dyna_processor_metadata::LPF)
174
174
175
175
#define DYNA_POINT (idx, on, id, label, alias, level ) \
176
- SWITCH (" pe" #idx id, " Point enable " #idx label, on), \
176
+ SWITCH (" pe" #idx id, " Point enable " #idx label, " Point on " #idx alias, on), \
177
177
LOG_CONTROL_DFL (" tl" #idx id, " Threshold " #idx label, " Thresh " #idx alias, U_GAIN_AMP, dyna_processor_metadata::THRESHOLD, level), \
178
178
LOG_CONTROL_DFL (" gl" #idx id, " Gain " #idx label, " Gain " #idx alias, U_GAIN_AMP, dyna_processor_metadata::THRESHOLD, level), \
179
179
LOG_CONTROL (" kn" #idx id, " Knee " #idx label, " Knee " #idx alias, U_GAIN_AMP, dyna_processor_metadata::KNEE), \
180
- SWITCH (" ae" #idx id, " Attack enable " #idx label, 0 .0f ), \
180
+ SWITCH (" ae" #idx id, " Attack enable " #idx label, " Att on " #idx alias, 0 .0f ), \
181
181
LOG_CONTROL_DFL (" al" #idx id, " Attack level " #idx label, " Att lvl " #idx alias, U_GAIN_AMP, dyna_processor_metadata::ATTACK_LVL, level), \
182
182
LOG_CONTROL (" at" #idx id, " Attack time " #idx label, " Att time " #idx alias, U_MSEC, dyna_processor_metadata::ATTACK_TIME), \
183
- SWITCH (" re" #idx id, " Release enable " #idx label, 0 .0f ), \
183
+ SWITCH (" re" #idx id, " Release enable " #idx label, " Rel on " #idx alias, 0 .0f ), \
184
184
LOG_CONTROL_DFL (" rl" #idx id, " Release level " #idx label, " Rel lvl " #idx label, U_GAIN_AMP, dyna_processor_metadata::RELEASE_LVL, level), \
185
185
LOG_CONTROL (" rt" #idx id, " Release time " #idx label, " Rel time " #idx alias, U_MSEC, dyna_processor_metadata::RELEASE_TIME)
186
186
@@ -198,16 +198,16 @@ namespace lsp
198
198
AMP_GAIN10 (" cdr" id, " Dry gain" label, GAIN_AMP_M_INF_DB), \
199
199
AMP_GAIN10 (" cwt" id, " Wet gain" label, GAIN_AMP_0_DB), \
200
200
PERCENTS (" cdw" id, " Dry/Wet balance" label, 100 .0f , 0 .1f ), \
201
- SWITCH (" cmv" id, " Curve modelling visibility" label, 1 .0f ), \
201
+ SWITCH (" cmv" id, " Curve modelling visibility" label, " Show curve " alias, 1 .0f ), \
202
202
MESH (" cmg" id, " Curve modelling graph" label, 2 , dyna_processor_metadata::CURVE_MESH_SIZE), \
203
203
MESH (" ccg" id, " Curve graph" label, 2 , dyna_processor_metadata::CURVE_MESH_SIZE)
204
204
205
205
#define DYNA_PROC_AUDIO_METER (id, label, alias ) \
206
- SWITCH (" slv" id, " Sidechain level visibility" label, 1 .0f ), \
207
- SWITCH (" elv" id, " Envelope level visibility" label, 1 .0f ), \
208
- SWITCH (" grv" id, " Gain reduction visibility" label, 1 .0f ), \
209
- SWITCH (" ilv" id, " Input level visibility" label, 1 .0f ), \
210
- SWITCH (" olv" id, " Output level visibility" label, 1 .0f ), \
206
+ SWITCH (" slv" id, " Sidechain level visibility" label, " Show SC " alias, 1 .0f ), \
207
+ SWITCH (" elv" id, " Envelope level visibility" label, " Show Env " alias, 1 .0f ), \
208
+ SWITCH (" grv" id, " Gain reduction visibility" label, " Show Gain " alias, 1 .0f ), \
209
+ SWITCH (" ilv" id, " Input level visibility" label, " Show In " alias, 1 .0f ), \
210
+ SWITCH (" olv" id, " Output level visibility" label, " Show Out " alias, 1 .0f ), \
211
211
MESH (" scg" id, " Sidechain graph" label, 2 , dyna_processor_metadata::TIME_MESH_SIZE), \
212
212
MESH (" evg" id, " Envelope graph" label, 2 , dyna_processor_metadata::TIME_MESH_SIZE), \
213
213
MESH (" grg" id, " Gain reduciton" label, 2 , dyna_processor_metadata::TIME_MESH_SIZE + 4 ), \
0 commit comments