Commit d489e481a5c73c35f675bc3f60d14b935c43e421

Thomas de Grivel 2022-11-03T11:41:52

licence

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
diff --git a/cli/cli.c b/cli/cli.c
index c49b87a..c6b457b 100644
--- a/cli/cli.c
+++ b/cli/cli.c
@@ -1,4 +1,4 @@
-/* c3
+/* rtbuf
  * Copyright 2018-2022 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software granted
diff --git a/cli/cli.h b/cli/cli.h
index d0444e7..076fc2b 100644
--- a/cli/cli.h
+++ b/cli/cli.h
@@ -1,4 +1,4 @@
-/* c3
+/* rtbuf
  * Copyright 2018-2022 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software granted
diff --git a/cli/rtbuf_cli.c b/cli/rtbuf_cli.c
index ca4998a..ed319c4 100644
--- a/cli/rtbuf_cli.c
+++ b/cli/rtbuf_cli.c
@@ -1,4 +1,4 @@
-/* c3
+/* rtbuf
  * Copyright 2018-2022 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software granted
diff --git a/cli/rtbuf_cli.h b/cli/rtbuf_cli.h
index 9d307d0..6fce09e 100644
--- a/cli/rtbuf_cli.h
+++ b/cli/rtbuf_cli.h
@@ -1,4 +1,4 @@
-/* c3
+/* rtbuf
  * Copyright 2018-2022 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software granted
diff --git a/cli/rtbuf_cli_main.c b/cli/rtbuf_cli_main.c
index 724e4a6..4470ed0 100644
--- a/cli/rtbuf_cli_main.c
+++ b/cli/rtbuf_cli_main.c
@@ -1,4 +1,4 @@
-/* c3
+/* rtbuf
  * Copyright 2018-2022 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software granted
diff --git a/gtk3/list.c b/gtk3/list.c
index 8ad9d57..eb62e81 100644
--- a/gtk3/list.c
+++ b/gtk3/list.c
@@ -1,4 +1,4 @@
-/* c3
+/* rtbuf
  * Copyright 2018-2022 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software granted
diff --git a/gtk3/list.h b/gtk3/list.h
index da8751a..5517e81 100644
--- a/gtk3/list.h
+++ b/gtk3/list.h
@@ -1,4 +1,4 @@
-/* c3
+/* rtbuf
  * Copyright 2018-2022 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software granted
diff --git a/gtk3/queue.c b/gtk3/queue.c
index 3fa8c84..6b3b9de 100644
--- a/gtk3/queue.c
+++ b/gtk3/queue.c
@@ -1,4 +1,4 @@
-/* c3
+/* rtbuf
  * Copyright 2018-2022 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software granted
diff --git a/gtk3/queue.h b/gtk3/queue.h
index be30700..5a7cc1e 100644
--- a/gtk3/queue.h
+++ b/gtk3/queue.h
@@ -1,4 +1,4 @@
-/* c3
+/* rtbuf
  * Copyright 2018-2022 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software granted
diff --git a/gtk3/rtbuf_gtk3.c b/gtk3/rtbuf_gtk3.c
index 6daadb4..53e5be8 100644
--- a/gtk3/rtbuf_gtk3.c
+++ b/gtk3/rtbuf_gtk3.c
@@ -1,4 +1,4 @@
-/* c3
+/* rtbuf
  * Copyright 2018-2022 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software granted
diff --git a/gtk3/rtbuf_gtk3.h b/gtk3/rtbuf_gtk3.h
index 8d77326..9bb9801 100644
--- a/gtk3/rtbuf_gtk3.h
+++ b/gtk3/rtbuf_gtk3.h
@@ -1,4 +1,4 @@
-/* c3
+/* rtbuf
  * Copyright 2018-2022 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software granted
diff --git a/gtk3/rtbuf_gtk3_connection.c b/gtk3/rtbuf_gtk3_connection.c
index 770317f..0e7e877 100644
--- a/gtk3/rtbuf_gtk3_connection.c
+++ b/gtk3/rtbuf_gtk3_connection.c
@@ -1,4 +1,4 @@
-/* c3
+/* rtbuf
  * Copyright 2018-2022 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software granted
diff --git a/gtk3/rtbuf_gtk3_connection.h b/gtk3/rtbuf_gtk3_connection.h
index e844392..1eafad0 100644
--- a/gtk3/rtbuf_gtk3_connection.h
+++ b/gtk3/rtbuf_gtk3_connection.h
@@ -1,4 +1,4 @@
-/* c3
+/* rtbuf
  * Copyright 2018-2022 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software granted
diff --git a/gtk3/rtbuf_gtk3_input.c b/gtk3/rtbuf_gtk3_input.c
index 15bbdcf..501e545 100644
--- a/gtk3/rtbuf_gtk3_input.c
+++ b/gtk3/rtbuf_gtk3_input.c
@@ -1,4 +1,4 @@
-/* c3
+/* rtbuf
  * Copyright 2018-2022 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software granted
diff --git a/gtk3/rtbuf_gtk3_input_widget.c b/gtk3/rtbuf_gtk3_input_widget.c
index 1930aa7..2a2c6b1 100644
--- a/gtk3/rtbuf_gtk3_input_widget.c
+++ b/gtk3/rtbuf_gtk3_input_widget.c
@@ -1,4 +1,4 @@
-/* c3
+/* rtbuf
  * Copyright 2018-2022 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software granted
diff --git a/gtk3/rtbuf_gtk3_input_widget.h b/gtk3/rtbuf_gtk3_input_widget.h
index 2c08aca..902fbc7 100644
--- a/gtk3/rtbuf_gtk3_input_widget.h
+++ b/gtk3/rtbuf_gtk3_input_widget.h
@@ -1,4 +1,4 @@
-/* c3
+/* rtbuf
  * Copyright 2018-2022 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software granted
diff --git a/gtk3/rtbuf_gtk3_library.c b/gtk3/rtbuf_gtk3_library.c
index 0e33e5f..de029f1 100644
--- a/gtk3/rtbuf_gtk3_library.c
+++ b/gtk3/rtbuf_gtk3_library.c
@@ -1,4 +1,4 @@
-/* c3
+/* rtbuf
  * Copyright 2018-2022 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software granted
diff --git a/gtk3/rtbuf_gtk3_library.h b/gtk3/rtbuf_gtk3_library.h
index 28b67a7..82543a9 100644
--- a/gtk3/rtbuf_gtk3_library.h
+++ b/gtk3/rtbuf_gtk3_library.h
@@ -1,4 +1,4 @@
-/* c3
+/* rtbuf
  * Copyright 2018-2022 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software granted
diff --git a/gtk3/rtbuf_gtk3_output.c b/gtk3/rtbuf_gtk3_output.c
index 72fc735..62167b0 100644
--- a/gtk3/rtbuf_gtk3_output.c
+++ b/gtk3/rtbuf_gtk3_output.c
@@ -1,4 +1,4 @@
-/* c3
+/* rtbuf
  * Copyright 2018-2022 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software granted
diff --git a/gtk3/rtbuf_gtk3_output_widget.c b/gtk3/rtbuf_gtk3_output_widget.c
index 73dc215..f0e074b 100644
--- a/gtk3/rtbuf_gtk3_output_widget.c
+++ b/gtk3/rtbuf_gtk3_output_widget.c
@@ -1,4 +1,4 @@
-/* c3
+/* rtbuf
  * Copyright 2018-2022 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software granted
diff --git a/gtk3/rtbuf_gtk3_output_widget.h b/gtk3/rtbuf_gtk3_output_widget.h
index 81057ac..297d4a5 100644
--- a/gtk3/rtbuf_gtk3_output_widget.h
+++ b/gtk3/rtbuf_gtk3_output_widget.h
@@ -1,4 +1,4 @@
-/* c3
+/* rtbuf
  * Copyright 2018-2022 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software granted
diff --git a/gtk3/rtbuf_gtk3_rtbuf.c b/gtk3/rtbuf_gtk3_rtbuf.c
index d9f0a6f..72a5c53 100644
--- a/gtk3/rtbuf_gtk3_rtbuf.c
+++ b/gtk3/rtbuf_gtk3_rtbuf.c
@@ -1,4 +1,4 @@
-/* c3
+/* rtbuf
  * Copyright 2018-2022 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software granted
diff --git a/gtk3/rtbuf_gtk3_rtbuf_info.c b/gtk3/rtbuf_gtk3_rtbuf_info.c
index 041d364..bd12bd2 100644
--- a/gtk3/rtbuf_gtk3_rtbuf_info.c
+++ b/gtk3/rtbuf_gtk3_rtbuf_info.c
@@ -1,4 +1,4 @@
-/* c3
+/* rtbuf
  * Copyright 2018-2022 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software granted
diff --git a/gtk3/rtbuf_gtk3_rtbuf_info.h b/gtk3/rtbuf_gtk3_rtbuf_info.h
index 19d488b..a958136 100644
--- a/gtk3/rtbuf_gtk3_rtbuf_info.h
+++ b/gtk3/rtbuf_gtk3_rtbuf_info.h
@@ -1,4 +1,4 @@
-/* c3
+/* rtbuf
  * Copyright 2018-2022 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software granted
diff --git a/gtk3/rtbuf_gtk3_widget.c b/gtk3/rtbuf_gtk3_widget.c
index 39be14d..f547438 100644
--- a/gtk3/rtbuf_gtk3_widget.c
+++ b/gtk3/rtbuf_gtk3_widget.c
@@ -1,4 +1,4 @@
-/* c3
+/* rtbuf
  * Copyright 2018-2022 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software granted
diff --git a/gtk3/rtbuf_gtk3_widget.h b/gtk3/rtbuf_gtk3_widget.h
index 1c9b4bf..7911d3d 100644
--- a/gtk3/rtbuf_gtk3_widget.h
+++ b/gtk3/rtbuf_gtk3_widget.h
@@ -1,4 +1,4 @@
-/* c3
+/* rtbuf
  * Copyright 2018-2022 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software granted
diff --git a/gtk3/stack.c b/gtk3/stack.c
index a7a0f75..49f9348 100644
--- a/gtk3/stack.c
+++ b/gtk3/stack.c
@@ -1,4 +1,4 @@
-/* c3
+/* rtbuf
  * Copyright 2018-2022 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software granted
diff --git a/gtk3/stack.h b/gtk3/stack.h
index 62deb69..f268d3b 100644
--- a/gtk3/stack.h
+++ b/gtk3/stack.h
@@ -1,4 +1,4 @@
-/* c3
+/* rtbuf
  * Copyright 2018-2022 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software granted
diff --git a/lib/dynamic.h b/lib/dynamic.h
index 0ff6a8b..dbfc9db 100644
--- a/lib/dynamic.h
+++ b/lib/dynamic.h
@@ -1,4 +1,4 @@
-/* c3
+/* rtbuf
  * Copyright 2018-2022 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software granted
diff --git a/lib/dynamic/limiter.c b/lib/dynamic/limiter.c
index 533263e..21b756a 100644
--- a/lib/dynamic/limiter.c
+++ b/lib/dynamic/limiter.c
@@ -1,4 +1,4 @@
-/* c3
+/* rtbuf
  * Copyright 2018-2022 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software granted
diff --git a/lib/glfw3.h b/lib/glfw3.h
index 69df134..f8262d6 100644
--- a/lib/glfw3.h
+++ b/lib/glfw3.h
@@ -1,4 +1,4 @@
-/* c3
+/* rtbuf
  * Copyright 2018-2022 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software granted
diff --git a/lib/glfw3/keyboard.c b/lib/glfw3/keyboard.c
index 39cf772..36dced1 100644
--- a/lib/glfw3/keyboard.c
+++ b/lib/glfw3/keyboard.c
@@ -1,4 +1,4 @@
-/* c3
+/* rtbuf
  * Copyright 2018-2022 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software granted
diff --git a/lib/glfw3/oscilloscope.c b/lib/glfw3/oscilloscope.c
index 273f186..db03eda 100644
--- a/lib/glfw3/oscilloscope.c
+++ b/lib/glfw3/oscilloscope.c
@@ -1,4 +1,4 @@
-/* c3
+/* rtbuf
  * Copyright 2018-2022 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software granted
diff --git a/lib/music.c b/lib/music.c
index a0ae321..98578e4 100644
--- a/lib/music.c
+++ b/lib/music.c
@@ -1,4 +1,4 @@
-/* c3
+/* rtbuf
  * Copyright 2018-2022 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software granted
diff --git a/lib/music.h b/lib/music.h
index aca7310..63ed162 100644
--- a/lib/music.h
+++ b/lib/music.h
@@ -1,4 +1,4 @@
-/* c3
+/* rtbuf
  * Copyright 2018-2022 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software granted
diff --git a/lib/music_type.c b/lib/music_type.c
index 2bbf27f..262e919 100644
--- a/lib/music_type.c
+++ b/lib/music_type.c
@@ -1,4 +1,4 @@
-/* c3
+/* rtbuf
  * Copyright 2018-2022 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software granted
diff --git a/lib/portaudio.h b/lib/portaudio.h
index 075a4c3..72901b0 100644
--- a/lib/portaudio.h
+++ b/lib/portaudio.h
@@ -1,4 +1,4 @@
-/* c3
+/* rtbuf
  * Copyright 2018-2022 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software granted
diff --git a/lib/portaudio/config.c b/lib/portaudio/config.c
index b4b0a4b..b54fe15 100644
--- a/lib/portaudio/config.c
+++ b/lib/portaudio/config.c
@@ -1,4 +1,4 @@
-/* c3
+/* rtbuf
  * Copyright 2018-2022 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software granted
diff --git a/lib/portaudio/input.c b/lib/portaudio/input.c
index aae7340..7e68e4a 100644
--- a/lib/portaudio/input.c
+++ b/lib/portaudio/input.c
@@ -1,4 +1,4 @@
-/* c3
+/* rtbuf
  * Copyright 2018-2022 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software granted
diff --git a/lib/portaudio/output.c b/lib/portaudio/output.c
index 55cbcf6..396e0d2 100644
--- a/lib/portaudio/output.c
+++ b/lib/portaudio/output.c
@@ -1,4 +1,4 @@
-/* c3
+/* rtbuf
  * Copyright 2018-2022 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software granted
diff --git a/lib/portaudio_type.c b/lib/portaudio_type.c
index 3a78c77..d3c57f4 100644
--- a/lib/portaudio_type.c
+++ b/lib/portaudio_type.c
@@ -1,4 +1,4 @@
-/* c3
+/* rtbuf
  * Copyright 2018-2022 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software granted
diff --git a/lib/reverb.c b/lib/reverb.c
index a3b8ba8..2b24a7e 100644
--- a/lib/reverb.c
+++ b/lib/reverb.c
@@ -1,4 +1,4 @@
-/* c3
+/* rtbuf
  * Copyright 2018-2022 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software granted
diff --git a/lib/reverb.h b/lib/reverb.h
index c2c310e..c9ad176 100644
--- a/lib/reverb.h
+++ b/lib/reverb.h
@@ -1,4 +1,4 @@
-/* c3
+/* rtbuf
  * Copyright 2018-2022 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software granted
diff --git a/lib/reverb/fdn4.c b/lib/reverb/fdn4.c
index d2c2a48..68f737a 100644
--- a/lib/reverb/fdn4.c
+++ b/lib/reverb/fdn4.c
@@ -1,4 +1,4 @@
-/* c3
+/* rtbuf
  * Copyright 2018-2022 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software granted
diff --git a/lib/reverb/hadamard.h b/lib/reverb/hadamard.h
index ba10ace..a733976 100644
--- a/lib/reverb/hadamard.h
+++ b/lib/reverb/hadamard.h
@@ -1,4 +1,4 @@
-/* c3
+/* rtbuf
  * Copyright 2018-2022 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software granted
diff --git a/lib/reverb_type.c b/lib/reverb_type.c
index b8e1913..7616e54 100644
--- a/lib/reverb_type.c
+++ b/lib/reverb_type.c
@@ -1,4 +1,4 @@
-/* c3
+/* rtbuf
  * Copyright 2018-2022 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software granted
diff --git a/lib/signal.c b/lib/signal.c
index bb9c1b7..e1e1ae9 100644
--- a/lib/signal.c
+++ b/lib/signal.c
@@ -1,4 +1,4 @@
-/* c3
+/* rtbuf
  * Copyright 2018-2022 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software granted
diff --git a/lib/signal.h b/lib/signal.h
index f37fa2b..0a4f83f 100644
--- a/lib/signal.h
+++ b/lib/signal.h
@@ -1,4 +1,4 @@
-/* c3
+/* rtbuf
  * Copyright 2018-2022 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software granted
diff --git a/lib/signal/bandpass2.c b/lib/signal/bandpass2.c
index eb01a29..26d764b 100644
--- a/lib/signal/bandpass2.c
+++ b/lib/signal/bandpass2.c
@@ -1,4 +1,4 @@
-/* c3
+/* rtbuf
  * Copyright 2018-2022 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software granted
diff --git a/lib/signal/delay.c b/lib/signal/delay.c
index 26ebc56..6b55385 100644
--- a/lib/signal/delay.c
+++ b/lib/signal/delay.c
@@ -1,4 +1,4 @@
-/* c3
+/* rtbuf
  * Copyright 2018-2022 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software granted
diff --git a/lib/signal/equalizer10.c b/lib/signal/equalizer10.c
index fe03572..f2d3dbb 100644
--- a/lib/signal/equalizer10.c
+++ b/lib/signal/equalizer10.c
@@ -1,4 +1,4 @@
-/* c3
+/* rtbuf
  * Copyright 2018-2022 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software granted
diff --git a/lib/signal/flanger.c b/lib/signal/flanger.c
index e9322ed..5f1b31f 100644
--- a/lib/signal/flanger.c
+++ b/lib/signal/flanger.c
@@ -1,4 +1,4 @@
-/* c3
+/* rtbuf
  * Copyright 2018-2022 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software granted
diff --git a/lib/signal/hipass.c b/lib/signal/hipass.c
index 7198df2..ca84e2d 100644
--- a/lib/signal/hipass.c
+++ b/lib/signal/hipass.c
@@ -1,4 +1,4 @@
-/* c3
+/* rtbuf
  * Copyright 2018-2022 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software granted
diff --git a/lib/signal/hipass2.c b/lib/signal/hipass2.c
index 565d7d7..323797e 100644
--- a/lib/signal/hipass2.c
+++ b/lib/signal/hipass2.c
@@ -1,4 +1,4 @@
-/* c3
+/* rtbuf
  * Copyright 2018-2022 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software granted
diff --git a/lib/signal/hipass3.c b/lib/signal/hipass3.c
index a31be9e..6fd697b 100644
--- a/lib/signal/hipass3.c
+++ b/lib/signal/hipass3.c
@@ -1,4 +1,4 @@
-/* c3
+/* rtbuf
  * Copyright 2018-2022 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software granted
diff --git a/lib/signal/hipass4.c b/lib/signal/hipass4.c
index afc56c1..5a7748d 100644
--- a/lib/signal/hipass4.c
+++ b/lib/signal/hipass4.c
@@ -1,4 +1,4 @@
-/* c3
+/* rtbuf
  * Copyright 2018-2022 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software granted
diff --git a/lib/signal/hipass5.c b/lib/signal/hipass5.c
index 4cd5d4f..3403e4b 100644
--- a/lib/signal/hipass5.c
+++ b/lib/signal/hipass5.c
@@ -1,4 +1,4 @@
-/* c3
+/* rtbuf
  * Copyright 2018-2022 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software granted
diff --git a/lib/signal/lowpass.c b/lib/signal/lowpass.c
index 8e61276..03440df 100644
--- a/lib/signal/lowpass.c
+++ b/lib/signal/lowpass.c
@@ -1,4 +1,4 @@
-/* c3
+/* rtbuf
  * Copyright 2018-2022 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software granted
diff --git a/lib/signal/lowpass2.c b/lib/signal/lowpass2.c
index 2e75df8..f73ba56 100644
--- a/lib/signal/lowpass2.c
+++ b/lib/signal/lowpass2.c
@@ -1,4 +1,4 @@
-/* c3
+/* rtbuf
  * Copyright 2018-2022 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software granted
diff --git a/lib/signal/lowpass3.c b/lib/signal/lowpass3.c
index e37dbaf..5bd6a74 100644
--- a/lib/signal/lowpass3.c
+++ b/lib/signal/lowpass3.c
@@ -1,4 +1,4 @@
-/* c3
+/* rtbuf
  * Copyright 2018-2022 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software granted
diff --git a/lib/signal/lowpass4.c b/lib/signal/lowpass4.c
index 959649a..81eb92a 100644
--- a/lib/signal/lowpass4.c
+++ b/lib/signal/lowpass4.c
@@ -1,4 +1,4 @@
-/* c3
+/* rtbuf
  * Copyright 2018-2022 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software granted
diff --git a/lib/signal/lowpass5.c b/lib/signal/lowpass5.c
index 388753a..946a608 100644
--- a/lib/signal/lowpass5.c
+++ b/lib/signal/lowpass5.c
@@ -1,4 +1,4 @@
-/* c3
+/* rtbuf
  * Copyright 2018-2022 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software granted
diff --git a/lib/signal/sawtooth.c b/lib/signal/sawtooth.c
index 0f6b17e..12ada9c 100644
--- a/lib/signal/sawtooth.c
+++ b/lib/signal/sawtooth.c
@@ -1,4 +1,4 @@
-/* c3
+/* rtbuf
  * Copyright 2018-2022 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software granted
diff --git a/lib/signal/sinus.c b/lib/signal/sinus.c
index 1e15a8b..634444e 100644
--- a/lib/signal/sinus.c
+++ b/lib/signal/sinus.c
@@ -1,4 +1,4 @@
-/* c3
+/* rtbuf
  * Copyright 2018-2022 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software granted
diff --git a/lib/signal/square.c b/lib/signal/square.c
index 04e96c2..cbd4c01 100644
--- a/lib/signal/square.c
+++ b/lib/signal/square.c
@@ -1,4 +1,4 @@
-/* c3
+/* rtbuf
  * Copyright 2018-2022 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software granted
diff --git a/lib/signal_type.c b/lib/signal_type.c
index 9dd1a61..3012a59 100644
--- a/lib/signal_type.c
+++ b/lib/signal_type.c
@@ -1,4 +1,4 @@
-/* c3
+/* rtbuf
  * Copyright 2018-2022 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software granted
diff --git a/lib/sndio.c b/lib/sndio.c
index 28159d3..ee66778 100644
--- a/lib/sndio.c
+++ b/lib/sndio.c
@@ -1,4 +1,4 @@
-/* c3
+/* rtbuf
  * Copyright 2018-2022 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software granted
diff --git a/lib/sndio.h b/lib/sndio.h
index f37c7f2..08d4584 100644
--- a/lib/sndio.h
+++ b/lib/sndio.h
@@ -1,4 +1,4 @@
-/* c3
+/* rtbuf
  * Copyright 2018-2022 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software granted
diff --git a/lib/sndio/check_sndio.c b/lib/sndio/check_sndio.c
index 1c082a0..1c38256 100644
--- a/lib/sndio/check_sndio.c
+++ b/lib/sndio/check_sndio.c
@@ -1,4 +1,4 @@
-/* c3
+/* rtbuf
  * Copyright 2018-2022 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software granted
diff --git a/lib/sndio/config.c b/lib/sndio/config.c
index 0f0fcc1..ac346f9 100644
--- a/lib/sndio/config.c
+++ b/lib/sndio/config.c
@@ -1,4 +1,4 @@
-/* c3
+/* rtbuf
  * Copyright 2018-2022 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software granted
diff --git a/lib/sndio/input.c b/lib/sndio/input.c
index 955f8dd..5d12316 100644
--- a/lib/sndio/input.c
+++ b/lib/sndio/input.c
@@ -1,4 +1,4 @@
-/* c3
+/* rtbuf
  * Copyright 2018-2022 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software granted
diff --git a/lib/sndio/output.c b/lib/sndio/output.c
index 1722cd8..0b19051 100644
--- a/lib/sndio/output.c
+++ b/lib/sndio/output.c
@@ -1,4 +1,4 @@
-/* c3
+/* rtbuf
  * Copyright 2018-2022 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software granted
diff --git a/lib/sndio_type.c b/lib/sndio_type.c
index ae36a5c..f25fe5e 100644
--- a/lib/sndio_type.c
+++ b/lib/sndio_type.c
@@ -1,4 +1,4 @@
-/* c3
+/* rtbuf
  * Copyright 2018-2022 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software granted
diff --git a/lib/synth.h b/lib/synth.h
index af87d29..7bb5b7c 100644
--- a/lib/synth.h
+++ b/lib/synth.h
@@ -1,4 +1,4 @@
-/* c3
+/* rtbuf
  * Copyright 2018-2022 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software granted
diff --git a/lib/synth/adsr.c b/lib/synth/adsr.c
index 4feb7ff..a187076 100644
--- a/lib/synth/adsr.c
+++ b/lib/synth/adsr.c
@@ -1,4 +1,4 @@
-/* c3
+/* rtbuf
  * Copyright 2018-2022 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software granted
diff --git a/lib/synth/synth.c b/lib/synth/synth.c
index 8425577..4bfafe0 100644
--- a/lib/synth/synth.c
+++ b/lib/synth/synth.c
@@ -1,4 +1,4 @@
-/* c3
+/* rtbuf
  * Copyright 2018-2022 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software granted
diff --git a/lib/synth_type.c b/lib/synth_type.c
index b1a86a6..5699030 100644
--- a/lib/synth_type.c
+++ b/lib/synth_type.c
@@ -1,4 +1,4 @@
-/* c3
+/* rtbuf
  * Copyright 2018-2022 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software granted
diff --git a/librtbuf/data.c b/librtbuf/data.c
index 0970552..a16c964 100644
--- a/librtbuf/data.c
+++ b/librtbuf/data.c
@@ -1,4 +1,4 @@
-/* c3
+/* rtbuf
  * Copyright 2018-2022 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software granted
diff --git a/librtbuf/data.h b/librtbuf/data.h
index 61528a9..27c17a6 100644
--- a/librtbuf/data.h
+++ b/librtbuf/data.h
@@ -1,4 +1,4 @@
-/* c3
+/* rtbuf
  * Copyright 2018-2022 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software granted
diff --git a/librtbuf/defs.h b/librtbuf/defs.h
index 588ed3c..a5ca1e0 100644
--- a/librtbuf/defs.h
+++ b/librtbuf/defs.h
@@ -1,4 +1,4 @@
-/* c3
+/* rtbuf
  * Copyright 2018-2022 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software granted
diff --git a/librtbuf/lib.h b/librtbuf/lib.h
index b8b981d..41528f3 100644
--- a/librtbuf/lib.h
+++ b/librtbuf/lib.h
@@ -1,4 +1,4 @@
-/* c3
+/* rtbuf
  * Copyright 2018-2022 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software granted
diff --git a/librtbuf/proc.h b/librtbuf/proc.h
index ad76c58..94f6944 100644
--- a/librtbuf/proc.h
+++ b/librtbuf/proc.h
@@ -1,4 +1,4 @@
-/* c3
+/* rtbuf
  * Copyright 2018-2022 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software granted
diff --git a/librtbuf/queue.h b/librtbuf/queue.h
index 3b455c7..3ea1de6 100644
--- a/librtbuf/queue.h
+++ b/librtbuf/queue.h
@@ -1,4 +1,4 @@
-/* c3
+/* rtbuf
  * Copyright 2018-2022 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software granted
diff --git a/librtbuf/rtbuf.c b/librtbuf/rtbuf.c
index ce8dbf8..c63413d 100644
--- a/librtbuf/rtbuf.c
+++ b/librtbuf/rtbuf.c
@@ -1,4 +1,4 @@
-/* c3
+/* rtbuf
  * Copyright 2018-2022 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software granted
diff --git a/librtbuf/rtbuf.h b/librtbuf/rtbuf.h
index 95e3fc8..1908f5f 100644
--- a/librtbuf/rtbuf.h
+++ b/librtbuf/rtbuf.h
@@ -1,4 +1,4 @@
-/* c3
+/* rtbuf
  * Copyright 2018-2022 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software granted
diff --git a/librtbuf/rtbuf_lib.c b/librtbuf/rtbuf_lib.c
index 29a16c7..56a82b9 100644
--- a/librtbuf/rtbuf_lib.c
+++ b/librtbuf/rtbuf_lib.c
@@ -1,4 +1,4 @@
-/* c3
+/* rtbuf
  * Copyright 2018-2022 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software granted
diff --git a/librtbuf/rtbuf_proc.c b/librtbuf/rtbuf_proc.c
index dad6c14..4ea73cb 100644
--- a/librtbuf/rtbuf_proc.c
+++ b/librtbuf/rtbuf_proc.c
@@ -1,4 +1,4 @@
-/* c3
+/* rtbuf
  * Copyright 2018-2022 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software granted
diff --git a/librtbuf/rtbuf_type.c b/librtbuf/rtbuf_type.c
index 2b09066..b870418 100644
--- a/librtbuf/rtbuf_type.c
+++ b/librtbuf/rtbuf_type.c
@@ -1,4 +1,4 @@
-/* c3
+/* rtbuf
  * Copyright 2018-2022 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software granted
diff --git a/librtbuf/rtbuf_var.c b/librtbuf/rtbuf_var.c
index 0966021..0c33f14 100644
--- a/librtbuf/rtbuf_var.c
+++ b/librtbuf/rtbuf_var.c
@@ -1,4 +1,4 @@
-/* c3
+/* rtbuf
  * Copyright 2018-2022 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software granted
diff --git a/librtbuf/symbol.c b/librtbuf/symbol.c
index f01418e..81d9ef9 100644
--- a/librtbuf/symbol.c
+++ b/librtbuf/symbol.c
@@ -1,4 +1,4 @@
-/* c3
+/* rtbuf
  * Copyright 2018-2022 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software granted
diff --git a/librtbuf/symbol.h b/librtbuf/symbol.h
index 97628ec..d6bc24d 100644
--- a/librtbuf/symbol.h
+++ b/librtbuf/symbol.h
@@ -1,4 +1,4 @@
-/* c3
+/* rtbuf
  * Copyright 2018-2022 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software granted
diff --git a/librtbuf/type.h b/librtbuf/type.h
index dd684d5..c70078e 100644
--- a/librtbuf/type.h
+++ b/librtbuf/type.h
@@ -1,4 +1,4 @@
-/* c3
+/* rtbuf
  * Copyright 2018-2022 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software granted
diff --git a/librtbuf/var.h b/librtbuf/var.h
index 4e0e1a1..4a1394d 100644
--- a/librtbuf/var.h
+++ b/librtbuf/var.h
@@ -1,4 +1,4 @@
-/* c3
+/* rtbuf
  * Copyright 2018-2022 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software granted