summaryrefslogtreecommitdiffstats
path: root/audio/calf-ladspa/minmax.diff
blob: dc86546e64a2d5264f0a796a6e7c9cf961808ac9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
diff -Naur calf-0.0.19kx/src/audio_fx.cpp calf-0.0.19kx.patched/src/audio_fx.cpp
--- calf-0.0.19kx/src/audio_fx.cpp	2014-03-08 16:26:41.000000000 -0500
+++ calf-0.0.19kx.patched/src/audio_fx.cpp	2017-07-05 18:09:21.728705740 -0400
@@ -24,6 +24,7 @@
 #include <stdlib.h>
 #include <time.h>
 #include <math.h>
+#include "minmax.h"
 
 using namespace calf_plugins;
 using namespace dsp;
@@ -643,7 +644,7 @@
     if(_asc and auto_release and asc_c > 0 and _a_att > _att) {
         // check if releasing to average level of peaks is steeper than
         // releasing to 1.f
-        float _delta = std::max((_a_att - _att) / (srate * release), _rdelta / 10);
+        float _delta = MAX((_a_att - _att) / (srate * release), _rdelta / 10);
         if(_delta < _rdelta) {
             asc_active = true;
             _asc_used = true;
@@ -689,7 +690,7 @@
         float _peak;
         
         // calc the attenuation needed to reduce incoming peak
-        float _att = std::min(_limit / peak, 1.f);
+        float _att = MIN(_limit / peak, 1.f);
         // calc release without any asc to keep all relevant peaks
         float _rdelta = get_rdelta(peak, _limit, _att, false);
 
diff -Naur calf-0.0.19kx/src/calf/buffer.h calf-0.0.19kx.patched/src/calf/buffer.h
--- calf-0.0.19kx/src/calf/buffer.h	2014-03-08 16:26:41.000000000 -0500
+++ calf-0.0.19kx.patched/src/calf/buffer.h	2017-07-05 18:07:38.696711220 -0400
@@ -21,6 +21,7 @@
 #ifndef __BUFFER_H
 #define __BUFFER_H
 
+#include "minmax.h"
 namespace dsp {
 
 /// decrease by N if >= N (useful for circular buffers)
@@ -131,7 +132,7 @@
     inline int size() { return buf_size; }
     void resize(int new_size, bool fill_with_zeros = false) {
         T *new_buf = new T[new_size];
-        memcpy(new_buf, buf, std::min(buf_size, new_size));
+        memcpy(new_buf, buf, MIN(buf_size, new_size));
         if (fill_with_zeros && buf_size < new_size)
             dsp::zero(new_buf + buf_size, new_size - buf_size);
         if (owns)
diff -Naur calf-0.0.19kx/src/calf/envelope.h calf-0.0.19kx.patched/src/calf/envelope.h
--- calf-0.0.19kx/src/calf/envelope.h	2014-03-08 16:26:41.000000000 -0500
+++ calf-0.0.19kx.patched/src/calf/envelope.h	2017-07-05 18:08:09.287709593 -0400
@@ -22,6 +22,7 @@
 #define __CALF_ENVELOPE_H
 
 #include "primitives.h"
+#include "minmax.h"
 
 namespace dsp {
 
@@ -119,7 +120,7 @@
             return;
         // XXXKF what if envelope is already released? (doesn't happen in any current synth, but who knows?)
         // Raise sustain value if it has been changed... I'm not sure if it's needed
-        thiss = std::max(sustain, value);
+        thiss = MAX(sustain, value);
         // Calculate release rate from sustain level
         thisrelease = thiss / release_time;
         // we're in attack or decay, and if decay is faster than release
diff -Naur calf-0.0.19kx/src/calf/fixed_point.h calf-0.0.19kx.patched/src/calf/fixed_point.h
--- calf-0.0.19kx/src/calf/fixed_point.h	2014-03-08 16:26:41.000000000 -0500
+++ calf-0.0.19kx.patched/src/calf/fixed_point.h	2017-07-05 18:08:01.555710004 -0400
@@ -20,6 +20,7 @@
  */
 #ifndef __CALF_FIXED_POINT_H
 #define __CALF_FIXED_POINT_H
+#include "minmax.h"
 
 namespace dsp {
 
diff -Naur calf-0.0.19kx/src/calf/giface.h calf-0.0.19kx.patched/src/calf/giface.h
--- calf-0.0.19kx/src/calf/giface.h	2014-03-08 16:26:41.000000000 -0500
+++ calf-0.0.19kx.patched/src/calf/giface.h	2017-07-05 18:07:51.071710561 -0400
@@ -27,6 +27,7 @@
 #include <exception>
 #include <string>
 #include <vector>
+#include "minmax.h"
 
 namespace osctl {
     struct osc_client;
@@ -542,7 +543,7 @@
         uint32_t total_out_mask = 0;
         while(offset < end)
         {
-            uint32_t newend = std::min(offset + MAX_SAMPLE_RUN, end);
+            uint32_t newend = MIN(offset + MAX_SAMPLE_RUN, end);
             uint32_t out_mask = process(offset, newend - offset, -1, -1);
             total_out_mask |= out_mask;
             zero_by_mask(out_mask, offset, newend - offset);
diff -Naur calf-0.0.19kx/src/calf/minmax.h calf-0.0.19kx.patched/src/calf/minmax.h
--- calf-0.0.19kx/src/calf/minmax.h	1969-12-31 19:00:00.000000000 -0500
+++ calf-0.0.19kx.patched/src/calf/minmax.h	2017-07-05 18:15:43.487685437 -0400
@@ -0,0 +1,8 @@
+/* this stuff was copy/pasted from /usr/include/sys/param.h on Slack 14.2 */
+#ifndef MIN
+#define MIN(a,b) (((a)<(b))?(a):(b))
+#endif
+
+#ifndef MAX
+#define MAX(a,b) (((a)>(b))?(a):(b))
+#endif
diff -Naur calf-0.0.19kx/src/calf/osc.h calf-0.0.19kx.patched/src/calf/osc.h
--- calf-0.0.19kx/src/calf/osc.h	2014-03-08 16:26:41.000000000 -0500
+++ calf-0.0.19kx.patched/src/calf/osc.h	2017-07-05 18:07:29.783711694 -0400
@@ -24,6 +24,7 @@
 
 #include "fft.h"
 #include <map>
+#include "minmax.h"
 
 namespace dsp
 {
@@ -181,7 +182,7 @@
         uint32_t cutoff = SIZE / 2, top = SIZE / 2;
         float vmax = 0;
         for (unsigned int i = 0; i < cutoff; i++)
-            vmax = std::max(vmax, abs(bl.spectrum[i]));
+            vmax = MAX(vmax, abs(bl.spectrum[i]));
         float vthres = vmax / 1024.0;  // -60dB
         float cumul = 0.f;
         while(cutoff > (SIZE / limit)) {
@@ -321,7 +322,7 @@
         table[i] -= dc;
     float thismax = 0;
     for (unsigned int i = 0; i < size; i++)
-        thismax = std::max(thismax, fabsf(table[i]));
+        thismax = MAX(thismax, fabsf(table[i]));
     if (thismax < 0.000001f)
         return;
     double divv = 1.0 / thismax;
diff -Naur calf-0.0.19kx/src/calf/osctl.h calf-0.0.19kx.patched/src/calf/osctl.h
--- calf-0.0.19kx/src/calf/osctl.h	2014-03-08 16:26:41.000000000 -0500
+++ calf-0.0.19kx.patched/src/calf/osctl.h	2017-07-05 18:08:30.753708451 -0400
@@ -29,6 +29,7 @@
 #include <netinet/in.h>
 #include <netdb.h>
 #include <iostream>
+#include "minmax.h"
 
 namespace osctl
 {
@@ -378,7 +379,7 @@
     for (uint32_t i = 0; i < len; i += 1024)
     {
         uint8_t tmp[1024];
-        uint32_t part = std::min((uint32_t)1024, len - i);
+        uint32_t part = MIN((uint32_t)1024, len - i);
         s.read(tmp, part);
         buf.write(tmp, part);
     }
@@ -398,7 +399,7 @@
     for (uint32_t i = 0; i < len; i += 1024)
     {
         uint8_t tmp[1024];
-        uint32_t part = std::min((uint32_t)1024, len - i);
+        uint32_t part = MIN((uint32_t)1024, len - i);
         buf.read(tmp, part);
         s.write(tmp, part);
     }
diff -Naur calf-0.0.19kx/src/calf/vumeter.h calf-0.0.19kx.patched/src/calf/vumeter.h
--- calf-0.0.19kx/src/calf/vumeter.h	2014-03-08 16:26:41.000000000 -0500
+++ calf-0.0.19kx.patched/src/calf/vumeter.h	2017-07-05 18:08:17.582709151 -0400
@@ -22,6 +22,7 @@
 #define __CALF_VUMETER_H
 
 #include <math.h>
+#include "minmax.h"
 
 namespace dsp {
 
@@ -94,7 +95,7 @@
         float tmp = level;
         for (unsigned int i = 0; i < len; i++) {
             float sig = fabs(src[i]);
-            tmp = std::max(tmp, sig);
+            tmp = MAX(tmp, sig);
             if (sig >= 1.f)
                 clip = 1.f;
         }
diff -Naur calf-0.0.19kx/src/ctl_curve.cpp calf-0.0.19kx.patched/src/ctl_curve.cpp
--- calf-0.0.19kx/src/ctl_curve.cpp	2014-03-08 16:26:41.000000000 -0500
+++ calf-0.0.19kx.patched/src/ctl_curve.cpp	2017-07-05 18:06:57.561713407 -0400
@@ -23,6 +23,7 @@
 #include <stdint.h>
 #include <stdlib.h>
 #include <math.h>
+#include "minmax.h"
 
 static gpointer parent_class = NULL;
 
@@ -135,7 +136,7 @@
     {
         float x = (*self->points)[i].first, y = (*self->points)[i].second;
         self->log2phys(x, y);
-        float thisdist = std::max(fabs(ex - x), fabs(ey - y));
+        float thisdist = MAX(fabs(ex - x), fabs(ey - y));
         if (thisdist < dist)
         {
             dist = thisdist;
@@ -300,7 +301,7 @@
     hide = false;
     sink->clip(this, pt, x, y, hide);
     
-    float ymin = std::min(y0, y1), ymax = std::max(y0, y1);
+    float ymin = MIN(y0, y1), ymax = MAX(y0, y1);
     float yamp = ymax - ymin;
     if (pt != 0 && pt != (int)(points->size() - 1))
     {
diff -Naur calf-0.0.19kx/src/ctl_vumeter.cpp calf-0.0.19kx.patched/src/ctl_vumeter.cpp
--- calf-0.0.19kx/src/ctl_vumeter.cpp	2014-03-08 16:26:41.000000000 -0500
+++ calf-0.0.19kx.patched/src/ctl_vumeter.cpp	2017-07-05 18:01:33.751730628 -0400
@@ -28,6 +28,7 @@
 #include <gdk/gdk.h>
 #include <sys/time.h>
 #include <string>
+#include "minmax.h"
 
 
 ///////////////////////////////////////// vu meter ///////////////////////////////////////////////
@@ -226,7 +227,7 @@
     long time = tv.tv_sec * 1000 * 1000 + tv.tv_usec;
     
     // limit to 1.f
-    float value_orig = std::max(std::min(vu->value, 1.f), 0.f);
+    float value_orig = MAX(MIN(vu->value, 1.f), 0.f);
     float value = 0.f;
     
     // falloff?
@@ -269,14 +270,14 @@
             // blinder left -> hold LED
             int hold_x = round((vu->last_value) * (led_w + led_m)); // add last led_m removed earlier
             hold_x -= hold_x % led_s + led_m;
-            hold_x = std::max(0, hold_x);
+            hold_x = MAX(0, hold_x);
             cairo_rectangle( c, led_x, led_y, hold_x, led_h);
             
             // blinder hold LED -> value
             int val_x = round((1 - value) * (led_w + led_m)); // add last led_m removed earlier
             val_x -= val_x % led_s;
-            int blind_x = std::min(hold_x + led_s, led_w);
-            int blind_w = std::min(std::max(led_w - val_x - hold_x - led_s, 0), led_w);
+            int blind_x = MIN(hold_x + led_s, led_w);
+            int blind_w = MIN(MAX(led_w - val_x - hold_x - led_s, 0), led_w);
             cairo_rectangle(c, led_x + blind_x, led_y, blind_w, led_h);
         } else  if( vu->mode == VU_STANDARD_CENTER ) {
             if(value > vu->last_value) {
@@ -302,7 +303,7 @@
             int val_x = round(value * (led_w + led_m)); // add last led_m removed earlier
             val_x -= val_x % led_s;
             int blind_w = led_w - hold_x - led_s - val_x;
-            blind_w = std::min(std::max(blind_w, 0), led_w);
+            blind_w = MIN(MAX(blind_w, 0), led_w);
             cairo_rectangle(c, led_x + val_x, led_y, blind_w, led_h);
             cairo_rectangle( c, led_x + led_w - hold_x, led_y, hold_x, led_h);
         }
diff -Naur calf-0.0.19kx/src/giface.cpp calf-0.0.19kx.patched/src/giface.cpp
--- calf-0.0.19kx/src/giface.cpp	2014-03-08 16:26:41.000000000 -0500
+++ calf-0.0.19kx.patched/src/giface.cpp	2017-07-05 18:02:41.488727026 -0400
@@ -23,6 +23,7 @@
 #include <calf/giface.h>
 #include <calf/osctlnet.h>
 #include <calf/utils.h>
+#include "minmax.h"
 
 using namespace std;
 using namespace calf_utils;
@@ -49,7 +50,7 @@
         if (value01 < 0.00001)
             value = min;
         else {
-            float rmin = std::max(1.0f / 1024.0f, min);
+            float rmin = MAX(1.0f / 1024.0f, min);
             value = rmin * pow(double(max / rmin), value01);
         }
         break;
@@ -99,7 +100,7 @@
     case PF_SCALE_GAIN:
         if (value < 1.0 / 1024.0) // new bottom limit - 60 dB
             return 0;
-        double rmin = std::max(1.0f / 1024.0f, min);
+        double rmin = MAX(1.0f / 1024.0f, min);
         value /= rmin;
         return log((double)value) / log(max / rmin);
     }
@@ -129,10 +130,10 @@
         sprintf(buf, "%0.0f dB", 6.0 * log(min) / log(2));
         len = strlen(buf);
         sprintf(buf, "%0.0f dB", 6.0 * log(max) / log(2));
-        len = std::max(len, strlen(buf)) + 2;
+        len = MAX(len, strlen(buf)) + 2;
         return (int)len;
     }
-    return std::max(to_string(min).length(), std::max(to_string(max).length(), to_string(min + (max-min) * 0.987654).length()));
+    return MAX(to_string(min).length(), MAX(to_string(max).length(), to_string(min + (max-min) * 0.987654).length()));
 }
 
 std::string parameter_properties::to_string(float value) const
diff -Naur calf-0.0.19kx/src/makerdf.cpp calf-0.0.19kx.patched/src/makerdf.cpp
--- calf-0.0.19kx/src/makerdf.cpp	2014-03-08 16:26:41.000000000 -0500
+++ calf-0.0.19kx.patched/src/makerdf.cpp	2017-07-05 18:11:24.534699209 -0400
@@ -21,6 +21,7 @@
 #include <calf/giface.h>
 #include <calf/preset.h>
 #include <calf/utils.h>
+#include "minmax.h"
 #if USE_LV2
 #include <calf/lv2.h>
 #include <calf/lv2_event.h>
@@ -538,7 +539,7 @@
             "    lv2:port \n"
         ;
         
-        unsigned int count = min(pr.param_names.size(), pr.values.size());
+        unsigned int count = MIN(pr.param_names.size(), pr.values.size());
         for (unsigned int j = 0; j < count; j++)
         {
             presets_ttl += "        [ lv2:symbol \"" + pr.param_names[j] + "\" ; lv2p:value " + ff2s(pr.values[j]) + " ] ";
diff -Naur calf-0.0.19kx/src/minmax.h calf-0.0.19kx.patched/src/minmax.h
--- calf-0.0.19kx/src/minmax.h	1969-12-31 19:00:00.000000000 -0500
+++ calf-0.0.19kx.patched/src/minmax.h	2017-07-05 18:17:34.976679508 -0400
@@ -0,0 +1,8 @@
+/* this stuff was copy/pasted from /usr/include/sys/param.h on Slack 14.2 */
+#ifndef MIN
+#define MIN(a,b) (((a)<(b))?(a):(b))
+#endif
+
+#ifndef MAX
+#define MAX(a,b) (((a)>(b))?(a):(b))
+#endif
diff -Naur calf-0.0.19kx/src/modules.cpp calf-0.0.19kx.patched/src/modules.cpp
--- calf-0.0.19kx/src/modules.cpp	2014-03-08 16:26:41.000000000 -0500
+++ calf-0.0.19kx.patched/src/modules.cpp	2017-07-05 18:06:28.366714960 -0400
@@ -26,6 +26,7 @@
 #include <calf/modules.h>
 #include <calf/modules_dev.h>
 #include <sys/time.h>
+#include "minmax.h"
 
 using namespace dsp;
 using namespace calf_plugins;
@@ -68,7 +69,7 @@
 uint32_t reverb_audio_module::process(uint32_t offset, uint32_t numsamples, uint32_t inputs_mask, uint32_t outputs_mask)
 {
     numsamples += offset;
-    clip   -= std::min(clip, numsamples);
+    clip   -= MIN(clip, numsamples);
     for (uint32_t i = offset; i < numsamples; i++) {
         float dry = dryamount.get();
         float wet = amount.get();
@@ -81,8 +82,8 @@
         reverb.process(rl, rr);
         outs[0][i] = dry*s.left + wet*rl;
         outs[1][i] = dry*s.right + wet*rr;
-        meter_wet = std::max(fabs(wet*rl), fabs(wet*rr));
-        meter_out = std::max(fabs(outs[0][i]), fabs(outs[1][i]));
+        meter_wet = MAX(fabs(wet*rl), fabs(wet*rr));
+        meter_out = MAX(fabs(outs[0][i]), fabs(outs[1][i]));
         if(outs[0][i] > 1.f or outs[1][i] > 1.f) {
             clip = srate >> 3;
         }
@@ -573,10 +574,10 @@
             meter_outR = 0.f;
         } else {
             // let meters fall a bit
-            clip_inL    -= std::min(clip_inL,  numsamples);
-            clip_inR    -= std::min(clip_inR,  numsamples);
-            clip_outL   -= std::min(clip_outL, numsamples);
-            clip_outR   -= std::min(clip_outR, numsamples);
+            clip_inL    -= MIN(clip_inL,  numsamples);
+            clip_inR    -= MIN(clip_inR,  numsamples);
+            clip_outL   -= MIN(clip_outL, numsamples);
+            clip_outR   -= MIN(clip_outR, numsamples);
             meter_inL = 0.f;
             meter_inR = 0.f;
             meter_outL = 0.f;
@@ -590,8 +591,8 @@
             R *= *params[param_level_in];
             
             // balance in
-            L *= (1.f - std::max(0.f, *params[param_balance_in]));
-            R *= (1.f + std::min(0.f, *params[param_balance_in]));
+            L *= (1.f - MAX(0.f, *params[param_balance_in]));
+            R *= (1.f + MIN(0.f, *params[param_balance_in]));
             
             // copy / flip / mono ...
             switch((int)*params[param_mode])
@@ -688,8 +689,8 @@
             pos = (pos + 2) % buffer_size;
             
             // balance out
-            L *= (1.f - std::max(0.f, *params[param_balance_out]));
-            R *= (1.f + std::min(0.f, *params[param_balance_out]));
+            L *= (1.f - MAX(0.f, *params[param_balance_out]));
+            R *= (1.f + MIN(0.f, *params[param_balance_out]));
             
             // level 
             L *= *params[param_level_out];
@@ -782,9 +783,9 @@
             meter_outR  = 0.f;
         } else {
             // let meters fall a bit
-            clip_in     -= std::min(clip_in,  numsamples);
-            clip_outL   -= std::min(clip_outL, numsamples);
-            clip_outR   -= std::min(clip_outR, numsamples);
+            clip_in     -= MIN(clip_in,  numsamples);
+            clip_outL   -= MIN(clip_outL, numsamples);
+            clip_outR   -= MIN(clip_outR, numsamples);
             meter_in     = 0.f;
             meter_outL   = 0.f;
             meter_outR   = 0.f;
@@ -847,8 +848,8 @@
             pos = (pos + 2) % buffer_size;
             
             // balance out
-            L *= (1.f - std::max(0.f, *params[param_balance_out]));
-            R *= (1.f + std::min(0.f, *params[param_balance_out]));
+            L *= (1.f - MAX(0.f, *params[param_balance_out]));
+            R *= (1.f + MIN(0.f, *params[param_balance_out]));
             
             // level 
             L *= *params[param_level_out];
@@ -1027,8 +1028,8 @@
 uint32_t analyzer_audio_module::process(uint32_t offset, uint32_t numsamples, uint32_t inputs_mask, uint32_t outputs_mask) {
     for(uint32_t i = offset; i < offset + numsamples; i++) {
         // let meters fall a bit
-        clip_L   -= std::min(clip_L, numsamples);
-        clip_R   -= std::min(clip_R, numsamples);
+        clip_L   -= MIN(clip_L, numsamples);
+        clip_R   -= MIN(clip_R, numsamples);
         meter_L   = 0.f;
         meter_R   = 0.f;
         
@@ -1043,7 +1044,7 @@
         phase_buffer[ppos] = L * *params[param_gonio_level];
         phase_buffer[ppos + 1] = R * *params[param_gonio_level];
         
-        plength = std::min(phase_buffer_size, plength + 2);
+        plength = MIN(phase_buffer_size, plength + 2);
         ppos += 2;
         ppos %= (phase_buffer_size - 2);
         
@@ -1075,7 +1076,7 @@
     srate = sr;
     phase_buffer_size = srate / 30 * 2;
     phase_buffer_size -= phase_buffer_size % 2;
-    phase_buffer_size = std::min(phase_buffer_size, (int)max_phase_buffer_size);
+    phase_buffer_size = MIN(phase_buffer_size, (int)max_phase_buffer_size);
 }
 
 bool analyzer_audio_module::get_phase_graph(float ** _buffer, int *_length, int * _mode, bool * _use_fade, float * _fade, int * _accuracy, bool * _display) const {
@@ -1348,12 +1349,12 @@
         if(*params[param_analyzer_scale] or *params[param_analyzer_view] == 2) {
             // we have linear view enabled or we want to see tit... erm curves
             if((i % lintrans == 0 and points - i > lintrans) or i == points - 1) {
-                _iter = std::max(1, (int)floor(freq * \
+                _iter = MAX(1, (int)floor(freq * \
                     (float)_accuracy / (float)srate));
             }    
         } else {
             // we have logarithmic view enabled
-            _iter = std::max(1, (int)floor(freq * (float)_accuracy / (float)srate));
+            _iter = MAX(1, (int)floor(freq * (float)_accuracy / (float)srate));
         }
         if(_iter > iter) {
             // we are flipping one step further in drawing
@@ -1399,7 +1400,7 @@
                                 break;
                             case 3:
                                 // Analyzer Denoised Peaks - filter out unwanted noise
-                                for(int k = 0; k < std::max(10 , std::min(400 ,\
+                                for(int k = 0; k < MAX(10 , MIN(400 ,\
                                     (int)(2.f*(float)((_iter - iter))))); k++) {
                                     //collect amplitudes in the environment of _iter to
                                     //be able to erase them from signal and leave just
@@ -1426,12 +1427,12 @@
                                 lastoutL = fft_outL[_iter];
                                 //pumping up actual signal an erase surrounding
                                 // sounds
-                                fft_outL[_iter] = 0.25f * std::max(n * 0.6f * \
+                                fft_outL[_iter] = 0.25f * MAX(n * 0.6f * \
                                     fabs(fft_outL[_iter]) - var1L , 1e-20);
                                 if(_param_mode == 3 or _param_mode == 4) {
                                     // do the same with R channel if needed
                                     lastoutR = fft_outR[_iter];
-                                    fft_outR[_iter] = 0.25f * std::max(n * \
+                                    fft_outR[_iter] = 0.25f * MAX(n * \
                                         0.6f * fabs(fft_outR[_iter]) - var1R , 1e-20);
                                 }
                                 break;
diff -Naur calf-0.0.19kx/src/modules_comp.cpp calf-0.0.19kx.patched/src/modules_comp.cpp
--- calf-0.0.19kx/src/modules_comp.cpp	2014-03-08 16:26:41.000000000 -0500
+++ calf-0.0.19kx.patched/src/modules_comp.cpp	2017-07-05 18:11:10.031699980 -0400
@@ -22,6 +22,7 @@
 #include <memory.h>
 #include <calf/giface.h>
 #include <calf/modules_comp.h>
+#include "minmax.h"
 
 using namespace dsp;
 using namespace calf_plugins;
@@ -201,10 +202,10 @@
         // process all strips
 
         // let meters fall a bit
-        clip_inL    -= std::min(clip_inL,  numsamples);
-        clip_inR    -= std::min(clip_inR,  numsamples);
-        clip_outL   -= std::min(clip_outL, numsamples);
-        clip_outR   -= std::min(clip_outR, numsamples);
+        clip_inL    -= MIN(clip_inL,  numsamples);
+        clip_inR    -= MIN(clip_inR,  numsamples);
+        clip_outL   -= MIN(clip_outL, numsamples);
+        clip_outR   -= MIN(clip_outR, numsamples);
         meter_inL = 0.f;
         meter_inR = 0.f;
         meter_outL = 0.f;
@@ -1025,8 +1026,8 @@
     } else {
         // process
 
-        detected_led -= std::min(detected_led,  numsamples);
-        clip_led   -= std::min(clip_led,  numsamples);
+        detected_led -= MIN(detected_led,  numsamples);
+        clip_led   -= MIN(clip_led,  numsamples);
         compressor.update_curve();
 
         while(offset < numsamples) {
@@ -1081,18 +1082,18 @@
             outs[0][offset] = outL;
             outs[1][offset] = outR;
 
-            if(std::max(fabs(leftSC), fabs(rightSC)) > *params[param_threshold]) {
+            if(MAX(fabs(leftSC), fabs(rightSC)) > *params[param_threshold]) {
                 detected_led   = srate >> 3;
             }
-            if(std::max(fabs(leftAC), fabs(rightAC)) > 1.f) {
+            if(MAX(fabs(leftAC), fabs(rightAC)) > 1.f) {
                 clip_led   = srate >> 3;
             }
             if(clip_led > 0) {
                 clip_out = 1.f;
             } else {
-                clip_out = std::max(fabs(outL), fabs(outR));
+                clip_out = MAX(fabs(outL), fabs(outR));
             }
-            detected = std::max(fabs(leftMC), fabs(rightMC));
+            detected = MAX(fabs(leftMC), fabs(rightMC));
 
             // next sample
             ++offset;
@@ -1896,10 +1897,10 @@
         // process all strips
 
         // let meters fall a bit
-        clip_inL    -= std::min(clip_inL,  numsamples);
-        clip_inR    -= std::min(clip_inR,  numsamples);
-        clip_outL   -= std::min(clip_outL, numsamples);
-        clip_outR   -= std::min(clip_outR, numsamples);
+        clip_inL    -= MIN(clip_inL,  numsamples);
+        clip_inR    -= MIN(clip_inR,  numsamples);
+        clip_outL   -= MIN(clip_outL, numsamples);
+        clip_outR   -= MIN(clip_outR, numsamples);
         meter_inL = 0.f;
         meter_inR = 0.f;
         meter_outL = 0.f;
@@ -2161,10 +2162,10 @@
         // greatest sounding compressor I've heard!
         bool rms = (detection == 0);
         bool average = (stereo_link == 0);
-        float attack_coeff = std::min(1.f, 1.f / (attack * srate / 4000.f));
-        float release_coeff = std::min(1.f, 1.f / (release * srate / 4000.f));
+        float attack_coeff = MIN(1.f, 1.f / (attack * srate / 4000.f));
+        float release_coeff = MIN(1.f, 1.f / (release * srate / 4000.f));
 
-        float absample = average ? (fabs(*det_left) + fabs(*det_right)) * 0.5f : std::max(fabs(*det_left), fabs(*det_right));
+        float absample = average ? (fabs(*det_left) + fabs(*det_right)) * 0.5f : MAX(fabs(*det_left), fabs(*det_right));
         if(rms) absample *= absample;
 
         dsp::sanitize(linSlope);
@@ -2177,7 +2178,7 @@
 
         left *= gain * makeup;
         right *= gain * makeup;
-        meter_out = std::max(fabs(left), fabs(right));;
+        meter_out = MAX(fabs(left), fabs(right));;
         meter_comp = gain;
         detected = rms ? sqrt(linSlope) : linSlope;
     }
@@ -2390,8 +2391,8 @@
     float linThreshold = threshold;
     if (rms)
         linThreshold = linThreshold * linThreshold;
-    attack_coeff = std::min(1.f, 1.f / (attack * srate / 4000.f));
-    release_coeff = std::min(1.f, 1.f / (release * srate / 4000.f));
+    attack_coeff = MIN(1.f, 1.f / (attack * srate / 4000.f));
+    release_coeff = MIN(1.f, 1.f / (release * srate / 4000.f));
     float linKneeSqrt = sqrt(knee);
     linKneeStart = linThreshold / linKneeSqrt;
     adjKneeStart = linKneeStart*linKneeStart;
@@ -2414,7 +2415,7 @@
         // this routine is mainly copied from Damien's expander module based on Thor's compressor
         bool rms = (detection == 0);
         bool average = (stereo_link == 0);
-        float absample = average ? (fabs(*det_left) + fabs(*det_right)) * 0.5f : std::max(fabs(*det_left), fabs(*det_right));
+        float absample = average ? (fabs(*det_left) + fabs(*det_right)) * 0.5f : MAX(fabs(*det_left), fabs(*det_right));
         if(rms) absample *= absample;
 
         dsp::sanitize(linSlope);
@@ -2426,7 +2427,7 @@
         }
         left *= gain * makeup;
         right *= gain * makeup;
-        meter_out = std::max(fabs(left), fabs(right));
+        meter_out = MAX(fabs(left), fabs(right));
         meter_gate = gain;
         detected = linSlope;
     }
@@ -2453,7 +2454,7 @@
         if(knee > 1.f && slope > kneeStart ) {
             gain = dsp::hermite_interpolation(slope, kneeStart, kneeStop, ((kneeStart - thres) * tratio  + thres), kneeStop, delta,1.f);
         }
-        return std::max(range, expf(gain-slope));
+        return MAX(range, expf(gain-slope));
     }
     return 1.f;
 }
diff -Naur calf-0.0.19kx/src/modules_dist.cpp calf-0.0.19kx.patched/src/modules_dist.cpp
--- calf-0.0.19kx/src/modules_dist.cpp	2014-03-08 16:26:41.000000000 -0500
+++ calf-0.0.19kx.patched/src/modules_dist.cpp	2017-07-05 18:08:59.690706912 -0400
@@ -22,6 +22,7 @@
 #include <memory.h>
 #include <calf/giface.h>
 #include <calf/modules_dist.h>
+#include "minmax.h"
 
 using namespace dsp;
 using namespace calf_plugins;
@@ -223,7 +224,7 @@
         } // cycle trough samples
         meters.process(params, ins, outs, orig_offset, orig_numsamples);
         
-        tube_avg = (sqrt(std::max(out_avg[0], out_avg[1])) / numsamples) - (sqrt(std::max(in_avg[0], in_avg[1])) / numsamples);
+        tube_avg = (sqrt(MAX(out_avg[0], out_avg[1])) / numsamples) - (sqrt(MAX(in_avg[0], in_avg[1])) / numsamples);
         meter_drive = (5.0f * fabs(tube_avg) * (float(*params[param_blend]) + 30.0f));
         // printf("out:%.6f in: %.6f avg: %.6f drv: %.3f\n", sqrt(std::max(out_avg[0], out_avg[1])) / numsamples, sqrt(std::max(in_avg[0], in_avg[1])) / numsamples, tube_avg, meter_drive);
         // clean up
@@ -397,7 +398,7 @@
             maxDrive = dist[0].get_distortion_level() * *params[param_amount];
             
             if(in_count > 1 && out_count > 1) {
-                maxDrive = std::max(maxDrive, dist[1].get_distortion_level() * *params[param_amount]);
+                maxDrive = MAX(maxDrive, dist[1].get_distortion_level() * *params[param_amount]);
                 // full stereo
                 out[0] = (proc[0] * *params[param_amount] + in2out * in[0]) * *params[param_level_out];
                 out[1] = (proc[1] * *params[param_amount] + in2out * in[1]) * *params[param_level_out];
@@ -593,7 +594,7 @@
                 else
                     out[1] = (proc[1] * *params[param_amount] + in[1]) * *params[param_level_out];
                 outs[1][offset] = out[1];
-                maxDrive = std::max(dist[0].get_distortion_level() * *params[param_amount],
+                maxDrive = MAX(dist[0].get_distortion_level() * *params[param_amount],
                                             dist[1].get_distortion_level() * *params[param_amount]);
             } else if(out_count > 1) {
                 // mono -> pseudo stereo
diff -Naur calf-0.0.19kx/src/modules_limit.cpp calf-0.0.19kx.patched/src/modules_limit.cpp
--- calf-0.0.19kx/src/modules_limit.cpp	2014-03-08 16:26:41.000000000 -0500
+++ calf-0.0.19kx.patched/src/modules_limit.cpp	2017-07-05 18:12:57.826694247 -0400
@@ -22,6 +22,7 @@
 #include <memory.h>
 #include <calf/giface.h>
 #include <calf/modules_limit.h>
+#include "minmax.h"
 
 using namespace dsp;
 using namespace calf_plugins;
@@ -110,15 +111,15 @@
         asc_led    = 0.f;
     } else {
         // let meters fall a bit
-        clip_inL    -= std::min(clip_inL,  numsamples);
-        clip_inR    -= std::min(clip_inR,  numsamples);
-        clip_outL   -= std::min(clip_outL, numsamples);
-        clip_outR   -= std::min(clip_outR, numsamples);
+        clip_inL    -= MIN(clip_inL,  numsamples);
+        clip_inR    -= MIN(clip_inR,  numsamples);
+        clip_outL   -= MIN(clip_outL, numsamples);
+        clip_outR   -= MIN(clip_outR, numsamples);
         meter_inL = 0.f;
         meter_inR = 0.f;
         meter_outL = 0.f;
         meter_outR = 0.f;
-        asc_led   -= std::min(asc_led, numsamples);
+        asc_led   -= MIN(asc_led, numsamples);
 
         while(offset < numsamples) {
             // cycle through samples
@@ -139,10 +140,10 @@
 
             // should never be used. but hackers are paranoid by default.
             // so we make shure NOTHING is above limit
-            outL = std::max(outL, -*params[param_limit]);
-            outL = std::min(outL, *params[param_limit]);
-            outR = std::max(outR, -*params[param_limit]);
-            outR = std::min(outR, *params[param_limit]);
+            outL = MAX(outL, -*params[param_limit]);
+            outL = MIN(outL, *params[param_limit]);
+            outR = MAX(outR, -*params[param_limit]);
+            outR = MIN(outR, *params[param_limit]);
 
             // autolevel
             outL /= *params[param_limit];
@@ -363,22 +364,22 @@
     float rel;
 
     rel = *params[param_release] *  pow(0.25, *params[param_release0] * -1);
-    rel = (*params[param_minrel] > 0.5) ? std::max(2500 * (1.f / 30), rel) : rel;
+    rel = (*params[param_minrel] > 0.5) ? MAX(2500 * (1.f / 30), rel) : rel;
     weight[0] = pow(0.25, *params[param_weight0] * -1);
     strip[0].set_params(*params[param_limit], *params[param_attack], rel, weight[0], *params[param_asc], pow(0.5, (*params[param_asc_coeff] - 0.5) * 2 * -1));
     *params[param_effrelease0] = rel;
     rel = *params[param_release] *  pow(0.25, *params[param_release1] * -1);
-    rel = (*params[param_minrel] > 0.5) ? std::max(2500 * (1.f / *params[param_freq0]), rel) : rel;
+    rel = (*params[param_minrel] > 0.5) ? MAX(2500 * (1.f / *params[param_freq0]), rel) : rel;
     weight[1] = pow(0.25, *params[param_weight1] * -1);
     strip[1].set_params(*params[param_limit], *params[param_attack], rel, weight[1], *params[param_asc], pow(0.5, (*params[param_asc_coeff] - 0.5) * 2 * -1), true);
     *params[param_effrelease1] = rel;
     rel = *params[param_release] *  pow(0.25, *params[param_release2] * -1);
-    rel = (*params[param_minrel] > 0.5) ? std::max(2500 * (1.f / *params[param_freq1]), rel) : rel;
+    rel = (*params[param_minrel] > 0.5) ? MAX(2500 * (1.f / *params[param_freq1]), rel) : rel;
     weight[2] = pow(0.25, *params[param_weight2] * -1);
     strip[2].set_params(*params[param_limit], *params[param_attack], rel, weight[2], *params[param_asc], pow(0.5, (*params[param_asc_coeff] - 0.5) * 2 * -1));
     *params[param_effrelease2] = rel;
     rel = *params[param_release] *  pow(0.25, *params[param_release3] * -1);
-    rel = (*params[param_minrel] > 0.5) ? std::max(2500 * (1.f / *params[param_freq2]), rel) : rel;
+    rel = (*params[param_minrel] > 0.5) ? MAX(2500 * (1.f / *params[param_freq2]), rel) : rel;
     weight[3] = pow(0.25, *params[param_weight3] * -1);
     strip[3].set_params(*params[param_limit], *params[param_attack], rel, weight[3], *params[param_asc], pow(0.5, (*params[param_asc_coeff] - 0.5) * 2 * -1));
     *params[param_effrelease3] = rel;
@@ -459,11 +460,11 @@
         // process all strips
 
         // let meters fall a bit
-        clip_inL    -= std::min(clip_inL,  numsamples);
-        clip_inR    -= std::min(clip_inR,  numsamples);
-        clip_outL   -= std::min(clip_outL, numsamples);
-        clip_outR   -= std::min(clip_outR, numsamples);
-        asc_led     -= std::min(asc_led, numsamples);
+        clip_inL    -= MIN(clip_inL,  numsamples);
+        clip_inR    -= MIN(clip_inR,  numsamples);
+        clip_outL   -= MIN(clip_outL, numsamples);
+        clip_outR   -= MIN(clip_outR, numsamples);
+        asc_led     -= MIN(asc_led, numsamples);
         meter_inL = 0.f;
         meter_inR = 0.f;
         meter_outL = 0.f;
@@ -544,7 +545,7 @@
             } // process single strip with filter
 
             // write multiband coefficient to buffer
-            buffer[pos] = std::min(*params[param_limit] / std::max(fabs(sum_left), fabs(sum_right)), 1.0);
+            buffer[pos] = MIN(*params[param_limit] / MAX(fabs(sum_left), fabs(sum_right)), 1.0);
 
             for (int i = 0; i < strips; i++) {
                 // process gain reduction
@@ -562,10 +563,10 @@
 
             // should never be used. but hackers are paranoid by default.
             // so we make shure NOTHING is above limit
-            outL = std::max(outL, -*params[param_limit]);
-            outL = std::min(outL, *params[param_limit]);
-            outR = std::max(outR, -*params[param_limit]);
-            outR = std::min(outR, *params[param_limit]);
+            outL = MAX(outL, -*params[param_limit]);
+            outL = MIN(outL, *params[param_limit]);
+            outR = MAX(outR, -*params[param_limit]);
+            outR = MIN(outR, *params[param_limit]);
 
             batt = broadband.get_attenuation();
 
diff -Naur calf-0.0.19kx/src/modules_mod.cpp calf-0.0.19kx.patched/src/modules_mod.cpp
--- calf-0.0.19kx/src/modules_mod.cpp	2014-03-08 16:26:41.000000000 -0500
+++ calf-0.0.19kx.patched/src/modules_mod.cpp	2017-07-05 17:59:43.420736496 -0400
@@ -22,6 +22,7 @@
 #include <memory.h>
 #include <calf/giface.h>
 #include <calf/modules_mod.h>
+#include "minmax.h"
 
 using namespace dsp;
 using namespace calf_plugins;
@@ -308,12 +309,12 @@
 inline bool rotary_speaker_audio_module::incr_towards(float &aspeed, float raspeed, float delta_decc, float delta_acc)
 {
     if (aspeed < raspeed) {
-        aspeed = std::min(raspeed, aspeed + delta_acc);
+        aspeed = MIN(raspeed, aspeed + delta_acc);
         return true;
     }
     else if (aspeed > raspeed) 
     {
-        aspeed = std::max(raspeed, aspeed - delta_decc);
+        aspeed = MAX(raspeed, aspeed - delta_decc);
         return true;
     }        
     return false;
@@ -520,7 +521,7 @@
     left.lfo.set_voices(voices); right.lfo.set_voices(voices);
     left.lfo.set_overlap(overlap);right.lfo.set_overlap(overlap);
     float vphase = *params[par_vphase] * (1.f / 360.f);
-    left.lfo.vphase = right.lfo.vphase = vphase * (4096 / std::max(voices - 1, 1));
+    left.lfo.vphase = right.lfo.vphase = vphase * (4096 / MAX(voices - 1, 1));
     float r_phase = *params[par_stereo] * (1.f / 360.f);
     if (fabs(r_phase - last_r_phase) > 0.0001f) {
         right.lfo.phase = left.lfo.phase;
@@ -619,10 +620,10 @@
         
     } else {
         
-        clip_inL    -= std::min(clip_inL,  numsamples);
-        clip_inR    -= std::min(clip_inR,  numsamples);
-        clip_outL   -= std::min(clip_outL, numsamples);
-        clip_outR   -= std::min(clip_outR, numsamples);
+        clip_inL    -= MIN(clip_inL,  numsamples);
+        clip_inR    -= MIN(clip_inR,  numsamples);
+        clip_outL   -= MIN(clip_outL, numsamples);
+        clip_outR   -= MIN(clip_outR, numsamples);
         meter_inL = 0.f;
         meter_inR = 0.f;
         meter_outL = 0.f;
diff -Naur calf-0.0.19kx/src/monosynth.cpp calf-0.0.19kx.patched/src/monosynth.cpp
--- calf-0.0.19kx/src/monosynth.cpp	2014-03-08 16:26:41.000000000 -0500
+++ calf-0.0.19kx.patched/src/monosynth.cpp	2017-07-05 18:03:42.319723791 -0400
@@ -20,6 +20,7 @@
  */
 #include <calf/giface.h>
 #include <calf/modules_synths.h>
+#include "minmax.h"
 
 using namespace dsp;
 using namespace calf_plugins;
@@ -115,11 +116,11 @@
     waves[wave_varistep].make(bl, data);
 
     for (int i = 0; i < S; i++) {
-        data[i] = (min(1.f, (float)(i / 64.f))) * (1.0 - i * 1.0 / S) * (-1 + fmod (i * i * 8/ (S * S * 1.0), 2.0));
+        data[i] = (MIN(1.f, (float)(i / 64.f))) * (1.0 - i * 1.0 / S) * (-1 + fmod (i * i * 8/ (S * S * 1.0), 2.0));
     }
     waves[wave_skewsaw].make(bl, data);
     for (int i = 0; i < S; i++) {
-        data[i] = (min(1.f, (float)(i / 64.f))) * (1.0 - i * 1.0 / S) * (fmod (i * i * 8/ (S * S * 1.0), 2.0) < 1.0 ? -1.0 : +1.0);
+        data[i] = (MIN(1.f, (float)(i / 64.f))) * (1.0 - i * 1.0 / S) * (fmod (i * i * 8/ (S * S * 1.0), 2.0) < 1.0 ? -1.0 : +1.0);
     }
     waves[wave_skewsqr].make(bl, data);
 
@@ -441,7 +442,7 @@
     if (*params[param] <= 0)
         return lfo.get();
     float pt = lfo_clock / *params[param];
-    return lfo.get() * std::min(1.0f, pt);
+    return lfo.get() * MIN(1.0f, pt);
 }
 
 void monosynth_audio_module::calculate_step()
@@ -518,32 +519,32 @@
     case flt_lp12:
         filter.set_lp_rbj(cutoff, resonance, srate);
         filter2.set_null();
-        newfgain = min(0.7f, 0.7f / resonance) * ampctl;
+        newfgain = MIN(0.7f, 0.7f / resonance) * ampctl;
         break;
     case flt_hp12:
         filter.set_hp_rbj(cutoff, resonance, srate);
         filter2.set_null();
-        newfgain = min(0.7f, 0.7f / resonance) * ampctl;
+        newfgain = MIN(0.7f, 0.7f / resonance) * ampctl;
         break;
     case flt_lp24:
         filter.set_lp_rbj(cutoff, resonance, srate);
         filter2.set_lp_rbj(cutoff2, resonance, srate);
-        newfgain = min(0.5f, 0.5f / resonance) * ampctl;
+        newfgain = MIN(0.5f, 0.5f / resonance) * ampctl;
         break;
     case flt_lpbr:
         filter.set_lp_rbj(cutoff, resonance, srate);
         filter2.set_br_rbj(cutoff2, 1.0 / resonance, srate);
-        newfgain = min(0.5f, 0.5f / resonance) * ampctl;        
+        newfgain = MIN(0.5f, 0.5f / resonance) * ampctl;        
         break;
     case flt_hpbr:
         filter.set_hp_rbj(cutoff, resonance, srate);
         filter2.set_br_rbj(cutoff2, 1.0 / resonance, srate);
-        newfgain = min(0.5f, 0.5f / resonance) * ampctl;        
+        newfgain = MIN(0.5f, 0.5f / resonance) * ampctl;        
         break;
     case flt_2lp12:
         filter.set_lp_rbj(cutoff, resonance, srate);
         filter2.set_lp_rbj(cutoff2, resonance, srate);
-        newfgain = min(0.7f, 0.7f / resonance) * ampctl;
+        newfgain = MIN(0.7f, 0.7f / resonance) * ampctl;
         break;
     case flt_bp6:
         filter.set_bp_rbj(cutoff, resonance, srate);
@@ -728,8 +729,8 @@
 void monosynth_audio_module::params_changed()
 {
     float sf = 0.001f;
-    envelope1.set(*params[par_env1attack] * sf, *params[par_env1decay] * sf, std::min(0.999f, *params[par_env1sustain]), *params[par_env1release] * sf, srate / step_size, *params[par_env1fade] * sf);
-    envelope2.set(*params[par_env2attack] * sf, *params[par_env2decay] * sf, std::min(0.999f, *params[par_env2sustain]), *params[par_env2release] * sf, srate / step_size, *params[par_env2fade] * sf);
+    envelope1.set(*params[par_env1attack] * sf, *params[par_env1decay] * sf, MIN(0.999f, *params[par_env1sustain]), *params[par_env1release] * sf, srate / step_size, *params[par_env1fade] * sf);
+    envelope2.set(*params[par_env2attack] * sf, *params[par_env2decay] * sf, MIN(0.999f, *params[par_env2sustain]), *params[par_env2release] * sf, srate / step_size, *params[par_env2fade] * sf);
     filter_type = dsp::fastf2i_drm(*params[par_filtertype]);
     separation = pow(2.0, *params[par_cutoffsep] / 1200.0);
     wave1 = dsp::clip(dsp::fastf2i_drm(*params[par_wave1]), 0, (int)wave_count - 1);
@@ -756,7 +757,7 @@
             calculate_step();
         if(op < op_end) {
             uint32_t ip = output_pos;
-            uint32_t len = std::min(step_size - output_pos, op_end - op);
+            uint32_t len = MIN(step_size - output_pos, op_end - op);
             if (running)
             {
                 had_data = 3;
diff -Naur calf-0.0.19kx/src/organ.cpp calf-0.0.19kx.patched/src/organ.cpp
--- calf-0.0.19kx/src/organ.cpp	2014-03-08 16:26:41.000000000 -0500
+++ calf-0.0.19kx.patched/src/organ.cpp	2017-07-05 18:07:06.994712906 -0400
@@ -23,6 +23,7 @@
 #include <calf/giface.h>
 #include <calf/organ.h>
 #include <iostream>
+#include "minmax.h"
 
 using namespace std;
 using namespace dsp;
@@ -1079,7 +1080,7 @@
     if (dsp::fastf2i_drm(parameters->lfo_mode) == organ_voice_base::lfomode_global)
     {
         for (int i = 0; i < nsamples; i += 64)
-            global_vibrato.process(parameters, buf + i, std::min(64, nsamples - i), sample_rate);
+            global_vibrato.process(parameters, buf + i, MIN(64, nsamples - i), sample_rate);
     }
     if (percussion.get_active())
         percussion.render_percussion_to(buf, nsamples);
diff -Naur calf-0.0.19kx/src/plugin_gui_window.cpp calf-0.0.19kx.patched/src/plugin_gui_window.cpp
--- calf-0.0.19kx/src/plugin_gui_window.cpp	2014-03-08 16:26:41.000000000 -0500
+++ calf-0.0.19kx.patched/src/plugin_gui_window.cpp	2017-07-05 18:03:59.454722879 -0400
@@ -25,6 +25,7 @@
 #include <gdk/gdk.h>
 
 #include <iostream>
+#include "minmax.h"
 
 using namespace calf_plugins;
 using namespace std;
@@ -367,7 +368,7 @@
     gui->show_rack_ears(environment->get_config()->rack_ears);
     
     gtk_widget_size_request(GTK_WIDGET(container), &req);
-    int wx = max(req.width + 10, req2.width);
+    int wx = MAX(req.width + 10, req2.width);
     int wy = req.height + req2.height + 10;
     // printf("size request %dx%d\n", req.width, req.height);
     // printf("resize to %dx%d\n", max(req.width + 10, req2.width), req.height + req2.height + 10);
diff -Naur calf-0.0.19kx/src/preset.cpp calf-0.0.19kx.patched/src/preset.cpp
--- calf-0.0.19kx/src/preset.cpp	2014-03-08 16:26:41.000000000 -0500
+++ calf-0.0.19kx.patched/src/preset.cpp	2017-07-05 18:09:33.377705120 -0400
@@ -26,6 +26,7 @@
 #include <errno.h>
 #include <unistd.h>
 #include <sys/stat.h>
+#include "minmax.h"
 
 using namespace std;
 using namespace calf_plugins;
@@ -86,7 +87,7 @@
     for (int i = 0; i < count; i++)
         names[metadata->get_param_props(i)->short_name] = i;
     // no support for unnamed parameters... tough luck :)
-    for (unsigned int i = 0; i < min(param_names.size(), values.size()); i++)
+    for (unsigned int i = 0; i < MIN(param_names.size(), values.size()); i++)
     {
         map<string, int>::iterator pos = names.find(param_names[i]);
         if (pos == names.end()) {