1 /* Calf DSP plugin pack
4 * Copyright (C) 2001-2010 Krzysztof Foltman, Markus Schmidt, Thor Harald Johansen
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General
17 * Public License along with this program; if not, write to the
18 * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
19 * Boston, MA 02110-1301 USA
25 #include <calf/giface.h>
26 #include <calf/modules_tools.h>
27 #include <calf/modules_dev.h>
29 #include <calf/utils.h>
33 using namespace calf_plugins
;
35 #define SET_IF_CONNECTED(name) if (params[AM::param_##name] != NULL) *params[AM::param_##name] = name;
36 #define sinc(x) (!x) ? 1 : sin(M_PI * x)/(M_PI * x);
38 /**********************************************************************
39 * STEREO TOOLS by Markus Schmidt
40 **********************************************************************/
42 stereo_audio_module::stereo_audio_module() {
46 stereo_audio_module::~stereo_audio_module() {
49 void stereo_audio_module::activate() {
53 void stereo_audio_module::deactivate() {
57 void stereo_audio_module::params_changed() {
58 float slev
= 2 * *params
[param_slev
]; // stereo level ( -2 -> 2 )
59 float sbal
= 1 + *params
[param_sbal
]; // stereo balance ( 0 -> 2 )
60 float mlev
= 2 * *params
[param_mlev
]; // mono level ( -2 -> 2 )
61 float mpan
= 1 + *params
[param_mpan
]; // mono pan ( 0 -> 2 )
63 switch((int)*params
[param_mode
])
68 LL
= (mlev
* (2.f
- mpan
) + slev
* (2.f
- sbal
));
69 LR
= (mlev
* mpan
- slev
* sbal
);
70 RL
= (mlev
* (2.f
- mpan
) - slev
* (2.f
- sbal
));
71 RR
= (mlev
* mpan
+ slev
* sbal
);
75 LL
= (2.f
- mpan
) * (2.f
- sbal
);
76 LR
= mpan
* (2.f
- sbal
) * -1;
77 RL
= (2.f
- mpan
) * sbal
;
82 LL
= mlev
* (2.f
- sbal
);
84 RL
= slev
* (2.f
- sbal
);
85 RR
= slev
* sbal
* -1;
98 if(*params
[param_stereo_phase
] != _phase
) {
99 _phase
= *params
[param_stereo_phase
];
100 _phase_cos_coef
= cos(_phase
/ 180 * M_PI
);
101 _phase_sin_coef
= sin(_phase
/ 180 * M_PI
);
103 if(*params
[param_sc_level
] != _sc_level
) {
104 _sc_level
= *params
[param_sc_level
];
105 _inv_atan_shape
= 1.0 / atan(_sc_level
);
109 uint32_t stereo_audio_module::process(uint32_t offset
, uint32_t numsamples
, uint32_t inputs_mask
, uint32_t outputs_mask
) {
110 for(uint32_t i
= offset
; i
< offset
+ numsamples
; i
++) {
111 if(*params
[param_bypass
] > 0.5) {
112 outs
[0][i
] = ins
[0][i
];
113 outs
[1][i
] = ins
[1][i
];
128 L
*= *params
[param_level_in
];
129 R
*= *params
[param_level_in
];
132 L
*= (1.f
- std::max(0.f
, *params
[param_balance_in
]));
133 R
*= (1.f
+ std::min(0.f
, *params
[param_balance_in
]));
135 // copy / flip / mono ...
136 switch((int)*params
[param_mode
])
170 if(*params
[param_softclip
]) {
173 // L = L > 0.63 ? ph * (0.63 + 0.36 * (1 - pow(MATH_E, (1.f / 3) * (0.63 + L * ph)))) : L;
175 // R = R > 0.63 ? ph * (0.63 + 0.36 * (1 - pow(MATH_E, (1.f / 3) * (0.63 + R * ph)))) : R;
176 R
= _inv_atan_shape
* atan(R
* _sc_level
);
177 L
= _inv_atan_shape
* atan(L
* _sc_level
);
185 L
*= (1 - floor(*params
[param_mute_l
] + 0.5));
186 R
*= (1 - floor(*params
[param_mute_r
] + 0.5));
189 L
*= (2 * (1 - floor(*params
[param_phase_l
] + 0.5))) - 1;
190 R
*= (2 * (1 - floor(*params
[param_phase_r
] + 0.5))) - 1;
200 int nbuf
= srate
* (fabs(*params
[param_delay
]) / 1000.f
);
202 if(*params
[param_delay
] > 0.f
) {
203 R
= buffer
[(pos
- (int)nbuf
+ 1 + buffer_size
) % buffer_size
];
204 } else if (*params
[param_delay
] < 0.f
) {
205 L
= buffer
[(pos
- (int)nbuf
+ buffer_size
) % buffer_size
];
209 float _sb
= *params
[param_stereo_base
];
210 if(_sb
< 0) _sb
*= 0.5;
212 float __l
= L
+_sb
* L
- _sb
* R
;
213 float __r
= R
+ _sb
* R
- _sb
* L
;
219 __l
= L
* _phase_cos_coef
- R
* _phase_sin_coef
;
220 __r
= L
* _phase_sin_coef
+ R
* _phase_cos_coef
;
225 pos
= (pos
+ 2) % buffer_size
;
228 L
*= (1.f
- std::max(0.f
, *params
[param_balance_out
]));
229 R
*= (1.f
+ std::min(0.f
, *params
[param_balance_out
]));
232 L
*= *params
[param_level_out
];
233 R
*= *params
[param_level_out
];
243 if(fabs(L
) > 0.001 and fabs(R
) > 0.001) {
244 meter_phase
= fabs(fabs(L
+R
) > 0.000000001 ? sin(fabs((L
-R
)/(L
+R
))) : 0.f
);
249 float values
[] = {meter_inL
, meter_inR
, meter_outL
, meter_outR
};
250 meters
.process(values
);
252 meters
.fall(numsamples
);
256 void stereo_audio_module::set_sample_rate(uint32_t sr
)
260 buffer_size
= (int)(srate
* 0.05 * 2.f
); // buffer size attack rate multiplied by 2 channels
261 buffer
= (float*) calloc(buffer_size
, sizeof(float));
263 int meter
[] = {param_meter_inL
, param_meter_inR
, param_meter_outL
, param_meter_outR
};
264 int clip
[] = {param_clip_inL
, param_clip_inR
, param_clip_outL
, param_clip_outR
};
265 meters
.init(params
, meter
, clip
, 4, sr
);
268 /**********************************************************************
269 * MONO INPUT by Markus Schmidt
270 **********************************************************************/
272 mono_audio_module::mono_audio_module() {
279 mono_audio_module::~mono_audio_module() {
282 void mono_audio_module::activate() {
286 void mono_audio_module::deactivate() {
290 void mono_audio_module::params_changed() {
291 if(*params
[param_sc_level
] != _sc_level
) {
292 _sc_level
= *params
[param_sc_level
];
293 _inv_atan_shape
= 1.0 / atan(_sc_level
);
295 if(*params
[param_stereo_phase
] != _phase
) {
296 _phase
= *params
[param_stereo_phase
];
297 _phase_cos_coef
= cos(_phase
/ 180 * M_PI
);
298 _phase_sin_coef
= sin(_phase
/ 180 * M_PI
);
302 uint32_t mono_audio_module::process(uint32_t offset
, uint32_t numsamples
, uint32_t inputs_mask
, uint32_t outputs_mask
) {
303 for(uint32_t i
= offset
; i
< offset
+ numsamples
; i
++) {
304 if(*params
[param_bypass
] > 0.5) {
305 outs
[0][i
] = ins
[0][i
];
306 outs
[1][i
] = ins
[0][i
];
318 L
*= *params
[param_level_in
];
321 if(*params
[param_softclip
]) {
322 //int ph = L / fabs(L);
323 //L = L > 0.63 ? ph * (0.63 + 0.36 * (1 - pow(MATH_E, (1.f / 3) * (0.63 + L * ph)))) : L;
324 L
= _inv_atan_shape
* atan(L
* _sc_level
);
333 L
*= (1 - floor(*params
[param_mute_l
] + 0.5));
334 R
*= (1 - floor(*params
[param_mute_r
] + 0.5));
337 L
*= (2 * (1 - floor(*params
[param_phase_l
] + 0.5))) - 1;
338 R
*= (2 * (1 - floor(*params
[param_phase_r
] + 0.5))) - 1;
344 int nbuf
= srate
* (fabs(*params
[param_delay
]) / 1000.f
);
346 if(*params
[param_delay
] > 0.f
) {
347 R
= buffer
[(pos
- (int)nbuf
+ 1 + buffer_size
) % buffer_size
];
348 } else if (*params
[param_delay
] < 0.f
) {
349 L
= buffer
[(pos
- (int)nbuf
+ buffer_size
) % buffer_size
];
353 float _sb
= *params
[param_stereo_base
];
354 if(_sb
< 0) _sb
*= 0.5;
356 float __l
= L
+_sb
* L
- _sb
* R
;
357 float __r
= R
+ _sb
* R
- _sb
* L
;
363 __l
= L
* _phase_cos_coef
- R
* _phase_sin_coef
;
364 __r
= L
* _phase_sin_coef
+ R
* _phase_cos_coef
;
369 pos
= (pos
+ 2) % buffer_size
;
372 L
*= (1.f
- std::max(0.f
, *params
[param_balance_out
]));
373 R
*= (1.f
+ std::min(0.f
, *params
[param_balance_out
]));
376 L
*= *params
[param_level_out
];
377 R
*= *params
[param_level_out
];
386 float values
[] = {meter_in
, meter_outL
, meter_outR
};
387 meters
.process(values
);
389 meters
.fall(numsamples
);
393 void mono_audio_module::set_sample_rate(uint32_t sr
)
397 buffer_size
= (int)srate
* 0.05 * 2; // delay buffer size multiplied by 2 channels
398 buffer
= (float*) calloc(buffer_size
, sizeof(float));
400 int meter
[] = {param_meter_in
, param_meter_outL
, param_meter_outR
};
401 int clip
[] = {param_clip_in
, param_clip_outL
, param_clip_outR
};
402 meters
.init(params
, meter
, clip
, 3, sr
);
405 /**********************************************************************
406 * ANALYZER by Markus Schmidt and Christian Holschuh
407 **********************************************************************/
409 analyzer_audio_module::analyzer_audio_module() {
419 phase_buffer
= (float*) calloc(max_phase_buffer_size
, sizeof(float));
421 analyzer_audio_module::~analyzer_audio_module() {
424 void analyzer_audio_module::activate() {
428 void analyzer_audio_module::deactivate() {
432 void analyzer_audio_module::params_changed() {
433 float resolution
, offset
;
434 switch((int)*params
[param_analyzer_mode
]) {
441 resolution
= pow(64, *params
[param_analyzer_level
]);
445 // we want to draw Stereo Image
446 resolution
= pow(64, *params
[param_analyzer_level
] * 1.75);
450 // We want to draw Stereo Difference
451 offset
= *params
[param_analyzer_level
] > 1
452 ? 1 + (*params
[param_analyzer_level
] - 1) / 4
453 : *params
[param_analyzer_level
];
454 resolution
= pow(64, 2 * offset
);
458 _analyzer
.set_params(
461 *params
[param_analyzer_accuracy
],
462 *params
[param_analyzer_hold
],
463 *params
[param_analyzer_smoothing
],
464 *params
[param_analyzer_mode
],
465 *params
[param_analyzer_scale
],
466 *params
[param_analyzer_post
],
467 *params
[param_analyzer_speed
],
468 *params
[param_analyzer_windowing
],
469 *params
[param_analyzer_view
],
470 *params
[param_analyzer_freeze
]
474 uint32_t analyzer_audio_module::process(uint32_t offset
, uint32_t numsamples
, uint32_t inputs_mask
, uint32_t outputs_mask
) {
475 for(uint32_t i
= offset
; i
< offset
+ numsamples
; i
++) {
476 // let meters fall a bit
477 clip_L
-= std::min(clip_L
, numsamples
);
478 clip_R
-= std::min(clip_R
, numsamples
);
486 if(L
> 1.f
) clip_L
= srate
>> 3;
487 if(R
> 1.f
) clip_R
= srate
>> 3;
490 //the goniometer tries to show the signal in maximum
491 //size. therefor an envelope with fast attack and slow
492 //release is calculated with the max value of left and right.
493 float lemax
= fabs(L
) > fabs(R
) ? fabs(L
) : fabs(R
);
494 attack_coef
= exp(log(0.01)/(0.01 * srate
* 0.001));
495 release_coef
= exp(log(0.01)/(2000 * srate
* 0.001));
496 if( lemax
> envelope
)
497 envelope
= lemax
; //attack_coef * (envelope - lemax) + lemax;
499 envelope
= release_coef
* (envelope
- lemax
) + lemax
;
501 //use the envelope to bring biggest signal to 1. the biggest
502 //enlargement of the signal is 4.
504 phase_buffer
[ppos
] = L
/ std::max(0.25f
, (envelope
));
505 phase_buffer
[ppos
+ 1] = R
/ std::max(0.25f
, (envelope
));
508 plength
= std::min(phase_buffer_size
, plength
+ 2);
510 ppos
%= (phase_buffer_size
- 2);
513 _analyzer
.process(L
, R
);
524 SET_IF_CONNECTED(clip_L
);
525 SET_IF_CONNECTED(clip_R
);
526 SET_IF_CONNECTED(meter_L
);
527 SET_IF_CONNECTED(meter_R
);
531 void analyzer_audio_module::set_sample_rate(uint32_t sr
)
534 phase_buffer_size
= srate
/ 30 * 2;
535 phase_buffer_size
-= phase_buffer_size
% 2;
536 phase_buffer_size
= std::min(phase_buffer_size
, (int)max_phase_buffer_size
);
537 _analyzer
.set_sample_rate(sr
);
540 bool analyzer_audio_module::get_phase_graph(float ** _buffer
, int *_length
, int * _mode
, bool * _use_fade
, float * _fade
, int * _accuracy
, bool * _display
) const {
541 *_buffer
= &phase_buffer
[0];
543 *_use_fade
= *params
[param_gonio_use_fade
];
545 *_mode
= *params
[param_gonio_mode
];
546 *_accuracy
= *params
[param_gonio_accuracy
];
547 *_display
= *params
[param_gonio_display
];
551 bool analyzer_audio_module::get_graph(int index
, int subindex
, int phase
, float *data
, int points
, cairo_iface
*context
, int *mode
) const
553 if (*params
[param_analyzer_display
])
554 return _analyzer
.get_graph(subindex
, phase
, data
, points
, context
, mode
);
557 bool analyzer_audio_module::get_moving(int index
, int subindex
, int &direction
, float *data
, int x
, int y
, int &offset
, uint32_t &color
) const
559 if (*params
[param_analyzer_display
])
560 return _analyzer
.get_moving(subindex
, direction
, data
, x
, y
, offset
, color
);
563 bool analyzer_audio_module::get_gridline(int index
, int subindex
, int phase
, float &pos
, bool &vertical
, std::string
&legend
, cairo_iface
*context
) const
565 return _analyzer
.get_gridline(subindex
, phase
, pos
, vertical
, legend
, context
);
567 bool analyzer_audio_module::get_layers(int index
, int generation
, unsigned int &layers
) const
569 return _analyzer
.get_layers(generation
, layers
);