-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsynth_8h.html
More file actions
4849 lines (4450 loc) · 290 KB
/
synth_8h.html
File metadata and controls
4849 lines (4450 loc) · 290 KB
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
993
994
995
996
997
998
999
1000
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" content="Doxygen 1.8.13"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>libfluidsynth: synth.h File Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="search/searchdata.js"></script>
<script type="text/javascript" src="search/search.js"></script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectalign" style="padding-left: 0.5em;">
<div id="projectname">libfluidsynth
 <span id="projectnumber">1.1.11</span>
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.13 -->
<script type="text/javascript">
var searchBox = new SearchBox("searchBox", "search",false,'Search');
</script>
<script type="text/javascript" src="menudata.js"></script>
<script type="text/javascript" src="menu.js"></script>
<script type="text/javascript">
$(function() {
initMenu('',true,false,'search.php','Search');
$(document).ready(function() { init_search(); });
});
</script>
<div id="main-nav"></div>
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
</div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="javascript:void(0)" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><a class="el" href="dir_d44c64559bbebec7f509842c48db8b23.html">include</a></li><li class="navelem"><a class="el" href="dir_e9d22631e23def53df9d7c08c7c6097f.html">fluidsynth</a></li> </ul>
</div>
</div><!-- top -->
<div class="header">
<div class="summary">
<a href="#nested-classes">Data Structures</a> |
<a href="#define-members">Macros</a> |
<a href="#typedef-members">Typedefs</a> |
<a href="#enum-members">Enumerations</a> |
<a href="#func-members">Functions</a> </div>
<div class="headertitle">
<div class="title">synth.h File Reference</div> </div>
</div><!--header-->
<div class="contents">
<p>Embeddable SoundFont synthesizer.
<a href="#details">More...</a></p>
<table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="nested-classes"></a>
Data Structures</h2></td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">struct  </td><td class="memItemRight" valign="bottom"><a class="el" href="struct__fluid__synth__channel__info__t.html">_fluid_synth_channel_info_t</a></td></tr>
<tr class="memdesc:"><td class="mdescLeft"> </td><td class="mdescRight">Channel information structure for <a class="el" href="synth_8h.html#a80f40cdecd1db919d2a0ba80f10907e6" title="Get information on the currently selected preset on a MIDI channel. ">fluid_synth_get_channel_info()</a>. <a href="struct__fluid__synth__channel__info__t.html#details">More...</a><br /></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="define-members"></a>
Macros</h2></td></tr>
<tr class="memitem:af7049260777aad176ba7b1e3b2266c8f"><td class="memItemLeft" align="right" valign="top"><a id="af7049260777aad176ba7b1e3b2266c8f"></a>
#define </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#af7049260777aad176ba7b1e3b2266c8f">FLUID_SYNTH_CHANNEL_INFO_NAME_SIZE</a>   32</td></tr>
<tr class="memdesc:af7049260777aad176ba7b1e3b2266c8f"><td class="mdescLeft"> </td><td class="mdescRight">Length of channel info name field (including zero terminator) <br /></td></tr>
<tr class="separator:af7049260777aad176ba7b1e3b2266c8f"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:acf299c8c0c8dd2912e05add80af2a9b0"><td class="memItemLeft" align="right" valign="top"><a id="acf299c8c0c8dd2912e05add80af2a9b0"></a>
#define </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#acf299c8c0c8dd2912e05add80af2a9b0">FLUID_REVERB_DEFAULT_ROOMSIZE</a>   0.2f</td></tr>
<tr class="memdesc:acf299c8c0c8dd2912e05add80af2a9b0"><td class="mdescLeft"> </td><td class="mdescRight">Default reverb room size. <br /></td></tr>
<tr class="separator:acf299c8c0c8dd2912e05add80af2a9b0"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aae3fec0215b3bbf71451935094371513"><td class="memItemLeft" align="right" valign="top"><a id="aae3fec0215b3bbf71451935094371513"></a>
#define </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#aae3fec0215b3bbf71451935094371513">FLUID_REVERB_DEFAULT_DAMP</a>   0.0f</td></tr>
<tr class="memdesc:aae3fec0215b3bbf71451935094371513"><td class="mdescLeft"> </td><td class="mdescRight">Default reverb damping. <br /></td></tr>
<tr class="separator:aae3fec0215b3bbf71451935094371513"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad5c8f01f604fda90aba860f8cbe0d84a"><td class="memItemLeft" align="right" valign="top"><a id="ad5c8f01f604fda90aba860f8cbe0d84a"></a>
#define </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#ad5c8f01f604fda90aba860f8cbe0d84a">FLUID_REVERB_DEFAULT_WIDTH</a>   0.5f</td></tr>
<tr class="memdesc:ad5c8f01f604fda90aba860f8cbe0d84a"><td class="mdescLeft"> </td><td class="mdescRight">Default reverb width. <br /></td></tr>
<tr class="separator:ad5c8f01f604fda90aba860f8cbe0d84a"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5f437aa1f9ae5921405a2883d6fe4a29"><td class="memItemLeft" align="right" valign="top"><a id="a5f437aa1f9ae5921405a2883d6fe4a29"></a>
#define </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#a5f437aa1f9ae5921405a2883d6fe4a29">FLUID_REVERB_DEFAULT_LEVEL</a>   0.9f</td></tr>
<tr class="memdesc:a5f437aa1f9ae5921405a2883d6fe4a29"><td class="mdescLeft"> </td><td class="mdescRight">Default reverb level. <br /></td></tr>
<tr class="separator:a5f437aa1f9ae5921405a2883d6fe4a29"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a6f8520d84bdd2d8767e2b61a240db5de"><td class="memItemLeft" align="right" valign="top"><a id="a6f8520d84bdd2d8767e2b61a240db5de"></a>
#define </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#a6f8520d84bdd2d8767e2b61a240db5de">FLUID_CHORUS_DEFAULT_N</a>   3</td></tr>
<tr class="memdesc:a6f8520d84bdd2d8767e2b61a240db5de"><td class="mdescLeft"> </td><td class="mdescRight">Default chorus voice count. <br /></td></tr>
<tr class="separator:a6f8520d84bdd2d8767e2b61a240db5de"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a0e8b082acae0b42ea931a84410d2fb36"><td class="memItemLeft" align="right" valign="top"><a id="a0e8b082acae0b42ea931a84410d2fb36"></a>
#define </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#a0e8b082acae0b42ea931a84410d2fb36">FLUID_CHORUS_DEFAULT_LEVEL</a>   2.0f</td></tr>
<tr class="memdesc:a0e8b082acae0b42ea931a84410d2fb36"><td class="mdescLeft"> </td><td class="mdescRight">Default chorus level. <br /></td></tr>
<tr class="separator:a0e8b082acae0b42ea931a84410d2fb36"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac5fa16b1c7b070af6cb9ce9fc76e65de"><td class="memItemLeft" align="right" valign="top"><a id="ac5fa16b1c7b070af6cb9ce9fc76e65de"></a>
#define </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#ac5fa16b1c7b070af6cb9ce9fc76e65de">FLUID_CHORUS_DEFAULT_SPEED</a>   0.3f</td></tr>
<tr class="memdesc:ac5fa16b1c7b070af6cb9ce9fc76e65de"><td class="mdescLeft"> </td><td class="mdescRight">Default chorus speed. <br /></td></tr>
<tr class="separator:ac5fa16b1c7b070af6cb9ce9fc76e65de"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:acb078afa35b87429f0255c4104181f0f"><td class="memItemLeft" align="right" valign="top"><a id="acb078afa35b87429f0255c4104181f0f"></a>
#define </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#acb078afa35b87429f0255c4104181f0f">FLUID_CHORUS_DEFAULT_DEPTH</a>   8.0f</td></tr>
<tr class="memdesc:acb078afa35b87429f0255c4104181f0f"><td class="mdescLeft"> </td><td class="mdescRight">Default chorus depth. <br /></td></tr>
<tr class="separator:acb078afa35b87429f0255c4104181f0f"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a0b537cffea311e113997a6b1db03dd67"><td class="memItemLeft" align="right" valign="top"><a id="a0b537cffea311e113997a6b1db03dd67"></a>
#define </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#a0b537cffea311e113997a6b1db03dd67">FLUID_CHORUS_DEFAULT_TYPE</a>   <a class="el" href="synth_8h.html#a96a2e0002fb015c8a32ccf287fba9264a2d4792078c24ca8ed02bfee6c08251f7">FLUID_CHORUS_MOD_SINE</a></td></tr>
<tr class="memdesc:a0b537cffea311e113997a6b1db03dd67"><td class="mdescLeft"> </td><td class="mdescRight">Default chorus waveform type. <br /></td></tr>
<tr class="separator:a0b537cffea311e113997a6b1db03dd67"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a499506fd899e2bec84d48d911b4eb0ad"><td class="memItemLeft" align="right" valign="top">#define </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#a499506fd899e2bec84d48d911b4eb0ad">FLUID_INTERP_DEFAULT</a>   <a class="el" href="synth_8h.html#a4a2efef77b267500dd9c19c0dc9e4633a7c302900233f9b26a8d76f54fe11e024">FLUID_INTERP_4THORDER</a></td></tr>
<tr class="memdesc:a499506fd899e2bec84d48d911b4eb0ad"><td class="mdescLeft"> </td><td class="mdescRight">Default interpolation method from <a class="el" href="synth_8h.html#a4a2efef77b267500dd9c19c0dc9e4633" title="Synthesis interpolation method. ">fluid_interp</a>. <a href="#a499506fd899e2bec84d48d911b4eb0ad">More...</a><br /></td></tr>
<tr class="separator:a499506fd899e2bec84d48d911b4eb0ad"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a7192111999afd699b93f328949887347"><td class="memItemLeft" align="right" valign="top">#define </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#a7192111999afd699b93f328949887347">FLUID_INTERP_HIGHEST</a>   <a class="el" href="synth_8h.html#a4a2efef77b267500dd9c19c0dc9e4633a593125ae8ab8e8f1f1a1bb7bb3f71b02">FLUID_INTERP_7THORDER</a></td></tr>
<tr class="memdesc:a7192111999afd699b93f328949887347"><td class="mdescLeft"> </td><td class="mdescRight">Highest interpolation method from <a class="el" href="synth_8h.html#a4a2efef77b267500dd9c19c0dc9e4633" title="Synthesis interpolation method. ">fluid_interp</a>. <a href="#a7192111999afd699b93f328949887347">More...</a><br /></td></tr>
<tr class="separator:a7192111999afd699b93f328949887347"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="typedef-members"></a>
Typedefs</h2></td></tr>
<tr class="memitem:aaafffa6de4113b320c3b594aa004faa3"><td class="memItemLeft" align="right" valign="top">typedef int(* </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#aaafffa6de4113b320c3b594aa004faa3">fluid_audio_callback_t</a>) (<a class="el" href="types_8h.html#ae265f10ae174a13afe010de50d87e1a4">fluid_synth_t</a> *synth, int len, void *out1, int loff, int lincr, void *out2, int roff, int rincr)</td></tr>
<tr class="memdesc:aaafffa6de4113b320c3b594aa004faa3"><td class="mdescLeft"> </td><td class="mdescRight">Type definition of the synthesizer's audio callback function. <a href="#aaafffa6de4113b320c3b594aa004faa3">More...</a><br /></td></tr>
<tr class="separator:aaafffa6de4113b320c3b594aa004faa3"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="enum-members"></a>
Enumerations</h2></td></tr>
<tr class="memitem:aada0747654fce5d0a758126fc3c99eb0"><td class="memItemLeft" align="right" valign="top">enum  </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#aada0747654fce5d0a758126fc3c99eb0">fluid_midi_channel_type</a> { <a class="el" href="synth_8h.html#aada0747654fce5d0a758126fc3c99eb0aa81f75c5ad62a95bf62a276670542f57">CHANNEL_TYPE_MELODIC</a> = 0,
<a class="el" href="synth_8h.html#aada0747654fce5d0a758126fc3c99eb0a3b26ca93ed355e9b82f1b46b8d67ae91">CHANNEL_TYPE_DRUM</a> = 1
}<tr class="memdesc:aada0747654fce5d0a758126fc3c99eb0"><td class="mdescLeft"> </td><td class="mdescRight">The midi channel type used by <a class="el" href="synth_8h.html#a55af07ef3c725366ac8c77d1d3f032c9" title="Set midi channel type. ">fluid_synth_set_channel_type()</a> <a href="synth_8h.html#aada0747654fce5d0a758126fc3c99eb0">More...</a><br /></td></tr>
</td></tr>
<tr class="separator:aada0747654fce5d0a758126fc3c99eb0"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a96a2e0002fb015c8a32ccf287fba9264"><td class="memItemLeft" align="right" valign="top">enum  </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#a96a2e0002fb015c8a32ccf287fba9264">fluid_chorus_mod</a> { <a class="el" href="synth_8h.html#a96a2e0002fb015c8a32ccf287fba9264a2d4792078c24ca8ed02bfee6c08251f7">FLUID_CHORUS_MOD_SINE</a> = 0,
<a class="el" href="synth_8h.html#a96a2e0002fb015c8a32ccf287fba9264a064e550e31bc5cf9e164a790f3306f8e">FLUID_CHORUS_MOD_TRIANGLE</a> = 1
}<tr class="memdesc:a96a2e0002fb015c8a32ccf287fba9264"><td class="mdescLeft"> </td><td class="mdescRight">Chorus modulation waveform type. <a href="synth_8h.html#a96a2e0002fb015c8a32ccf287fba9264">More...</a><br /></td></tr>
</td></tr>
<tr class="separator:a96a2e0002fb015c8a32ccf287fba9264"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4a2efef77b267500dd9c19c0dc9e4633"><td class="memItemLeft" align="right" valign="top">enum  </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#a4a2efef77b267500dd9c19c0dc9e4633">fluid_interp</a> { <a class="el" href="synth_8h.html#a4a2efef77b267500dd9c19c0dc9e4633a27d7b88910ec0601854ba9312ddfaff4">FLUID_INTERP_NONE</a> = 0,
<a class="el" href="synth_8h.html#a4a2efef77b267500dd9c19c0dc9e4633a5c81597532f7e188b5aabc761ae49afd">FLUID_INTERP_LINEAR</a> = 1,
<a class="el" href="synth_8h.html#a4a2efef77b267500dd9c19c0dc9e4633a7c302900233f9b26a8d76f54fe11e024">FLUID_INTERP_4THORDER</a> = 4,
<a class="el" href="synth_8h.html#a4a2efef77b267500dd9c19c0dc9e4633a593125ae8ab8e8f1f1a1bb7bb3f71b02">FLUID_INTERP_7THORDER</a> = 7
}<tr class="memdesc:a4a2efef77b267500dd9c19c0dc9e4633"><td class="mdescLeft"> </td><td class="mdescRight">Synthesis interpolation method. <a href="synth_8h.html#a4a2efef77b267500dd9c19c0dc9e4633">More...</a><br /></td></tr>
</td></tr>
<tr class="separator:a4a2efef77b267500dd9c19c0dc9e4633"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="func-members"></a>
Functions</h2></td></tr>
<tr class="memitem:a344f7369c0f57d30f72702d0c88e6178"><td class="memItemLeft" align="right" valign="top">FLUIDSYNTH_API <a class="el" href="types_8h.html#ae265f10ae174a13afe010de50d87e1a4">fluid_synth_t</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#a344f7369c0f57d30f72702d0c88e6178">new_fluid_synth</a> (<a class="el" href="types_8h.html#aa363402d3c77333b0f070ba531d034ba">fluid_settings_t</a> *settings)</td></tr>
<tr class="memdesc:a344f7369c0f57d30f72702d0c88e6178"><td class="mdescLeft"> </td><td class="mdescRight">Create new FluidSynth instance. <a href="#a344f7369c0f57d30f72702d0c88e6178">More...</a><br /></td></tr>
<tr class="separator:a344f7369c0f57d30f72702d0c88e6178"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a585a63f3a25b9df17b82ae87f2d38cfc"><td class="memItemLeft" align="right" valign="top">FLUIDSYNTH_API int </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#a585a63f3a25b9df17b82ae87f2d38cfc">delete_fluid_synth</a> (<a class="el" href="types_8h.html#ae265f10ae174a13afe010de50d87e1a4">fluid_synth_t</a> *synth)</td></tr>
<tr class="memdesc:a585a63f3a25b9df17b82ae87f2d38cfc"><td class="mdescLeft"> </td><td class="mdescRight">Delete a FluidSynth instance. <a href="#a585a63f3a25b9df17b82ae87f2d38cfc">More...</a><br /></td></tr>
<tr class="separator:a585a63f3a25b9df17b82ae87f2d38cfc"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac836a7addc0bc214813f755fe9cea851"><td class="memItemLeft" align="right" valign="top">FLUIDSYNTH_API <a class="el" href="types_8h.html#aa363402d3c77333b0f070ba531d034ba">fluid_settings_t</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#ac836a7addc0bc214813f755fe9cea851">fluid_synth_get_settings</a> (<a class="el" href="types_8h.html#ae265f10ae174a13afe010de50d87e1a4">fluid_synth_t</a> *synth)</td></tr>
<tr class="memdesc:ac836a7addc0bc214813f755fe9cea851"><td class="mdescLeft"> </td><td class="mdescRight">Get settings assigned to a synth. <a href="#ac836a7addc0bc214813f755fe9cea851">More...</a><br /></td></tr>
<tr class="separator:ac836a7addc0bc214813f755fe9cea851"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4a98222fe1c36bfd598dc4cd89f4b75c"><td class="memItemLeft" align="right" valign="top">FLUIDSYNTH_API int </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#a4a98222fe1c36bfd598dc4cd89f4b75c">fluid_synth_noteon</a> (<a class="el" href="types_8h.html#ae265f10ae174a13afe010de50d87e1a4">fluid_synth_t</a> *synth, int chan, int key, int vel)</td></tr>
<tr class="memdesc:a4a98222fe1c36bfd598dc4cd89f4b75c"><td class="mdescLeft"> </td><td class="mdescRight">Send a note-on event to a FluidSynth object. <a href="#a4a98222fe1c36bfd598dc4cd89f4b75c">More...</a><br /></td></tr>
<tr class="separator:a4a98222fe1c36bfd598dc4cd89f4b75c"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5e8f96cacbc6460f7677a6191cbd4472"><td class="memItemLeft" align="right" valign="top">FLUIDSYNTH_API int </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#a5e8f96cacbc6460f7677a6191cbd4472">fluid_synth_noteoff</a> (<a class="el" href="types_8h.html#ae265f10ae174a13afe010de50d87e1a4">fluid_synth_t</a> *synth, int chan, int key)</td></tr>
<tr class="memdesc:a5e8f96cacbc6460f7677a6191cbd4472"><td class="mdescLeft"> </td><td class="mdescRight">Send a note-off event to a FluidSynth object. <a href="#a5e8f96cacbc6460f7677a6191cbd4472">More...</a><br /></td></tr>
<tr class="separator:a5e8f96cacbc6460f7677a6191cbd4472"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a96b535f5acee6f807033d6cc9ccab555"><td class="memItemLeft" align="right" valign="top">FLUIDSYNTH_API int </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#a96b535f5acee6f807033d6cc9ccab555">fluid_synth_cc</a> (<a class="el" href="types_8h.html#ae265f10ae174a13afe010de50d87e1a4">fluid_synth_t</a> *synth, int chan, int ctrl, int val)</td></tr>
<tr class="memdesc:a96b535f5acee6f807033d6cc9ccab555"><td class="mdescLeft"> </td><td class="mdescRight">Send a MIDI controller event on a MIDI channel. <a href="#a96b535f5acee6f807033d6cc9ccab555">More...</a><br /></td></tr>
<tr class="separator:a96b535f5acee6f807033d6cc9ccab555"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac3eacfd879445107389aa2b7b44fa0ca"><td class="memItemLeft" align="right" valign="top">FLUIDSYNTH_API int </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#ac3eacfd879445107389aa2b7b44fa0ca">fluid_synth_get_cc</a> (<a class="el" href="types_8h.html#ae265f10ae174a13afe010de50d87e1a4">fluid_synth_t</a> *synth, int chan, int ctrl, int *pval)</td></tr>
<tr class="memdesc:ac3eacfd879445107389aa2b7b44fa0ca"><td class="mdescLeft"> </td><td class="mdescRight">Get current MIDI controller value on a MIDI channel. <a href="#ac3eacfd879445107389aa2b7b44fa0ca">More...</a><br /></td></tr>
<tr class="separator:ac3eacfd879445107389aa2b7b44fa0ca"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a28f34d0493b102ac4b99c021257b5b5e"><td class="memItemLeft" align="right" valign="top">FLUIDSYNTH_API int </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#a28f34d0493b102ac4b99c021257b5b5e">fluid_synth_sysex</a> (<a class="el" href="types_8h.html#ae265f10ae174a13afe010de50d87e1a4">fluid_synth_t</a> *synth, const char *data, int len, char *response, int *response_len, int *handled, int dryrun)</td></tr>
<tr class="memdesc:a28f34d0493b102ac4b99c021257b5b5e"><td class="mdescLeft"> </td><td class="mdescRight">Process a MIDI SYSEX (system exclusive) message. <a href="#a28f34d0493b102ac4b99c021257b5b5e">More...</a><br /></td></tr>
<tr class="separator:a28f34d0493b102ac4b99c021257b5b5e"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad5341f8e7c86835b197628f84a2d2c90"><td class="memItemLeft" align="right" valign="top">FLUIDSYNTH_API int </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#ad5341f8e7c86835b197628f84a2d2c90">fluid_synth_pitch_bend</a> (<a class="el" href="types_8h.html#ae265f10ae174a13afe010de50d87e1a4">fluid_synth_t</a> *synth, int chan, int val)</td></tr>
<tr class="memdesc:ad5341f8e7c86835b197628f84a2d2c90"><td class="mdescLeft"> </td><td class="mdescRight">Set the MIDI pitch bend controller value on a MIDI channel. <a href="#ad5341f8e7c86835b197628f84a2d2c90">More...</a><br /></td></tr>
<tr class="separator:ad5341f8e7c86835b197628f84a2d2c90"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a24735d9a0c92630f30cbad5fe9b7353d"><td class="memItemLeft" align="right" valign="top">FLUIDSYNTH_API int </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#a24735d9a0c92630f30cbad5fe9b7353d">fluid_synth_get_pitch_bend</a> (<a class="el" href="types_8h.html#ae265f10ae174a13afe010de50d87e1a4">fluid_synth_t</a> *synth, int chan, int *ppitch_bend)</td></tr>
<tr class="memdesc:a24735d9a0c92630f30cbad5fe9b7353d"><td class="mdescLeft"> </td><td class="mdescRight">Get the MIDI pitch bend controller value on a MIDI channel. <a href="#a24735d9a0c92630f30cbad5fe9b7353d">More...</a><br /></td></tr>
<tr class="separator:a24735d9a0c92630f30cbad5fe9b7353d"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:adb4df1ba450816d42ef40a16b2993549"><td class="memItemLeft" align="right" valign="top">FLUIDSYNTH_API int </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#adb4df1ba450816d42ef40a16b2993549">fluid_synth_pitch_wheel_sens</a> (<a class="el" href="types_8h.html#ae265f10ae174a13afe010de50d87e1a4">fluid_synth_t</a> *synth, int chan, int val)</td></tr>
<tr class="memdesc:adb4df1ba450816d42ef40a16b2993549"><td class="mdescLeft"> </td><td class="mdescRight">Set MIDI pitch wheel sensitivity on a MIDI channel. <a href="#adb4df1ba450816d42ef40a16b2993549">More...</a><br /></td></tr>
<tr class="separator:adb4df1ba450816d42ef40a16b2993549"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:afa1c6c8d98c068154678bf29e6c7f32b"><td class="memItemLeft" align="right" valign="top">FLUIDSYNTH_API int </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#afa1c6c8d98c068154678bf29e6c7f32b">fluid_synth_get_pitch_wheel_sens</a> (<a class="el" href="types_8h.html#ae265f10ae174a13afe010de50d87e1a4">fluid_synth_t</a> *synth, int chan, int *pval)</td></tr>
<tr class="memdesc:afa1c6c8d98c068154678bf29e6c7f32b"><td class="mdescLeft"> </td><td class="mdescRight">Get MIDI pitch wheel sensitivity on a MIDI channel. <a href="#afa1c6c8d98c068154678bf29e6c7f32b">More...</a><br /></td></tr>
<tr class="separator:afa1c6c8d98c068154678bf29e6c7f32b"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aad8df89a90669268b6bee09da40088a6"><td class="memItemLeft" align="right" valign="top">FLUIDSYNTH_API int </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#aad8df89a90669268b6bee09da40088a6">fluid_synth_program_change</a> (<a class="el" href="types_8h.html#ae265f10ae174a13afe010de50d87e1a4">fluid_synth_t</a> *synth, int chan, int program)</td></tr>
<tr class="memdesc:aad8df89a90669268b6bee09da40088a6"><td class="mdescLeft"> </td><td class="mdescRight">Send a program change event on a MIDI channel. <a href="#aad8df89a90669268b6bee09da40088a6">More...</a><br /></td></tr>
<tr class="separator:aad8df89a90669268b6bee09da40088a6"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a908d5ea45d97d17757a8a3bda504fd44"><td class="memItemLeft" align="right" valign="top">FLUIDSYNTH_API int </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#a908d5ea45d97d17757a8a3bda504fd44">fluid_synth_channel_pressure</a> (<a class="el" href="types_8h.html#ae265f10ae174a13afe010de50d87e1a4">fluid_synth_t</a> *synth, int chan, int val)</td></tr>
<tr class="memdesc:a908d5ea45d97d17757a8a3bda504fd44"><td class="mdescLeft"> </td><td class="mdescRight">Set the MIDI channel pressure controller value. <a href="#a908d5ea45d97d17757a8a3bda504fd44">More...</a><br /></td></tr>
<tr class="separator:a908d5ea45d97d17757a8a3bda504fd44"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a97b0f45f00922a46b1c1961d5b1f8cb5"><td class="memItemLeft" align="right" valign="top">FLUIDSYNTH_API int </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#a97b0f45f00922a46b1c1961d5b1f8cb5">fluid_synth_bank_select</a> (<a class="el" href="types_8h.html#ae265f10ae174a13afe010de50d87e1a4">fluid_synth_t</a> *synth, int chan, unsigned int bank)</td></tr>
<tr class="memdesc:a97b0f45f00922a46b1c1961d5b1f8cb5"><td class="mdescLeft"> </td><td class="mdescRight">Set instrument bank number on a MIDI channel. <a href="#a97b0f45f00922a46b1c1961d5b1f8cb5">More...</a><br /></td></tr>
<tr class="separator:a97b0f45f00922a46b1c1961d5b1f8cb5"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:addc8179bfc47d467956ed26f14793775"><td class="memItemLeft" align="right" valign="top">FLUIDSYNTH_API int </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#addc8179bfc47d467956ed26f14793775">fluid_synth_sfont_select</a> (<a class="el" href="types_8h.html#ae265f10ae174a13afe010de50d87e1a4">fluid_synth_t</a> *synth, int chan, unsigned int sfont_id)</td></tr>
<tr class="memdesc:addc8179bfc47d467956ed26f14793775"><td class="mdescLeft"> </td><td class="mdescRight">Set SoundFont ID on a MIDI channel. <a href="#addc8179bfc47d467956ed26f14793775">More...</a><br /></td></tr>
<tr class="separator:addc8179bfc47d467956ed26f14793775"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac783362b155fc9c3997f7fd3cf9b1d7f"><td class="memItemLeft" align="right" valign="top">FLUIDSYNTH_API int </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#ac783362b155fc9c3997f7fd3cf9b1d7f">fluid_synth_program_select</a> (<a class="el" href="types_8h.html#ae265f10ae174a13afe010de50d87e1a4">fluid_synth_t</a> *synth, int chan, unsigned int sfont_id, unsigned int bank_num, unsigned int preset_num)</td></tr>
<tr class="memdesc:ac783362b155fc9c3997f7fd3cf9b1d7f"><td class="mdescLeft"> </td><td class="mdescRight">Select an instrument on a MIDI channel by SoundFont ID, bank and program numbers. <a href="#ac783362b155fc9c3997f7fd3cf9b1d7f">More...</a><br /></td></tr>
<tr class="separator:ac783362b155fc9c3997f7fd3cf9b1d7f"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a38d8dc2f680024ce927f01424c13d32b"><td class="memItemLeft" align="right" valign="top">FLUIDSYNTH_API int </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#a38d8dc2f680024ce927f01424c13d32b">fluid_synth_program_select_by_sfont_name</a> (<a class="el" href="types_8h.html#ae265f10ae174a13afe010de50d87e1a4">fluid_synth_t</a> *synth, int chan, const char *sfont_name, unsigned int bank_num, unsigned int preset_num)</td></tr>
<tr class="memdesc:a38d8dc2f680024ce927f01424c13d32b"><td class="mdescLeft"> </td><td class="mdescRight">Select an instrument on a MIDI channel by SoundFont name, bank and program numbers. <a href="#a38d8dc2f680024ce927f01424c13d32b">More...</a><br /></td></tr>
<tr class="separator:a38d8dc2f680024ce927f01424c13d32b"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af8771f60cfb9f4b352fa7423621d35e5"><td class="memItemLeft" align="right" valign="top">FLUIDSYNTH_API int </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#af8771f60cfb9f4b352fa7423621d35e5">fluid_synth_get_program</a> (<a class="el" href="types_8h.html#ae265f10ae174a13afe010de50d87e1a4">fluid_synth_t</a> *synth, int chan, unsigned int *sfont_id, unsigned int *bank_num, unsigned int *preset_num)</td></tr>
<tr class="memdesc:af8771f60cfb9f4b352fa7423621d35e5"><td class="mdescLeft"> </td><td class="mdescRight">Get current SoundFont ID, bank number and program number for a MIDI channel. <a href="#af8771f60cfb9f4b352fa7423621d35e5">More...</a><br /></td></tr>
<tr class="separator:af8771f60cfb9f4b352fa7423621d35e5"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5541af149bb98e0eaaf91f5d3419cb10"><td class="memItemLeft" align="right" valign="top">FLUIDSYNTH_API int </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#a5541af149bb98e0eaaf91f5d3419cb10">fluid_synth_unset_program</a> (<a class="el" href="types_8h.html#ae265f10ae174a13afe010de50d87e1a4">fluid_synth_t</a> *synth, int chan)</td></tr>
<tr class="memdesc:a5541af149bb98e0eaaf91f5d3419cb10"><td class="mdescLeft"> </td><td class="mdescRight">Set the preset of a MIDI channel to an unassigned state. <a href="#a5541af149bb98e0eaaf91f5d3419cb10">More...</a><br /></td></tr>
<tr class="separator:a5541af149bb98e0eaaf91f5d3419cb10"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a80f40cdecd1db919d2a0ba80f10907e6"><td class="memItemLeft" align="right" valign="top">FLUIDSYNTH_API FLUID_DEPRECATED int </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#a80f40cdecd1db919d2a0ba80f10907e6">fluid_synth_get_channel_info</a> (<a class="el" href="types_8h.html#ae265f10ae174a13afe010de50d87e1a4">fluid_synth_t</a> *synth, int chan, <a class="el" href="types_8h.html#a85c72fd0aa9b4fb3c6b98445362f754a">fluid_synth_channel_info_t</a> *info)</td></tr>
<tr class="memdesc:a80f40cdecd1db919d2a0ba80f10907e6"><td class="mdescLeft"> </td><td class="mdescRight">Get information on the currently selected preset on a MIDI channel. <a href="#a80f40cdecd1db919d2a0ba80f10907e6">More...</a><br /></td></tr>
<tr class="separator:a80f40cdecd1db919d2a0ba80f10907e6"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab8ab8f57ab6efedd6c371894c42a10f7"><td class="memItemLeft" align="right" valign="top">FLUIDSYNTH_API int </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#ab8ab8f57ab6efedd6c371894c42a10f7">fluid_synth_program_reset</a> (<a class="el" href="types_8h.html#ae265f10ae174a13afe010de50d87e1a4">fluid_synth_t</a> *synth)</td></tr>
<tr class="memdesc:ab8ab8f57ab6efedd6c371894c42a10f7"><td class="mdescLeft"> </td><td class="mdescRight">Resend a bank select and a program change for every channel and assign corresponding instruments. <a href="#ab8ab8f57ab6efedd6c371894c42a10f7">More...</a><br /></td></tr>
<tr class="separator:ab8ab8f57ab6efedd6c371894c42a10f7"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3783aa3a825dfd81208d37039b6d2906"><td class="memItemLeft" align="right" valign="top">FLUIDSYNTH_API int </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#a3783aa3a825dfd81208d37039b6d2906">fluid_synth_system_reset</a> (<a class="el" href="types_8h.html#ae265f10ae174a13afe010de50d87e1a4">fluid_synth_t</a> *synth)</td></tr>
<tr class="memdesc:a3783aa3a825dfd81208d37039b6d2906"><td class="mdescLeft"> </td><td class="mdescRight">Send MIDI system reset command (big red 'panic' button), turns off notes and resets controllers. <a href="#a3783aa3a825dfd81208d37039b6d2906">More...</a><br /></td></tr>
<tr class="separator:a3783aa3a825dfd81208d37039b6d2906"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:adbb52488f8256709416cc568c18201ed"><td class="memItemLeft" align="right" valign="top">FLUIDSYNTH_API int </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#adbb52488f8256709416cc568c18201ed">fluid_synth_all_notes_off</a> (<a class="el" href="types_8h.html#ae265f10ae174a13afe010de50d87e1a4">fluid_synth_t</a> *synth, int chan)</td></tr>
<tr class="memdesc:adbb52488f8256709416cc568c18201ed"><td class="mdescLeft"> </td><td class="mdescRight">Turn off all notes on a MIDI channel (put them into release phase). <a href="#adbb52488f8256709416cc568c18201ed">More...</a><br /></td></tr>
<tr class="separator:adbb52488f8256709416cc568c18201ed"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a8083050f25987b96e7883798085b5a7c"><td class="memItemLeft" align="right" valign="top">FLUIDSYNTH_API int </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#a8083050f25987b96e7883798085b5a7c">fluid_synth_all_sounds_off</a> (<a class="el" href="types_8h.html#ae265f10ae174a13afe010de50d87e1a4">fluid_synth_t</a> *synth, int chan)</td></tr>
<tr class="memdesc:a8083050f25987b96e7883798085b5a7c"><td class="mdescLeft"> </td><td class="mdescRight">Immediately stop all notes on a MIDI channel (skips release phase). <a href="#a8083050f25987b96e7883798085b5a7c">More...</a><br /></td></tr>
<tr class="separator:a8083050f25987b96e7883798085b5a7c"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a55af07ef3c725366ac8c77d1d3f032c9"><td class="memItemLeft" align="right" valign="top">FLUIDSYNTH_API int </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#a55af07ef3c725366ac8c77d1d3f032c9">fluid_synth_set_channel_type</a> (<a class="el" href="types_8h.html#ae265f10ae174a13afe010de50d87e1a4">fluid_synth_t</a> *synth, int chan, int type)</td></tr>
<tr class="memdesc:a55af07ef3c725366ac8c77d1d3f032c9"><td class="mdescLeft"> </td><td class="mdescRight">Set midi channel type. <a href="#a55af07ef3c725366ac8c77d1d3f032c9">More...</a><br /></td></tr>
<tr class="separator:a55af07ef3c725366ac8c77d1d3f032c9"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3fba596ce8f5f4c0e54d8013348e80c4"><td class="memItemLeft" align="right" valign="top">FLUIDSYNTH_API <a class="el" href="types_8h.html#a985e5ee05f433da841127750f67a4723">fluid_preset_t</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#a3fba596ce8f5f4c0e54d8013348e80c4">fluid_synth_get_channel_preset</a> (<a class="el" href="types_8h.html#ae265f10ae174a13afe010de50d87e1a4">fluid_synth_t</a> *synth, int chan)</td></tr>
<tr class="memdesc:a3fba596ce8f5f4c0e54d8013348e80c4"><td class="mdescLeft"> </td><td class="mdescRight">Get active preset on a MIDI channel. <a href="#a3fba596ce8f5f4c0e54d8013348e80c4">More...</a><br /></td></tr>
<tr class="separator:a3fba596ce8f5f4c0e54d8013348e80c4"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac467475b877fa4c831cfe496c5801d25"><td class="memItemLeft" align="right" valign="top">FLUIDSYNTH_API int </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#ac467475b877fa4c831cfe496c5801d25">fluid_synth_start</a> (<a class="el" href="types_8h.html#ae265f10ae174a13afe010de50d87e1a4">fluid_synth_t</a> *synth, unsigned int id, <a class="el" href="types_8h.html#a985e5ee05f433da841127750f67a4723">fluid_preset_t</a> *preset, int audio_chan, int midi_chan, int key, int vel)</td></tr>
<tr class="memdesc:ac467475b877fa4c831cfe496c5801d25"><td class="mdescLeft"> </td><td class="mdescRight">Create and start voices using a preset and a MIDI note on event. <a href="#ac467475b877fa4c831cfe496c5801d25">More...</a><br /></td></tr>
<tr class="separator:ac467475b877fa4c831cfe496c5801d25"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a159e0f4c860e9d9828baa8365d8accb8"><td class="memItemLeft" align="right" valign="top">FLUIDSYNTH_API int </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#a159e0f4c860e9d9828baa8365d8accb8">fluid_synth_stop</a> (<a class="el" href="types_8h.html#ae265f10ae174a13afe010de50d87e1a4">fluid_synth_t</a> *synth, unsigned int id)</td></tr>
<tr class="memdesc:a159e0f4c860e9d9828baa8365d8accb8"><td class="mdescLeft"> </td><td class="mdescRight">Stop notes for a given note event voice ID. <a href="#a159e0f4c860e9d9828baa8365d8accb8">More...</a><br /></td></tr>
<tr class="separator:a159e0f4c860e9d9828baa8365d8accb8"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aaf9376cf7189f9c64da5ffdeed85c9c4"><td class="memItemLeft" align="right" valign="top">FLUIDSYNTH_API int </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#aaf9376cf7189f9c64da5ffdeed85c9c4">fluid_synth_sfload</a> (<a class="el" href="types_8h.html#ae265f10ae174a13afe010de50d87e1a4">fluid_synth_t</a> *synth, const char *filename, int reset_presets)</td></tr>
<tr class="memdesc:aaf9376cf7189f9c64da5ffdeed85c9c4"><td class="mdescLeft"> </td><td class="mdescRight">Load a SoundFont file (filename is interpreted by SoundFont loaders). <a href="#aaf9376cf7189f9c64da5ffdeed85c9c4">More...</a><br /></td></tr>
<tr class="separator:aaf9376cf7189f9c64da5ffdeed85c9c4"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a578273544b162af97633430b5c9b23ae"><td class="memItemLeft" align="right" valign="top">FLUIDSYNTH_API int </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#a578273544b162af97633430b5c9b23ae">fluid_synth_sfreload</a> (<a class="el" href="types_8h.html#ae265f10ae174a13afe010de50d87e1a4">fluid_synth_t</a> *synth, unsigned int id)</td></tr>
<tr class="memdesc:a578273544b162af97633430b5c9b23ae"><td class="mdescLeft"> </td><td class="mdescRight">Reload a SoundFont. <a href="#a578273544b162af97633430b5c9b23ae">More...</a><br /></td></tr>
<tr class="separator:a578273544b162af97633430b5c9b23ae"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a212bb602e9022c8d8cdb4bc5957f7693"><td class="memItemLeft" align="right" valign="top">FLUIDSYNTH_API int </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#a212bb602e9022c8d8cdb4bc5957f7693">fluid_synth_sfunload</a> (<a class="el" href="types_8h.html#ae265f10ae174a13afe010de50d87e1a4">fluid_synth_t</a> *synth, unsigned int id, int reset_presets)</td></tr>
<tr class="memdesc:a212bb602e9022c8d8cdb4bc5957f7693"><td class="mdescLeft"> </td><td class="mdescRight">Unload a SoundFont. <a href="#a212bb602e9022c8d8cdb4bc5957f7693">More...</a><br /></td></tr>
<tr class="separator:a212bb602e9022c8d8cdb4bc5957f7693"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af97291d30d6ff54a475f7446f181e6f7"><td class="memItemLeft" align="right" valign="top">FLUIDSYNTH_API int </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#af97291d30d6ff54a475f7446f181e6f7">fluid_synth_add_sfont</a> (<a class="el" href="types_8h.html#ae265f10ae174a13afe010de50d87e1a4">fluid_synth_t</a> *synth, <a class="el" href="types_8h.html#aa6c18288f76608acbb10b80a153f4ab8">fluid_sfont_t</a> *sfont)</td></tr>
<tr class="memdesc:af97291d30d6ff54a475f7446f181e6f7"><td class="mdescLeft"> </td><td class="mdescRight">Add a SoundFont. <a href="#af97291d30d6ff54a475f7446f181e6f7">More...</a><br /></td></tr>
<tr class="separator:af97291d30d6ff54a475f7446f181e6f7"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a0770cc4681deb524d1ed7d80695b635c"><td class="memItemLeft" align="right" valign="top">FLUIDSYNTH_API void </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#a0770cc4681deb524d1ed7d80695b635c">fluid_synth_remove_sfont</a> (<a class="el" href="types_8h.html#ae265f10ae174a13afe010de50d87e1a4">fluid_synth_t</a> *synth, <a class="el" href="types_8h.html#aa6c18288f76608acbb10b80a153f4ab8">fluid_sfont_t</a> *sfont)</td></tr>
<tr class="memdesc:a0770cc4681deb524d1ed7d80695b635c"><td class="mdescLeft"> </td><td class="mdescRight">Remove a SoundFont from the SoundFont stack without deleting it. <a href="#a0770cc4681deb524d1ed7d80695b635c">More...</a><br /></td></tr>
<tr class="separator:a0770cc4681deb524d1ed7d80695b635c"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac35b806250626f65253007dbd6e20ce3"><td class="memItemLeft" align="right" valign="top">FLUIDSYNTH_API int </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#ac35b806250626f65253007dbd6e20ce3">fluid_synth_sfcount</a> (<a class="el" href="types_8h.html#ae265f10ae174a13afe010de50d87e1a4">fluid_synth_t</a> *synth)</td></tr>
<tr class="memdesc:ac35b806250626f65253007dbd6e20ce3"><td class="mdescLeft"> </td><td class="mdescRight">Count number of loaded SoundFont files. <a href="#ac35b806250626f65253007dbd6e20ce3">More...</a><br /></td></tr>
<tr class="separator:ac35b806250626f65253007dbd6e20ce3"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a063116a030b8c66f0b3d55b432a91df3"><td class="memItemLeft" align="right" valign="top">FLUIDSYNTH_API <a class="el" href="types_8h.html#aa6c18288f76608acbb10b80a153f4ab8">fluid_sfont_t</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#a063116a030b8c66f0b3d55b432a91df3">fluid_synth_get_sfont</a> (<a class="el" href="types_8h.html#ae265f10ae174a13afe010de50d87e1a4">fluid_synth_t</a> *synth, unsigned int num)</td></tr>
<tr class="memdesc:a063116a030b8c66f0b3d55b432a91df3"><td class="mdescLeft"> </td><td class="mdescRight">Get SoundFont by index. <a href="#a063116a030b8c66f0b3d55b432a91df3">More...</a><br /></td></tr>
<tr class="separator:a063116a030b8c66f0b3d55b432a91df3"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a91156321a0db48db56f851c2282f424f"><td class="memItemLeft" align="right" valign="top">FLUIDSYNTH_API <a class="el" href="types_8h.html#aa6c18288f76608acbb10b80a153f4ab8">fluid_sfont_t</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#a91156321a0db48db56f851c2282f424f">fluid_synth_get_sfont_by_id</a> (<a class="el" href="types_8h.html#ae265f10ae174a13afe010de50d87e1a4">fluid_synth_t</a> *synth, unsigned int id)</td></tr>
<tr class="memdesc:a91156321a0db48db56f851c2282f424f"><td class="mdescLeft"> </td><td class="mdescRight">Get SoundFont by ID. <a href="#a91156321a0db48db56f851c2282f424f">More...</a><br /></td></tr>
<tr class="separator:a91156321a0db48db56f851c2282f424f"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5856acea557bb30b8c8cfbaf7bd008c6"><td class="memItemLeft" align="right" valign="top">FLUIDSYNTH_API <a class="el" href="types_8h.html#aa6c18288f76608acbb10b80a153f4ab8">fluid_sfont_t</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#a5856acea557bb30b8c8cfbaf7bd008c6">fluid_synth_get_sfont_by_name</a> (<a class="el" href="types_8h.html#ae265f10ae174a13afe010de50d87e1a4">fluid_synth_t</a> *synth, const char *name)</td></tr>
<tr class="memdesc:a5856acea557bb30b8c8cfbaf7bd008c6"><td class="mdescLeft"> </td><td class="mdescRight">Get SoundFont by name. <a href="#a5856acea557bb30b8c8cfbaf7bd008c6">More...</a><br /></td></tr>
<tr class="separator:a5856acea557bb30b8c8cfbaf7bd008c6"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a8b533b00ff0884d3a2bb3f61abfe7682"><td class="memItemLeft" align="right" valign="top">FLUIDSYNTH_API int </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#a8b533b00ff0884d3a2bb3f61abfe7682">fluid_synth_set_bank_offset</a> (<a class="el" href="types_8h.html#ae265f10ae174a13afe010de50d87e1a4">fluid_synth_t</a> *synth, int sfont_id, int offset)</td></tr>
<tr class="memdesc:a8b533b00ff0884d3a2bb3f61abfe7682"><td class="mdescLeft"> </td><td class="mdescRight">Offset the bank numbers of a loaded SoundFont, i.e. subtract <code>offset</code> from any bank number when assigning instruments. <a href="#a8b533b00ff0884d3a2bb3f61abfe7682">More...</a><br /></td></tr>
<tr class="separator:a8b533b00ff0884d3a2bb3f61abfe7682"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aea24f9786739a695aaf6403316bf820f"><td class="memItemLeft" align="right" valign="top">FLUIDSYNTH_API int </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#aea24f9786739a695aaf6403316bf820f">fluid_synth_get_bank_offset</a> (<a class="el" href="types_8h.html#ae265f10ae174a13afe010de50d87e1a4">fluid_synth_t</a> *synth, int sfont_id)</td></tr>
<tr class="memdesc:aea24f9786739a695aaf6403316bf820f"><td class="mdescLeft"> </td><td class="mdescRight">Get bank offset of a loaded SoundFont. <a href="#aea24f9786739a695aaf6403316bf820f">More...</a><br /></td></tr>
<tr class="separator:aea24f9786739a695aaf6403316bf820f"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9740cb53a1cc10887694cbca5f800dc1"><td class="memItemLeft" align="right" valign="top">FLUIDSYNTH_API void </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#a9740cb53a1cc10887694cbca5f800dc1">fluid_synth_set_reverb</a> (<a class="el" href="types_8h.html#ae265f10ae174a13afe010de50d87e1a4">fluid_synth_t</a> *synth, double roomsize, double damping, double width, double level)</td></tr>
<tr class="memdesc:a9740cb53a1cc10887694cbca5f800dc1"><td class="mdescLeft"> </td><td class="mdescRight">Set reverb parameters. <a href="#a9740cb53a1cc10887694cbca5f800dc1">More...</a><br /></td></tr>
<tr class="separator:a9740cb53a1cc10887694cbca5f800dc1"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad51c73aec209c54c7810bede73e3a786"><td class="memItemLeft" align="right" valign="top">FLUIDSYNTH_API void </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#ad51c73aec209c54c7810bede73e3a786">fluid_synth_set_reverb_on</a> (<a class="el" href="types_8h.html#ae265f10ae174a13afe010de50d87e1a4">fluid_synth_t</a> *synth, int on)</td></tr>
<tr class="memdesc:ad51c73aec209c54c7810bede73e3a786"><td class="mdescLeft"> </td><td class="mdescRight">Enable or disable reverb effect. <a href="#ad51c73aec209c54c7810bede73e3a786">More...</a><br /></td></tr>
<tr class="separator:ad51c73aec209c54c7810bede73e3a786"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:acb772ddf5fb47051b414af8ec0ac6d7d"><td class="memItemLeft" align="right" valign="top">FLUIDSYNTH_API double </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#acb772ddf5fb47051b414af8ec0ac6d7d">fluid_synth_get_reverb_roomsize</a> (<a class="el" href="types_8h.html#ae265f10ae174a13afe010de50d87e1a4">fluid_synth_t</a> *synth)</td></tr>
<tr class="memdesc:acb772ddf5fb47051b414af8ec0ac6d7d"><td class="mdescLeft"> </td><td class="mdescRight">Get reverb room size. <a href="#acb772ddf5fb47051b414af8ec0ac6d7d">More...</a><br /></td></tr>
<tr class="separator:acb772ddf5fb47051b414af8ec0ac6d7d"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad3f4b80a68a2700df98dd84dc7697468"><td class="memItemLeft" align="right" valign="top">FLUIDSYNTH_API double </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#ad3f4b80a68a2700df98dd84dc7697468">fluid_synth_get_reverb_damp</a> (<a class="el" href="types_8h.html#ae265f10ae174a13afe010de50d87e1a4">fluid_synth_t</a> *synth)</td></tr>
<tr class="memdesc:ad3f4b80a68a2700df98dd84dc7697468"><td class="mdescLeft"> </td><td class="mdescRight">Get reverb damping. <a href="#ad3f4b80a68a2700df98dd84dc7697468">More...</a><br /></td></tr>
<tr class="separator:ad3f4b80a68a2700df98dd84dc7697468"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a84dd4c9d18b187e35e1837c77babcf93"><td class="memItemLeft" align="right" valign="top">FLUIDSYNTH_API double </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#a84dd4c9d18b187e35e1837c77babcf93">fluid_synth_get_reverb_level</a> (<a class="el" href="types_8h.html#ae265f10ae174a13afe010de50d87e1a4">fluid_synth_t</a> *synth)</td></tr>
<tr class="memdesc:a84dd4c9d18b187e35e1837c77babcf93"><td class="mdescLeft"> </td><td class="mdescRight">Get reverb level. <a href="#a84dd4c9d18b187e35e1837c77babcf93">More...</a><br /></td></tr>
<tr class="separator:a84dd4c9d18b187e35e1837c77babcf93"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac4e6a3d238ee266e60c05d07cc907779"><td class="memItemLeft" align="right" valign="top">FLUIDSYNTH_API double </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#ac4e6a3d238ee266e60c05d07cc907779">fluid_synth_get_reverb_width</a> (<a class="el" href="types_8h.html#ae265f10ae174a13afe010de50d87e1a4">fluid_synth_t</a> *synth)</td></tr>
<tr class="memdesc:ac4e6a3d238ee266e60c05d07cc907779"><td class="mdescLeft"> </td><td class="mdescRight">Get reverb width. <a href="#ac4e6a3d238ee266e60c05d07cc907779">More...</a><br /></td></tr>
<tr class="separator:ac4e6a3d238ee266e60c05d07cc907779"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:afe63e59d53c6c4990bbf3fa9211189aa"><td class="memItemLeft" align="right" valign="top">FLUIDSYNTH_API void </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#afe63e59d53c6c4990bbf3fa9211189aa">fluid_synth_set_chorus</a> (<a class="el" href="types_8h.html#ae265f10ae174a13afe010de50d87e1a4">fluid_synth_t</a> *synth, int nr, double level, double speed, double depth_ms, int type)</td></tr>
<tr class="memdesc:afe63e59d53c6c4990bbf3fa9211189aa"><td class="mdescLeft"> </td><td class="mdescRight">Set chorus parameters. <a href="#afe63e59d53c6c4990bbf3fa9211189aa">More...</a><br /></td></tr>
<tr class="separator:afe63e59d53c6c4990bbf3fa9211189aa"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2a7b8da44aab1ab7516410e60d92018d"><td class="memItemLeft" align="right" valign="top">FLUIDSYNTH_API void </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#a2a7b8da44aab1ab7516410e60d92018d">fluid_synth_set_chorus_on</a> (<a class="el" href="types_8h.html#ae265f10ae174a13afe010de50d87e1a4">fluid_synth_t</a> *synth, int on)</td></tr>
<tr class="memdesc:a2a7b8da44aab1ab7516410e60d92018d"><td class="mdescLeft"> </td><td class="mdescRight">Enable or disable chorus effect. <a href="#a2a7b8da44aab1ab7516410e60d92018d">More...</a><br /></td></tr>
<tr class="separator:a2a7b8da44aab1ab7516410e60d92018d"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:abff8943c65c7edcb8b230cf97666664c"><td class="memItemLeft" align="right" valign="top">FLUIDSYNTH_API int </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#abff8943c65c7edcb8b230cf97666664c">fluid_synth_get_chorus_nr</a> (<a class="el" href="types_8h.html#ae265f10ae174a13afe010de50d87e1a4">fluid_synth_t</a> *synth)</td></tr>
<tr class="memdesc:abff8943c65c7edcb8b230cf97666664c"><td class="mdescLeft"> </td><td class="mdescRight">Get chorus voice number (delay line count) value. <a href="#abff8943c65c7edcb8b230cf97666664c">More...</a><br /></td></tr>
<tr class="separator:abff8943c65c7edcb8b230cf97666664c"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad3ee4162ff6ed6f1c333fbabdced92d6"><td class="memItemLeft" align="right" valign="top">FLUIDSYNTH_API double </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#ad3ee4162ff6ed6f1c333fbabdced92d6">fluid_synth_get_chorus_level</a> (<a class="el" href="types_8h.html#ae265f10ae174a13afe010de50d87e1a4">fluid_synth_t</a> *synth)</td></tr>
<tr class="memdesc:ad3ee4162ff6ed6f1c333fbabdced92d6"><td class="mdescLeft"> </td><td class="mdescRight">Get chorus level. <a href="#ad3ee4162ff6ed6f1c333fbabdced92d6">More...</a><br /></td></tr>
<tr class="separator:ad3ee4162ff6ed6f1c333fbabdced92d6"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa3d1496f89cdd227450e10f5c496d65e"><td class="memItemLeft" align="right" valign="top">FLUIDSYNTH_API double </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#aa3d1496f89cdd227450e10f5c496d65e">fluid_synth_get_chorus_speed_Hz</a> (<a class="el" href="types_8h.html#ae265f10ae174a13afe010de50d87e1a4">fluid_synth_t</a> *synth)</td></tr>
<tr class="memdesc:aa3d1496f89cdd227450e10f5c496d65e"><td class="mdescLeft"> </td><td class="mdescRight">Get chorus speed in Hz. <a href="#aa3d1496f89cdd227450e10f5c496d65e">More...</a><br /></td></tr>
<tr class="separator:aa3d1496f89cdd227450e10f5c496d65e"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa49fd6a29d99b11d5c6b9007a5beb0af"><td class="memItemLeft" align="right" valign="top">FLUIDSYNTH_API double </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#aa49fd6a29d99b11d5c6b9007a5beb0af">fluid_synth_get_chorus_depth_ms</a> (<a class="el" href="types_8h.html#ae265f10ae174a13afe010de50d87e1a4">fluid_synth_t</a> *synth)</td></tr>
<tr class="memdesc:aa49fd6a29d99b11d5c6b9007a5beb0af"><td class="mdescLeft"> </td><td class="mdescRight">Get chorus depth. <a href="#aa49fd6a29d99b11d5c6b9007a5beb0af">More...</a><br /></td></tr>
<tr class="separator:aa49fd6a29d99b11d5c6b9007a5beb0af"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a6304857a25b46954b1950256a0c09f50"><td class="memItemLeft" align="right" valign="top">FLUIDSYNTH_API int </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#a6304857a25b46954b1950256a0c09f50">fluid_synth_get_chorus_type</a> (<a class="el" href="types_8h.html#ae265f10ae174a13afe010de50d87e1a4">fluid_synth_t</a> *synth)</td></tr>
<tr class="memdesc:a6304857a25b46954b1950256a0c09f50"><td class="mdescLeft"> </td><td class="mdescRight">Get chorus waveform type. <a href="#a6304857a25b46954b1950256a0c09f50">More...</a><br /></td></tr>
<tr class="separator:a6304857a25b46954b1950256a0c09f50"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a0f0d3d99a9cad711442c86244c990f52"><td class="memItemLeft" align="right" valign="top">FLUIDSYNTH_API int </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#a0f0d3d99a9cad711442c86244c990f52">fluid_synth_count_midi_channels</a> (<a class="el" href="types_8h.html#ae265f10ae174a13afe010de50d87e1a4">fluid_synth_t</a> *synth)</td></tr>
<tr class="memdesc:a0f0d3d99a9cad711442c86244c990f52"><td class="mdescLeft"> </td><td class="mdescRight">Get the total count of MIDI channels. <a href="#a0f0d3d99a9cad711442c86244c990f52">More...</a><br /></td></tr>
<tr class="separator:a0f0d3d99a9cad711442c86244c990f52"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a119dce1af0c68f5bc06a17fdd6fab2f3"><td class="memItemLeft" align="right" valign="top">FLUIDSYNTH_API int </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#a119dce1af0c68f5bc06a17fdd6fab2f3">fluid_synth_count_audio_channels</a> (<a class="el" href="types_8h.html#ae265f10ae174a13afe010de50d87e1a4">fluid_synth_t</a> *synth)</td></tr>
<tr class="memdesc:a119dce1af0c68f5bc06a17fdd6fab2f3"><td class="mdescLeft"> </td><td class="mdescRight">Get the total count of audio channels. <a href="#a119dce1af0c68f5bc06a17fdd6fab2f3">More...</a><br /></td></tr>
<tr class="separator:a119dce1af0c68f5bc06a17fdd6fab2f3"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:abeb57e262972fd7610f37e5c902f35a2"><td class="memItemLeft" align="right" valign="top">FLUIDSYNTH_API int </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#abeb57e262972fd7610f37e5c902f35a2">fluid_synth_count_audio_groups</a> (<a class="el" href="types_8h.html#ae265f10ae174a13afe010de50d87e1a4">fluid_synth_t</a> *synth)</td></tr>
<tr class="memdesc:abeb57e262972fd7610f37e5c902f35a2"><td class="mdescLeft"> </td><td class="mdescRight">Get the total number of allocated audio channels. <a href="#abeb57e262972fd7610f37e5c902f35a2">More...</a><br /></td></tr>
<tr class="separator:abeb57e262972fd7610f37e5c902f35a2"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2e20e06d129a1f54f039a4ef7335ffff"><td class="memItemLeft" align="right" valign="top">FLUIDSYNTH_API int </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#a2e20e06d129a1f54f039a4ef7335ffff">fluid_synth_count_effects_channels</a> (<a class="el" href="types_8h.html#ae265f10ae174a13afe010de50d87e1a4">fluid_synth_t</a> *synth)</td></tr>
<tr class="memdesc:a2e20e06d129a1f54f039a4ef7335ffff"><td class="mdescLeft"> </td><td class="mdescRight">Get the total number of allocated effects channels. <a href="#a2e20e06d129a1f54f039a4ef7335ffff">More...</a><br /></td></tr>
<tr class="separator:a2e20e06d129a1f54f039a4ef7335ffff"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab614bfeafc8b8b632cf1433f8dfce85a"><td class="memItemLeft" align="right" valign="top">FLUIDSYNTH_API void </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#ab614bfeafc8b8b632cf1433f8dfce85a">fluid_synth_set_sample_rate</a> (<a class="el" href="types_8h.html#ae265f10ae174a13afe010de50d87e1a4">fluid_synth_t</a> *synth, float sample_rate)</td></tr>
<tr class="memdesc:ab614bfeafc8b8b632cf1433f8dfce85a"><td class="mdescLeft"> </td><td class="mdescRight">Set sample rate of the synth. <a href="#ab614bfeafc8b8b632cf1433f8dfce85a">More...</a><br /></td></tr>
<tr class="separator:ab614bfeafc8b8b632cf1433f8dfce85a"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab202e6e37360759e48b066e6db96c4ae"><td class="memItemLeft" align="right" valign="top">FLUIDSYNTH_API void </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#ab202e6e37360759e48b066e6db96c4ae">fluid_synth_set_gain</a> (<a class="el" href="types_8h.html#ae265f10ae174a13afe010de50d87e1a4">fluid_synth_t</a> *synth, float gain)</td></tr>
<tr class="memdesc:ab202e6e37360759e48b066e6db96c4ae"><td class="mdescLeft"> </td><td class="mdescRight">Set synth output gain value. <a href="#ab202e6e37360759e48b066e6db96c4ae">More...</a><br /></td></tr>
<tr class="separator:ab202e6e37360759e48b066e6db96c4ae"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac71c76ca7145c0c2bb1d5d4bddb4ca9f"><td class="memItemLeft" align="right" valign="top">FLUIDSYNTH_API float </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#ac71c76ca7145c0c2bb1d5d4bddb4ca9f">fluid_synth_get_gain</a> (<a class="el" href="types_8h.html#ae265f10ae174a13afe010de50d87e1a4">fluid_synth_t</a> *synth)</td></tr>
<tr class="memdesc:ac71c76ca7145c0c2bb1d5d4bddb4ca9f"><td class="mdescLeft"> </td><td class="mdescRight">Get synth output gain value. <a href="#ac71c76ca7145c0c2bb1d5d4bddb4ca9f">More...</a><br /></td></tr>
<tr class="separator:ac71c76ca7145c0c2bb1d5d4bddb4ca9f"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab6cfd644bacad8ae3a408c8475116878"><td class="memItemLeft" align="right" valign="top">FLUIDSYNTH_API int </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#ab6cfd644bacad8ae3a408c8475116878">fluid_synth_set_polyphony</a> (<a class="el" href="types_8h.html#ae265f10ae174a13afe010de50d87e1a4">fluid_synth_t</a> *synth, int polyphony)</td></tr>
<tr class="memdesc:ab6cfd644bacad8ae3a408c8475116878"><td class="mdescLeft"> </td><td class="mdescRight">Set synthesizer polyphony (max number of voices). <a href="#ab6cfd644bacad8ae3a408c8475116878">More...</a><br /></td></tr>
<tr class="separator:ab6cfd644bacad8ae3a408c8475116878"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a20b59114a7e53fcbd8465666ba2790e2"><td class="memItemLeft" align="right" valign="top">FLUIDSYNTH_API int </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#a20b59114a7e53fcbd8465666ba2790e2">fluid_synth_get_polyphony</a> (<a class="el" href="types_8h.html#ae265f10ae174a13afe010de50d87e1a4">fluid_synth_t</a> *synth)</td></tr>
<tr class="memdesc:a20b59114a7e53fcbd8465666ba2790e2"><td class="mdescLeft"> </td><td class="mdescRight">Get current synthesizer polyphony (max number of voices). <a href="#a20b59114a7e53fcbd8465666ba2790e2">More...</a><br /></td></tr>
<tr class="separator:a20b59114a7e53fcbd8465666ba2790e2"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5d6f71e63f60df1a83e8490a867d8910"><td class="memItemLeft" align="right" valign="top">FLUIDSYNTH_API int </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#a5d6f71e63f60df1a83e8490a867d8910">fluid_synth_get_active_voice_count</a> (<a class="el" href="types_8h.html#ae265f10ae174a13afe010de50d87e1a4">fluid_synth_t</a> *synth)</td></tr>
<tr class="memdesc:a5d6f71e63f60df1a83e8490a867d8910"><td class="mdescLeft"> </td><td class="mdescRight">Get current number of active voices. <a href="#a5d6f71e63f60df1a83e8490a867d8910">More...</a><br /></td></tr>
<tr class="separator:a5d6f71e63f60df1a83e8490a867d8910"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab848da001621ea979f44b11e9befbc3c"><td class="memItemLeft" align="right" valign="top">FLUIDSYNTH_API int </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#ab848da001621ea979f44b11e9befbc3c">fluid_synth_get_internal_bufsize</a> (<a class="el" href="types_8h.html#ae265f10ae174a13afe010de50d87e1a4">fluid_synth_t</a> *synth)</td></tr>
<tr class="memdesc:ab848da001621ea979f44b11e9befbc3c"><td class="mdescLeft"> </td><td class="mdescRight">Get the internal synthesis buffer size value. <a href="#ab848da001621ea979f44b11e9befbc3c">More...</a><br /></td></tr>
<tr class="separator:ab848da001621ea979f44b11e9befbc3c"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4268f661c6b7f8552fdf5ed5bdfcddfc"><td class="memItemLeft" align="right" valign="top">FLUIDSYNTH_API int </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#a4268f661c6b7f8552fdf5ed5bdfcddfc">fluid_synth_set_interp_method</a> (<a class="el" href="types_8h.html#ae265f10ae174a13afe010de50d87e1a4">fluid_synth_t</a> *synth, int chan, int interp_method)</td></tr>
<tr class="memdesc:a4268f661c6b7f8552fdf5ed5bdfcddfc"><td class="mdescLeft"> </td><td class="mdescRight">Set synthesis interpolation method on one or all MIDI channels. <a href="#a4268f661c6b7f8552fdf5ed5bdfcddfc">More...</a><br /></td></tr>
<tr class="separator:a4268f661c6b7f8552fdf5ed5bdfcddfc"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae5d823189a618befba732ec679beac74"><td class="memItemLeft" align="right" valign="top">FLUIDSYNTH_API int </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#ae5d823189a618befba732ec679beac74">fluid_synth_set_gen</a> (<a class="el" href="types_8h.html#ae265f10ae174a13afe010de50d87e1a4">fluid_synth_t</a> *synth, int chan, int param, float value)</td></tr>
<tr class="memdesc:ae5d823189a618befba732ec679beac74"><td class="mdescLeft"> </td><td class="mdescRight">Set a SoundFont generator (effect) value on a MIDI channel in real-time. <a href="#ae5d823189a618befba732ec679beac74">More...</a><br /></td></tr>
<tr class="separator:ae5d823189a618befba732ec679beac74"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a473592b54847c90e359fa8c18edbc87d"><td class="memItemLeft" align="right" valign="top">FLUIDSYNTH_API FLUID_DEPRECATED int </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#a473592b54847c90e359fa8c18edbc87d">fluid_synth_set_gen2</a> (<a class="el" href="types_8h.html#ae265f10ae174a13afe010de50d87e1a4">fluid_synth_t</a> *synth, int chan, int param, float value, int absolute, int normalized)</td></tr>
<tr class="memdesc:a473592b54847c90e359fa8c18edbc87d"><td class="mdescLeft"> </td><td class="mdescRight">Set a SoundFont generator (effect) value on a MIDI channel in real-time. <a href="#a473592b54847c90e359fa8c18edbc87d">More...</a><br /></td></tr>
<tr class="separator:a473592b54847c90e359fa8c18edbc87d"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a77847dc600410fefcc229c8cf576fa54"><td class="memItemLeft" align="right" valign="top">FLUIDSYNTH_API float </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#a77847dc600410fefcc229c8cf576fa54">fluid_synth_get_gen</a> (<a class="el" href="types_8h.html#ae265f10ae174a13afe010de50d87e1a4">fluid_synth_t</a> *synth, int chan, int param)</td></tr>
<tr class="memdesc:a77847dc600410fefcc229c8cf576fa54"><td class="mdescLeft"> </td><td class="mdescRight">Get generator value assigned to a MIDI channel. <a href="#a77847dc600410fefcc229c8cf576fa54">More...</a><br /></td></tr>
<tr class="separator:a77847dc600410fefcc229c8cf576fa54"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a95ec45c4cbe9bd7ef92c2fef957a1717"><td class="memItemLeft" align="right" valign="top">FLUIDSYNTH_API FLUID_DEPRECATED int </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#a95ec45c4cbe9bd7ef92c2fef957a1717">fluid_synth_create_key_tuning</a> (<a class="el" href="types_8h.html#ae265f10ae174a13afe010de50d87e1a4">fluid_synth_t</a> *synth, int bank, int prog, const char *name, const double *pitch)</td></tr>
<tr class="memdesc:a95ec45c4cbe9bd7ef92c2fef957a1717"><td class="mdescLeft"> </td><td class="mdescRight">Set the tuning of the entire MIDI note scale. <a href="#a95ec45c4cbe9bd7ef92c2fef957a1717">More...</a><br /></td></tr>
<tr class="separator:a95ec45c4cbe9bd7ef92c2fef957a1717"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a82eea41553b546ec063c2dc840ca711d"><td class="memItemLeft" align="right" valign="top">FLUIDSYNTH_API int </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#a82eea41553b546ec063c2dc840ca711d">fluid_synth_activate_key_tuning</a> (<a class="el" href="types_8h.html#ae265f10ae174a13afe010de50d87e1a4">fluid_synth_t</a> *synth, int bank, int prog, const char *name, const double *pitch, int apply)</td></tr>
<tr class="memdesc:a82eea41553b546ec063c2dc840ca711d"><td class="mdescLeft"> </td><td class="mdescRight">Set the tuning of the entire MIDI note scale. <a href="#a82eea41553b546ec063c2dc840ca711d">More...</a><br /></td></tr>
<tr class="separator:a82eea41553b546ec063c2dc840ca711d"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa431e627a9e322982d2c1fafe8e2abcc"><td class="memItemLeft" align="right" valign="top">FLUIDSYNTH_API FLUID_DEPRECATED int </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#aa431e627a9e322982d2c1fafe8e2abcc">fluid_synth_create_octave_tuning</a> (<a class="el" href="types_8h.html#ae265f10ae174a13afe010de50d87e1a4">fluid_synth_t</a> *synth, int bank, int prog, const char *name, const double *pitch)</td></tr>
<tr class="memdesc:aa431e627a9e322982d2c1fafe8e2abcc"><td class="mdescLeft"> </td><td class="mdescRight">Apply an octave tuning to every octave in the MIDI note scale. <a href="#aa431e627a9e322982d2c1fafe8e2abcc">More...</a><br /></td></tr>
<tr class="separator:aa431e627a9e322982d2c1fafe8e2abcc"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a50ffe674e0e4ae9c778cfe41eabf110b"><td class="memItemLeft" align="right" valign="top">FLUIDSYNTH_API int </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#a50ffe674e0e4ae9c778cfe41eabf110b">fluid_synth_activate_octave_tuning</a> (<a class="el" href="types_8h.html#ae265f10ae174a13afe010de50d87e1a4">fluid_synth_t</a> *synth, int bank, int prog, const char *name, const double *pitch, int apply)</td></tr>
<tr class="memdesc:a50ffe674e0e4ae9c778cfe41eabf110b"><td class="mdescLeft"> </td><td class="mdescRight">Activate an octave tuning on every octave in the MIDI note scale. <a href="#a50ffe674e0e4ae9c778cfe41eabf110b">More...</a><br /></td></tr>
<tr class="separator:a50ffe674e0e4ae9c778cfe41eabf110b"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a06f6053f5eed13b59132fc7255f24ef0"><td class="memItemLeft" align="right" valign="top">FLUIDSYNTH_API int </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#a06f6053f5eed13b59132fc7255f24ef0">fluid_synth_tune_notes</a> (<a class="el" href="types_8h.html#ae265f10ae174a13afe010de50d87e1a4">fluid_synth_t</a> *synth, int bank, int prog, int len, const int *keys, const double *pitch, int apply)</td></tr>
<tr class="memdesc:a06f6053f5eed13b59132fc7255f24ef0"><td class="mdescLeft"> </td><td class="mdescRight">Set tuning values for one or more MIDI notes for an existing tuning. <a href="#a06f6053f5eed13b59132fc7255f24ef0">More...</a><br /></td></tr>
<tr class="separator:a06f6053f5eed13b59132fc7255f24ef0"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:abfba46ba4cd550119fb6618f461dc99c"><td class="memItemLeft" align="right" valign="top">FLUIDSYNTH_API FLUID_DEPRECATED int </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#abfba46ba4cd550119fb6618f461dc99c">fluid_synth_select_tuning</a> (<a class="el" href="types_8h.html#ae265f10ae174a13afe010de50d87e1a4">fluid_synth_t</a> *synth, int chan, int bank, int prog)</td></tr>
<tr class="memdesc:abfba46ba4cd550119fb6618f461dc99c"><td class="mdescLeft"> </td><td class="mdescRight">Select a tuning scale on a MIDI channel. <a href="#abfba46ba4cd550119fb6618f461dc99c">More...</a><br /></td></tr>
<tr class="separator:abfba46ba4cd550119fb6618f461dc99c"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad370b81904a65188981c45ee840204d3"><td class="memItemLeft" align="right" valign="top">FLUIDSYNTH_API int </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#ad370b81904a65188981c45ee840204d3">fluid_synth_activate_tuning</a> (<a class="el" href="types_8h.html#ae265f10ae174a13afe010de50d87e1a4">fluid_synth_t</a> *synth, int chan, int bank, int prog, int apply)</td></tr>
<tr class="memdesc:ad370b81904a65188981c45ee840204d3"><td class="mdescLeft"> </td><td class="mdescRight">Activate a tuning scale on a MIDI channel. <a href="#ad370b81904a65188981c45ee840204d3">More...</a><br /></td></tr>
<tr class="separator:ad370b81904a65188981c45ee840204d3"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a6fbd7080c3b88840a05d99add3d5b279"><td class="memItemLeft" align="right" valign="top">FLUIDSYNTH_API FLUID_DEPRECATED int </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#a6fbd7080c3b88840a05d99add3d5b279">fluid_synth_reset_tuning</a> (<a class="el" href="types_8h.html#ae265f10ae174a13afe010de50d87e1a4">fluid_synth_t</a> *synth, int chan)</td></tr>
<tr class="memdesc:a6fbd7080c3b88840a05d99add3d5b279"><td class="mdescLeft"> </td><td class="mdescRight">Clear tuning scale on a MIDI channel (set it to the default equal tempered scale). <a href="#a6fbd7080c3b88840a05d99add3d5b279">More...</a><br /></td></tr>
<tr class="separator:a6fbd7080c3b88840a05d99add3d5b279"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a7d3c0e7ce720c8f1b8a2de2f950d438f"><td class="memItemLeft" align="right" valign="top">FLUIDSYNTH_API int </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#a7d3c0e7ce720c8f1b8a2de2f950d438f">fluid_synth_deactivate_tuning</a> (<a class="el" href="types_8h.html#ae265f10ae174a13afe010de50d87e1a4">fluid_synth_t</a> *synth, int chan, int apply)</td></tr>
<tr class="memdesc:a7d3c0e7ce720c8f1b8a2de2f950d438f"><td class="mdescLeft"> </td><td class="mdescRight">Clear tuning scale on a MIDI channel (use default equal tempered scale). <a href="#a7d3c0e7ce720c8f1b8a2de2f950d438f">More...</a><br /></td></tr>
<tr class="separator:a7d3c0e7ce720c8f1b8a2de2f950d438f"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a6633072257adee63b7f5901038a4a596"><td class="memItemLeft" align="right" valign="top">FLUIDSYNTH_API void </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#a6633072257adee63b7f5901038a4a596">fluid_synth_tuning_iteration_start</a> (<a class="el" href="types_8h.html#ae265f10ae174a13afe010de50d87e1a4">fluid_synth_t</a> *synth)</td></tr>
<tr class="memdesc:a6633072257adee63b7f5901038a4a596"><td class="mdescLeft"> </td><td class="mdescRight">Start tuning iteration. <a href="#a6633072257adee63b7f5901038a4a596">More...</a><br /></td></tr>
<tr class="separator:a6633072257adee63b7f5901038a4a596"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aabba63d39b1ff489e0f12831c7e1d986"><td class="memItemLeft" align="right" valign="top">FLUIDSYNTH_API int </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#aabba63d39b1ff489e0f12831c7e1d986">fluid_synth_tuning_iteration_next</a> (<a class="el" href="types_8h.html#ae265f10ae174a13afe010de50d87e1a4">fluid_synth_t</a> *synth, int *bank, int *prog)</td></tr>
<tr class="memdesc:aabba63d39b1ff489e0f12831c7e1d986"><td class="mdescLeft"> </td><td class="mdescRight">Advance to next tuning. <a href="#aabba63d39b1ff489e0f12831c7e1d986">More...</a><br /></td></tr>
<tr class="separator:aabba63d39b1ff489e0f12831c7e1d986"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a09a491acce286532beb9e44fe858f0ce"><td class="memItemLeft" align="right" valign="top">FLUIDSYNTH_API int </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#a09a491acce286532beb9e44fe858f0ce">fluid_synth_tuning_dump</a> (<a class="el" href="types_8h.html#ae265f10ae174a13afe010de50d87e1a4">fluid_synth_t</a> *synth, int bank, int prog, char *name, int len, double *pitch)</td></tr>
<tr class="memdesc:a09a491acce286532beb9e44fe858f0ce"><td class="mdescLeft"> </td><td class="mdescRight">Get the entire note tuning for a given MIDI bank and program. <a href="#a09a491acce286532beb9e44fe858f0ce">More...</a><br /></td></tr>
<tr class="separator:a09a491acce286532beb9e44fe858f0ce"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a28e932a61ee59fa46d5a1b2047872995"><td class="memItemLeft" align="right" valign="top">FLUIDSYNTH_API double </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#a28e932a61ee59fa46d5a1b2047872995">fluid_synth_get_cpu_load</a> (<a class="el" href="types_8h.html#ae265f10ae174a13afe010de50d87e1a4">fluid_synth_t</a> *synth)</td></tr>
<tr class="memdesc:a28e932a61ee59fa46d5a1b2047872995"><td class="mdescLeft"> </td><td class="mdescRight">Get the synth CPU load value. <a href="#a28e932a61ee59fa46d5a1b2047872995">More...</a><br /></td></tr>
<tr class="separator:a28e932a61ee59fa46d5a1b2047872995"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aaba52d30861484b5c17a6ec91cacc9b1"><td class="memItemLeft" align="right" valign="top">FLUIDSYNTH_API char * </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#aaba52d30861484b5c17a6ec91cacc9b1">fluid_synth_error</a> (<a class="el" href="types_8h.html#ae265f10ae174a13afe010de50d87e1a4">fluid_synth_t</a> *synth)</td></tr>
<tr class="memdesc:aaba52d30861484b5c17a6ec91cacc9b1"><td class="mdescLeft"> </td><td class="mdescRight">Get a textual representation of the last error. <a href="#aaba52d30861484b5c17a6ec91cacc9b1">More...</a><br /></td></tr>
<tr class="separator:aaba52d30861484b5c17a6ec91cacc9b1"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a0d7c287342eb282d4ec63ea7f35cd791"><td class="memItemLeft" align="right" valign="top">FLUIDSYNTH_API int </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#a0d7c287342eb282d4ec63ea7f35cd791">fluid_synth_write_s16</a> (<a class="el" href="types_8h.html#ae265f10ae174a13afe010de50d87e1a4">fluid_synth_t</a> *synth, int len, void *lout, int loff, int lincr, void *rout, int roff, int rincr)</td></tr>
<tr class="memdesc:a0d7c287342eb282d4ec63ea7f35cd791"><td class="mdescLeft"> </td><td class="mdescRight">Synthesize a block of 16 bit audio samples to audio buffers. <a href="#a0d7c287342eb282d4ec63ea7f35cd791">More...</a><br /></td></tr>
<tr class="separator:a0d7c287342eb282d4ec63ea7f35cd791"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac86a79a943fc5d5d485ccc5a5fcad03d"><td class="memItemLeft" align="right" valign="top">FLUIDSYNTH_API int </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#ac86a79a943fc5d5d485ccc5a5fcad03d">fluid_synth_write_float</a> (<a class="el" href="types_8h.html#ae265f10ae174a13afe010de50d87e1a4">fluid_synth_t</a> *synth, int len, void *lout, int loff, int lincr, void *rout, int roff, int rincr)</td></tr>
<tr class="memdesc:ac86a79a943fc5d5d485ccc5a5fcad03d"><td class="mdescLeft"> </td><td class="mdescRight">Synthesize a block of floating point audio samples to audio buffers. <a href="#ac86a79a943fc5d5d485ccc5a5fcad03d">More...</a><br /></td></tr>
<tr class="separator:ac86a79a943fc5d5d485ccc5a5fcad03d"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2e394b30908133eed97fe903d5654bac"><td class="memItemLeft" align="right" valign="top">FLUIDSYNTH_API int </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#a2e394b30908133eed97fe903d5654bac">fluid_synth_nwrite_float</a> (<a class="el" href="types_8h.html#ae265f10ae174a13afe010de50d87e1a4">fluid_synth_t</a> *synth, int len, float **left, float **right, float **fx_left, float **fx_right)</td></tr>
<tr class="memdesc:a2e394b30908133eed97fe903d5654bac"><td class="mdescLeft"> </td><td class="mdescRight">Synthesize a block of floating point audio to separate audio buffers (multichannel rendering). <a href="#a2e394b30908133eed97fe903d5654bac">More...</a><br /></td></tr>
<tr class="separator:a2e394b30908133eed97fe903d5654bac"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1ac90e2732aa652679305f78cbd66670"><td class="memItemLeft" align="right" valign="top">FLUIDSYNTH_API int </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#a1ac90e2732aa652679305f78cbd66670">fluid_synth_process</a> (<a class="el" href="types_8h.html#ae265f10ae174a13afe010de50d87e1a4">fluid_synth_t</a> *synth, int len, int nin, float **in, int nout, float **out)</td></tr>
<tr class="memdesc:a1ac90e2732aa652679305f78cbd66670"><td class="mdescLeft"> </td><td class="mdescRight">Synthesize floating point audio to audio buffers. <a href="#a1ac90e2732aa652679305f78cbd66670">More...</a><br /></td></tr>
<tr class="separator:a1ac90e2732aa652679305f78cbd66670"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4b35dcb250542b8e60cf5dccd0ec1589"><td class="memItemLeft" align="right" valign="top">FLUIDSYNTH_API void </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#a4b35dcb250542b8e60cf5dccd0ec1589">fluid_synth_add_sfloader</a> (<a class="el" href="types_8h.html#ae265f10ae174a13afe010de50d87e1a4">fluid_synth_t</a> *synth, <a class="el" href="types_8h.html#ad3e880056d2262e48468719757b3f5e6">fluid_sfloader_t</a> *loader)</td></tr>
<tr class="memdesc:a4b35dcb250542b8e60cf5dccd0ec1589"><td class="mdescLeft"> </td><td class="mdescRight">Add a SoundFont loader to the synth. <a href="#a4b35dcb250542b8e60cf5dccd0ec1589">More...</a><br /></td></tr>
<tr class="separator:a4b35dcb250542b8e60cf5dccd0ec1589"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a005a5e8e6b34eb5a44b41d9020ce32d5"><td class="memItemLeft" align="right" valign="top">FLUIDSYNTH_API <a class="el" href="types_8h.html#a5123ae5ef2d7806475267380c33604c3">fluid_voice_t</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#a005a5e8e6b34eb5a44b41d9020ce32d5">fluid_synth_alloc_voice</a> (<a class="el" href="types_8h.html#ae265f10ae174a13afe010de50d87e1a4">fluid_synth_t</a> *synth, <a class="el" href="types_8h.html#abf9174d452679ca1a4ee7d693fb773cf">fluid_sample_t</a> *sample, int channum, int key, int vel)</td></tr>
<tr class="memdesc:a005a5e8e6b34eb5a44b41d9020ce32d5"><td class="mdescLeft"> </td><td class="mdescRight">Allocate a synthesis voice. <a href="#a005a5e8e6b34eb5a44b41d9020ce32d5">More...</a><br /></td></tr>
<tr class="separator:a005a5e8e6b34eb5a44b41d9020ce32d5"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9b301e2ce86ca1315e5d6e7e44deba5f"><td class="memItemLeft" align="right" valign="top">FLUIDSYNTH_API void </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#a9b301e2ce86ca1315e5d6e7e44deba5f">fluid_synth_start_voice</a> (<a class="el" href="types_8h.html#ae265f10ae174a13afe010de50d87e1a4">fluid_synth_t</a> *synth, <a class="el" href="types_8h.html#a5123ae5ef2d7806475267380c33604c3">fluid_voice_t</a> *voice)</td></tr>
<tr class="memdesc:a9b301e2ce86ca1315e5d6e7e44deba5f"><td class="mdescLeft"> </td><td class="mdescRight">Activate a voice previously allocated with <a class="el" href="synth_8h.html#a005a5e8e6b34eb5a44b41d9020ce32d5" title="Allocate a synthesis voice. ">fluid_synth_alloc_voice()</a>. <a href="#a9b301e2ce86ca1315e5d6e7e44deba5f">More...</a><br /></td></tr>
<tr class="separator:a9b301e2ce86ca1315e5d6e7e44deba5f"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a167b297bf209c1b44c052000b21eac21"><td class="memItemLeft" align="right" valign="top">FLUIDSYNTH_API void </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#a167b297bf209c1b44c052000b21eac21">fluid_synth_get_voicelist</a> (<a class="el" href="types_8h.html#ae265f10ae174a13afe010de50d87e1a4">fluid_synth_t</a> *synth, <a class="el" href="types_8h.html#a5123ae5ef2d7806475267380c33604c3">fluid_voice_t</a> *buf[], int bufsize, int ID)</td></tr>
<tr class="memdesc:a167b297bf209c1b44c052000b21eac21"><td class="mdescLeft"> </td><td class="mdescRight">Get list of currently playing voices. <a href="#a167b297bf209c1b44c052000b21eac21">More...</a><br /></td></tr>
<tr class="separator:a167b297bf209c1b44c052000b21eac21"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a439e1175fa34123b3d0c96a0366d42dd"><td class="memItemLeft" align="right" valign="top">FLUIDSYNTH_API int </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#a439e1175fa34123b3d0c96a0366d42dd">fluid_synth_handle_midi_event</a> (void *data, <a class="el" href="types_8h.html#a61c72b76e3ee344637994c3071f74d94">fluid_midi_event_t</a> *event)</td></tr>
<tr class="memdesc:a439e1175fa34123b3d0c96a0366d42dd"><td class="mdescLeft"> </td><td class="mdescRight">Handle MIDI event from MIDI router, used as a callback function. <a href="#a439e1175fa34123b3d0c96a0366d42dd">More...</a><br /></td></tr>
<tr class="separator:a439e1175fa34123b3d0c96a0366d42dd"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a19e0147dddbfbd54a5c13c140c95608d"><td class="memItemLeft" align="right" valign="top">FLUIDSYNTH_API FLUID_DEPRECATED void </td><td class="memItemRight" valign="bottom"><a class="el" href="synth_8h.html#a19e0147dddbfbd54a5c13c140c95608d">fluid_synth_set_midi_router</a> (<a class="el" href="types_8h.html#ae265f10ae174a13afe010de50d87e1a4">fluid_synth_t</a> *synth, <a class="el" href="types_8h.html#aa57b4746220e24506a169f109875e4ad">fluid_midi_router_t</a> *router)</td></tr>
<tr class="memdesc:a19e0147dddbfbd54a5c13c140c95608d"><td class="mdescLeft"> </td><td class="mdescRight">Assign a MIDI router to a synth. <a href="#a19e0147dddbfbd54a5c13c140c95608d">More...</a><br /></td></tr>
<tr class="separator:a19e0147dddbfbd54a5c13c140c95608d"><td class="memSeparator" colspan="2"> </td></tr>
</table>
<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2>
<div class="textblock"><p>Embeddable SoundFont synthesizer. </p>
<p>You create a new synthesizer with <a class="el" href="synth_8h.html#a344f7369c0f57d30f72702d0c88e6178" title="Create new FluidSynth instance. ">new_fluid_synth()</a> and you destroy if with <a class="el" href="synth_8h.html#a585a63f3a25b9df17b82ae87f2d38cfc" title="Delete a FluidSynth instance. ">delete_fluid_synth()</a>. Use the settings structure to specify the synthesizer characteristics.</p>
<p>You have to load a SoundFont in order to hear any sound. For that you use the <a class="el" href="synth_8h.html#aaf9376cf7189f9c64da5ffdeed85c9c4" title="Load a SoundFont file (filename is interpreted by SoundFont loaders). ">fluid_synth_sfload()</a> function.</p>
<p>You can use the audio driver functions described below to open the audio device and create a background audio thread.</p>
<p>The API for sending MIDI events is probably what you expect: <a class="el" href="synth_8h.html#a4a98222fe1c36bfd598dc4cd89f4b75c" title="Send a note-on event to a FluidSynth object. ">fluid_synth_noteon()</a>, <a class="el" href="synth_8h.html#a5e8f96cacbc6460f7677a6191cbd4472" title="Send a note-off event to a FluidSynth object. ">fluid_synth_noteoff()</a>, ... </p>
</div><h2 class="groupheader">Macro Definition Documentation</h2>
<a id="a499506fd899e2bec84d48d911b4eb0ad"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a499506fd899e2bec84d48d911b4eb0ad">◆ </a></span>FLUID_INTERP_DEFAULT</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">#define FLUID_INTERP_DEFAULT   <a class="el" href="synth_8h.html#a4a2efef77b267500dd9c19c0dc9e4633a7c302900233f9b26a8d76f54fe11e024">FLUID_INTERP_4THORDER</a></td>
</tr>
</table>
</div><div class="memdoc">
<p>Default interpolation method from <a class="el" href="synth_8h.html#a4a2efef77b267500dd9c19c0dc9e4633" title="Synthesis interpolation method. ">fluid_interp</a>. </p>
</div>
</div>
<a id="a7192111999afd699b93f328949887347"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a7192111999afd699b93f328949887347">◆ </a></span>FLUID_INTERP_HIGHEST</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">#define FLUID_INTERP_HIGHEST   <a class="el" href="synth_8h.html#a4a2efef77b267500dd9c19c0dc9e4633a593125ae8ab8e8f1f1a1bb7bb3f71b02">FLUID_INTERP_7THORDER</a></td>
</tr>
</table>
</div><div class="memdoc">
<p>Highest interpolation method from <a class="el" href="synth_8h.html#a4a2efef77b267500dd9c19c0dc9e4633" title="Synthesis interpolation method. ">fluid_interp</a>. </p>
</div>
</div>
<h2 class="groupheader">Typedef Documentation</h2>
<a id="aaafffa6de4113b320c3b594aa004faa3"></a>
<h2 class="memtitle"><span class="permalink"><a href="#aaafffa6de4113b320c3b594aa004faa3">◆ </a></span>fluid_audio_callback_t</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">typedef int(* fluid_audio_callback_t) (<a class="el" href="types_8h.html#ae265f10ae174a13afe010de50d87e1a4">fluid_synth_t</a> *synth, int len, void *out1, int loff, int lincr, void *out2, int roff, int rincr)</td>
</tr>
</table>
</div><div class="memdoc">
<p>Type definition of the synthesizer's audio callback function. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">synth</td><td>FluidSynth instance </td></tr>
<tr><td class="paramname">len</td><td>Count of audio frames to synthesize </td></tr>
<tr><td class="paramname">out1</td><td>Array to store left channel of audio to </td></tr>
<tr><td class="paramname">loff</td><td>Offset index in 'out1' for first sample </td></tr>
<tr><td class="paramname">lincr</td><td>Increment between samples stored to 'out1' </td></tr>
<tr><td class="paramname">out2</td><td>Array to store right channel of audio to </td></tr>
<tr><td class="paramname">roff</td><td>Offset index in 'out2' for first sample </td></tr>
<tr><td class="paramname">rincr</td><td>Increment between samples stored to 'out2' </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<h2 class="groupheader">Enumeration Type Documentation</h2>
<a id="aada0747654fce5d0a758126fc3c99eb0"></a>
<h2 class="memtitle"><span class="permalink"><a href="#aada0747654fce5d0a758126fc3c99eb0">◆ </a></span>fluid_midi_channel_type</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">enum <a class="el" href="synth_8h.html#aada0747654fce5d0a758126fc3c99eb0">fluid_midi_channel_type</a></td>
</tr>
</table>
</div><div class="memdoc">
<p>The midi channel type used by <a class="el" href="synth_8h.html#a55af07ef3c725366ac8c77d1d3f032c9" title="Set midi channel type. ">fluid_synth_set_channel_type()</a> </p>
<table class="fieldtable">
<tr><th colspan="2">Enumerator</th></tr><tr><td class="fieldname"><a id="aada0747654fce5d0a758126fc3c99eb0aa81f75c5ad62a95bf62a276670542f57"></a>CHANNEL_TYPE_MELODIC </td><td class="fielddoc"><p>Melodic midi channel. </p>
</td></tr>
<tr><td class="fieldname"><a id="aada0747654fce5d0a758126fc3c99eb0a3b26ca93ed355e9b82f1b46b8d67ae91"></a>CHANNEL_TYPE_DRUM </td><td class="fielddoc"><p>Drum midi channel. </p>
</td></tr>
</table>
</div>
</div>
<a id="a96a2e0002fb015c8a32ccf287fba9264"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a96a2e0002fb015c8a32ccf287fba9264">◆ </a></span>fluid_chorus_mod</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">enum <a class="el" href="synth_8h.html#a96a2e0002fb015c8a32ccf287fba9264">fluid_chorus_mod</a></td>
</tr>
</table>
</div><div class="memdoc">
<p>Chorus modulation waveform type. </p>
<table class="fieldtable">
<tr><th colspan="2">Enumerator</th></tr><tr><td class="fieldname"><a id="a96a2e0002fb015c8a32ccf287fba9264a2d4792078c24ca8ed02bfee6c08251f7"></a>FLUID_CHORUS_MOD_SINE </td><td class="fielddoc"><p>Sine wave chorus modulation. </p>
</td></tr>
<tr><td class="fieldname"><a id="a96a2e0002fb015c8a32ccf287fba9264a064e550e31bc5cf9e164a790f3306f8e"></a>FLUID_CHORUS_MOD_TRIANGLE </td><td class="fielddoc"><p>Triangle wave chorus modulation. </p>
</td></tr>
</table>
</div>
</div>
<a id="a4a2efef77b267500dd9c19c0dc9e4633"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a4a2efef77b267500dd9c19c0dc9e4633">◆ </a></span>fluid_interp</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">enum <a class="el" href="synth_8h.html#a4a2efef77b267500dd9c19c0dc9e4633">fluid_interp</a></td>
</tr>
</table>
</div><div class="memdoc">
<p>Synthesis interpolation method. </p>
<table class="fieldtable">
<tr><th colspan="2">Enumerator</th></tr><tr><td class="fieldname"><a id="a4a2efef77b267500dd9c19c0dc9e4633a27d7b88910ec0601854ba9312ddfaff4"></a>FLUID_INTERP_NONE </td><td class="fielddoc"><p>No interpolation: Fastest, but questionable audio quality. </p>
</td></tr>
<tr><td class="fieldname"><a id="a4a2efef77b267500dd9c19c0dc9e4633a5c81597532f7e188b5aabc761ae49afd"></a>FLUID_INTERP_LINEAR </td><td class="fielddoc"><p>Straight-line interpolation: A bit slower, reasonable audio quality. </p>
</td></tr>
<tr><td class="fieldname"><a id="a4a2efef77b267500dd9c19c0dc9e4633a7c302900233f9b26a8d76f54fe11e024"></a>FLUID_INTERP_4THORDER </td><td class="fielddoc"><p>Fourth-order interpolation, good quality, the default. </p>
</td></tr>
<tr><td class="fieldname"><a id="a4a2efef77b267500dd9c19c0dc9e4633a593125ae8ab8e8f1f1a1bb7bb3f71b02"></a>FLUID_INTERP_7THORDER </td><td class="fielddoc"><p>Seventh-order interpolation. </p>
</td></tr>
</table>
</div>
</div>
<h2 class="groupheader">Function Documentation</h2>
<a id="a344f7369c0f57d30f72702d0c88e6178"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a344f7369c0f57d30f72702d0c88e6178">◆ </a></span>new_fluid_synth()</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">FLUIDSYNTH_API <a class="el" href="types_8h.html#ae265f10ae174a13afe010de50d87e1a4">fluid_synth_t</a>* new_fluid_synth </td>
<td>(</td>
<td class="paramtype"><a class="el" href="types_8h.html#aa363402d3c77333b0f070ba531d034ba">fluid_settings_t</a> * </td>
<td class="paramname"><em>settings</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Create new FluidSynth instance. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">settings</td><td>Configuration parameters to use (used directly). </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>New FluidSynth instance or NULL on error</dd></dl>
<dl class="section note"><dt>Note</dt><dd>The settings parameter is used directly and should not be modified or freed independently. </dd></dl>
<dl><dt><b>Examples: </b></dt><dd><a class="el" href="example_8c-example.html#a1">example.c</a>, <a class="el" href="fluidsynth_arpeggio_8c-example.html#a9">fluidsynth_arpeggio.c</a>, <a class="el" href="fluidsynth_fx_8c-example.html#a2">fluidsynth_fx.c</a>, <a class="el" href="fluidsynth_metronome_8c-example.html#a8">fluidsynth_metronome.c</a>, <a class="el" href="fluidsynth_register_adriver_8c-example.html#a4">fluidsynth_register_adriver.c</a>, and <a class="el" href="fluidsynth_simple_8c-example.html#a1">fluidsynth_simple.c</a>.</dd>
</dl>
<p class="reference">References <a class="el" href="synth_8h.html#a585a63f3a25b9df17b82ae87f2d38cfc">delete_fluid_synth()</a>, <a class="el" href="log_8h.html#aa341232c15addd9c336131984840ed9eabc0ff48d192b3b0fc721946ccf095d25">FLUID_ERR</a>, <a class="el" href="synth_8h.html#aae3fec0215b3bbf71451935094371513">FLUID_REVERB_DEFAULT_DAMP</a>, <a class="el" href="synth_8h.html#a5f437aa1f9ae5921405a2883d6fe4a29">FLUID_REVERB_DEFAULT_LEVEL</a>, <a class="el" href="synth_8h.html#acf299c8c0c8dd2912e05add80af2a9b0">FLUID_REVERB_DEFAULT_ROOMSIZE</a>, <a class="el" href="synth_8h.html#ad5c8f01f604fda90aba860f8cbe0d84a">FLUID_REVERB_DEFAULT_WIDTH</a>, <a class="el" href="settings_8h.html#a4a570095ef3de25e77f4dd9c574bc56c">fluid_settings_getint()</a>, <a class="el" href="settings_8h.html#a619c930e119a4a3889131d67293e2089">fluid_settings_getnum()</a>, <a class="el" href="settings_8h.html#a26e4192ab084382492589f2c5d8b2e2f">fluid_settings_setint()</a>, <a class="el" href="settings_8h.html#a2646edb018c961162845f1711503b597">fluid_settings_str_equal()</a>, <a class="el" href="synth_8h.html#a4b35dcb250542b8e60cf5dccd0ec1589">fluid_synth_add_sfloader()</a>, <a class="el" href="synth_8h.html#a2a7b8da44aab1ab7516410e60d92018d">fluid_synth_set_chorus_on()</a>, <a class="el" href="synth_8h.html#ad51c73aec209c54c7810bede73e3a786">fluid_synth_set_reverb_on()</a>, <a class="el" href="synth_8h.html#ab614bfeafc8b8b632cf1433f8dfce85a">fluid_synth_set_sample_rate()</a>, and <a class="el" href="log_8h.html#aa341232c15addd9c336131984840ed9ea394460be1ec74fce15e1ff683606df0f">FLUID_WARN</a>.</p>
</div>
</div>
<a id="a585a63f3a25b9df17b82ae87f2d38cfc"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a585a63f3a25b9df17b82ae87f2d38cfc">◆ </a></span>delete_fluid_synth()</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">FLUIDSYNTH_API int delete_fluid_synth </td>
<td>(</td>
<td class="paramtype"><a class="el" href="types_8h.html#ae265f10ae174a13afe010de50d87e1a4">fluid_synth_t</a> * </td>
<td class="paramname"><em>synth</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Delete a FluidSynth instance. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">synth</td><td>FluidSynth instance to delete </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>FLUID_OK</dd></dl>
<dl class="section note"><dt>Note</dt><dd>Other users of a synthesizer instance, such as audio and MIDI drivers, should be deleted prior to freeing the FluidSynth instance. </dd></dl>
<dl><dt><b>Examples: </b></dt><dd><a class="el" href="example_8c-example.html#a7">example.c</a>, <a class="el" href="fluidsynth_arpeggio_8c-example.html#a18">fluidsynth_arpeggio.c</a>, <a class="el" href="fluidsynth_fx_8c-example.html#a7">fluidsynth_fx.c</a>, <a class="el" href="fluidsynth_metronome_8c-example.html#a17">fluidsynth_metronome.c</a>, <a class="el" href="fluidsynth_register_adriver_8c-example.html#a7">fluidsynth_register_adriver.c</a>, and <a class="el" href="fluidsynth_simple_8c-example.html#a6">fluidsynth_simple.c</a>.</dd>
</dl>
<p class="reference">References <a class="el" href="misc_8h.html#ae4efb1c3ce0d550c922504adfb0fb886">FLUID_OK</a>, and <a class="el" href="voice_8h.html#accf9fe43f88c0139c81ce4208f4ecaa0">fluid_voice_is_playing()</a>.</p>
<p class="reference">Referenced by <a class="el" href="synth_8h.html#a344f7369c0f57d30f72702d0c88e6178">new_fluid_synth()</a>.</p>
</div>
</div>
<a id="ac836a7addc0bc214813f755fe9cea851"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ac836a7addc0bc214813f755fe9cea851">◆ </a></span>fluid_synth_get_settings()</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">FLUIDSYNTH_API <a class="el" href="types_8h.html#aa363402d3c77333b0f070ba531d034ba">fluid_settings_t</a>* fluid_synth_get_settings </td>
<td>(</td>
<td class="paramtype"><a class="el" href="types_8h.html#ae265f10ae174a13afe010de50d87e1a4">fluid_synth_t</a> * </td>
<td class="paramname"><em>synth</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Get settings assigned to a synth. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">synth</td><td>FluidSynth instance </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>FluidSynth settings which are assigned to the synth </dd></dl>
<p class="reference">References <a class="el" href="misc_8h.html#a90e8bdbc5a507bbfa5c45bac85a63a61">FLUID_FAILED</a>, <a class="el" href="settings_8h.html#aa2cf8ed808a4ce5fcfdfb208ea77811b">fluid_settings_dupstr()</a>, <a class="el" href="settings_8h.html#a4a570095ef3de25e77f4dd9c574bc56c">fluid_settings_getint()</a>, <a class="el" href="settings_8h.html#a619c930e119a4a3889131d67293e2089">fluid_settings_getnum()</a>, <a class="el" href="settings_8h.html#a26e4192ab084382492589f2c5d8b2e2f">fluid_settings_setint()</a>, <a class="el" href="settings_8h.html#a2a31fd030256303d4076df5abdd603e7">fluid_settings_setnum()</a>, and <a class="el" href="settings_8h.html#a855e6038c9946b206156eb1947746032">fluid_settings_setstr()</a>.</p>
</div>
</div>
<a id="a4a98222fe1c36bfd598dc4cd89f4b75c"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a4a98222fe1c36bfd598dc4cd89f4b75c">◆ </a></span>fluid_synth_noteon()</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">FLUIDSYNTH_API int fluid_synth_noteon </td>
<td>(</td>
<td class="paramtype"><a class="el" href="types_8h.html#ae265f10ae174a13afe010de50d87e1a4">fluid_synth_t</a> * </td>
<td class="paramname"><em>synth</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>chan</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>key</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>vel</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Send a note-on event to a FluidSynth object. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">synth</td><td>FluidSynth instance </td></tr>
<tr><td class="paramname">chan</td><td>MIDI channel number (0 to MIDI channel count - 1) </td></tr>
<tr><td class="paramname">key</td><td>MIDI note number (0-127) </td></tr>
<tr><td class="paramname">vel</td><td>MIDI velocity (0-127, 0=noteoff) </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>FLUID_OK on success, FLUID_FAILED otherwise </dd></dl>
<dl><dt><b>Examples: </b></dt><dd><a class="el" href="example_8c-example.html#a4">example.c</a>, <a class="el" href="fluidsynth_fx_8c-example.html#a5">fluidsynth_fx.c</a>, and <a class="el" href="fluidsynth_simple_8c-example.html#a4">fluidsynth_simple.c</a>.</dd>
</dl>
<p class="reference">References <a class="el" href="misc_8h.html#a90e8bdbc5a507bbfa5c45bac85a63a61">FLUID_FAILED</a>, and <a class="el" href="log_8h.html#aa341232c15addd9c336131984840ed9eadfa902517702f2dd8ae849b810175ac4">FLUID_INFO</a>.</p>
<p class="reference">Referenced by <a class="el" href="shell_8h.html#ac178bb25ddc28994932dd100e6b7ff3d">fluid_get_sysconf()</a>, <a class="el" href="seqbind_8h.html#ae18ee23fd409270c9da4f0cd5c557c3d">fluid_sequencer_register_fluidsynth()</a>, and <a class="el" href="synth_8h.html#a439e1175fa34123b3d0c96a0366d42dd">fluid_synth_handle_midi_event()</a>.</p>
</div>
</div>
<a id="a5e8f96cacbc6460f7677a6191cbd4472"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a5e8f96cacbc6460f7677a6191cbd4472">◆ </a></span>fluid_synth_noteoff()</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">FLUIDSYNTH_API int fluid_synth_noteoff </td>
<td>(</td>
<td class="paramtype"><a class="el" href="types_8h.html#ae265f10ae174a13afe010de50d87e1a4">fluid_synth_t</a> * </td>
<td class="paramname"><em>synth</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>chan</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>key</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Send a note-off event to a FluidSynth object. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">synth</td><td>FluidSynth instance </td></tr>
<tr><td class="paramname">chan</td><td>MIDI channel number (0 to MIDI channel count - 1) </td></tr>
<tr><td class="paramname">key</td><td>MIDI note number (0-127) </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>FLUID_OK on success, FLUID_FAILED otherwise (may just mean that no voices matched the note off event) </dd></dl>
<dl><dt><b>Examples: </b></dt><dd><a class="el" href="example_8c-example.html#a5">example.c</a>.</dd>
</dl>
<p class="reference">References <a class="el" href="misc_8h.html#a90e8bdbc5a507bbfa5c45bac85a63a61">FLUID_FAILED</a>, <a class="el" href="log_8h.html#aa341232c15addd9c336131984840ed9eadfa902517702f2dd8ae849b810175ac4">FLUID_INFO</a>, <a class="el" href="misc_8h.html#ae4efb1c3ce0d550c922504adfb0fb886">FLUID_OK</a>, <a class="el" href="voice_8h.html#a2794e73013c6d785a7f912972a1798b5">fluid_voice_get_channel()</a>, <a class="el" href="voice_8h.html#ac3611a42eadfa708f78851f35d2c7d03">fluid_voice_get_id()</a>, <a class="el" href="voice_8h.html#ad3ad3749dadea3c31beec5e3614ca51b">fluid_voice_get_key()</a>, <a class="el" href="voice_8h.html#a2d1e2d91b210ca21af5b39e4c2e93e20">fluid_voice_is_on()</a>, <a class="el" href="voice_8h.html#af5380a5512639e6611ae7b2076909bb4">fluid_voice_is_sostenuto()</a>, and <a class="el" href="voice_8h.html#ac5ebe017d7399cf1f3d4cf8b62cf0b00">fluid_voice_is_sustained()</a>.</p>
<p class="reference">Referenced by <a class="el" href="shell_8h.html#ac178bb25ddc28994932dd100e6b7ff3d">fluid_get_sysconf()</a>, <a class="el" href="seqbind_8h.html#ae18ee23fd409270c9da4f0cd5c557c3d">fluid_sequencer_register_fluidsynth()</a>, and <a class="el" href="synth_8h.html#a439e1175fa34123b3d0c96a0366d42dd">fluid_synth_handle_midi_event()</a>.</p>
</div>
</div>
<a id="a96b535f5acee6f807033d6cc9ccab555"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a96b535f5acee6f807033d6cc9ccab555">◆ </a></span>fluid_synth_cc()</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">FLUIDSYNTH_API int fluid_synth_cc </td>
<td>(</td>
<td class="paramtype"><a class="el" href="types_8h.html#ae265f10ae174a13afe010de50d87e1a4">fluid_synth_t</a> * </td>
<td class="paramname"><em>synth</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>chan</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>num</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>val</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Send a MIDI controller event on a MIDI channel. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">synth</td><td>FluidSynth instance </td></tr>
<tr><td class="paramname">chan</td><td>MIDI channel number (0 to MIDI channel count - 1) </td></tr>
<tr><td class="paramname">num</td><td>MIDI controller number (0-127) </td></tr>
<tr><td class="paramname">val</td><td>MIDI controller value (0-127) </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>FLUID_OK on success, FLUID_FAILED otherwise </dd></dl>
<p class="reference">References <a class="el" href="misc_8h.html#a90e8bdbc5a507bbfa5c45bac85a63a61">FLUID_FAILED</a>, <a class="el" href="log_8h.html#aa341232c15addd9c336131984840ed9eadfa902517702f2dd8ae849b810175ac4">FLUID_INFO</a>, <a class="el" href="misc_8h.html#ae4efb1c3ce0d550c922504adfb0fb886">FLUID_OK</a>, <a class="el" href="synth_8h.html#ad370b81904a65188981c45ee840204d3">fluid_synth_activate_tuning()</a>, <a class="el" href="gen_8h.html#ad17a24ae3b25f3b8cc5762f818eef9b4a5ffa8b961965bad3ec420e049e399c33">GEN_COARSETUNE</a>, <a class="el" href="gen_8h.html#ad17a24ae3b25f3b8cc5762f818eef9b4a68229fec83f8d5d62246d98c6868320d">GEN_FINETUNE</a>, and <a class="el" href="gen_8h.html#ad17a24ae3b25f3b8cc5762f818eef9b4a9c372c341b7b1a718f0016f40c615cf3">GEN_LAST</a>.</p>
<p class="reference">Referenced by <a class="el" href="shell_8h.html#ac178bb25ddc28994932dd100e6b7ff3d">fluid_get_sysconf()</a>, <a class="el" href="seqbind_8h.html#ae18ee23fd409270c9da4f0cd5c557c3d">fluid_sequencer_register_fluidsynth()</a>, and <a class="el" href="synth_8h.html#a439e1175fa34123b3d0c96a0366d42dd">fluid_synth_handle_midi_event()</a>.</p>
</div>
</div>
<a id="ac3eacfd879445107389aa2b7b44fa0ca"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ac3eacfd879445107389aa2b7b44fa0ca">◆ </a></span>fluid_synth_get_cc()</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">FLUIDSYNTH_API int fluid_synth_get_cc </td>
<td>(</td>
<td class="paramtype"><a class="el" href="types_8h.html#ae265f10ae174a13afe010de50d87e1a4">fluid_synth_t</a> * </td>
<td class="paramname"><em>synth</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>chan</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>num</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int * </td>
<td class="paramname"><em>pval</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Get current MIDI controller value on a MIDI channel. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">synth</td><td>FluidSynth instance </td></tr>
<tr><td class="paramname">chan</td><td>MIDI channel number (0 to MIDI channel count - 1) </td></tr>
<tr><td class="paramname">num</td><td>MIDI controller number (0-127) </td></tr>
<tr><td class="paramname">pval</td><td>Location to store MIDI controller value (0-127) </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>FLUID_OK on success, FLUID_FAILED otherwise </dd></dl>
<p class="reference">References <a class="el" href="misc_8h.html#a90e8bdbc5a507bbfa5c45bac85a63a61">FLUID_FAILED</a>, and <a class="el" href="misc_8h.html#ae4efb1c3ce0d550c922504adfb0fb886">FLUID_OK</a>.</p>
</div>
</div>
<a id="a28f34d0493b102ac4b99c021257b5b5e"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a28f34d0493b102ac4b99c021257b5b5e">◆ </a></span>fluid_synth_sysex()</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">FLUIDSYNTH_API int fluid_synth_sysex </td>
<td>(</td>
<td class="paramtype"><a class="el" href="types_8h.html#ae265f10ae174a13afe010de50d87e1a4">fluid_synth_t</a> * </td>
<td class="paramname"><em>synth</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const char * </td>
<td class="paramname"><em>data</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>len</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">char * </td>
<td class="paramname"><em>response</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int * </td>
<td class="paramname"><em>response_len</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int * </td>
<td class="paramname"><em>handled</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>dryrun</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Process a MIDI SYSEX (system exclusive) message. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">synth</td><td>FluidSynth instance </td></tr>
<tr><td class="paramname">data</td><td>Buffer containing SYSEX data (not including 0xF0 and 0xF7) </td></tr>
<tr><td class="paramname">len</td><td>Length of data in buffer </td></tr>
<tr><td class="paramname">response</td><td>Buffer to store response to or NULL to ignore </td></tr>
<tr><td class="paramname">response_len</td><td>IN/OUT parameter, in: size of response buffer, out: amount of data written to response buffer (if FLUID_FAILED is returned and this value is non-zero, it indicates the response buffer is too small) </td></tr>
<tr><td class="paramname">handled</td><td>Optional location to store boolean value if message was recognized and handled or not (set to TRUE if it was handled) </td></tr>
<tr><td class="paramname">dryrun</td><td>TRUE to just do a dry run but not actually execute the SYSEX command (useful for checking if a SYSEX message would be handled) </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>FLUID_OK on success, FLUID_FAILED otherwise </dd></dl>
<dl class="section since"><dt>Since</dt><dd>1.1.0 </dd></dl>
<p class="reference">References <a class="el" href="misc_8h.html#a90e8bdbc5a507bbfa5c45bac85a63a61">FLUID_FAILED</a>, <a class="el" href="misc_8h.html#ae4efb1c3ce0d550c922504adfb0fb886">FLUID_OK</a>, <a class="el" href="synth_8h.html#a50ffe674e0e4ae9c778cfe41eabf110b">fluid_synth_activate_octave_tuning()</a>, <a class="el" href="synth_8h.html#ad370b81904a65188981c45ee840204d3">fluid_synth_activate_tuning()</a>, <a class="el" href="synth_8h.html#a06f6053f5eed13b59132fc7255f24ef0">fluid_synth_tune_notes()</a>, and <a class="el" href="synth_8h.html#a09a491acce286532beb9e44fe858f0ce">fluid_synth_tuning_dump()</a>.</p>
<p class="reference">Referenced by <a class="el" href="synth_8h.html#a439e1175fa34123b3d0c96a0366d42dd">fluid_synth_handle_midi_event()</a>.</p>
</div>
</div>
<a id="ad5341f8e7c86835b197628f84a2d2c90"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ad5341f8e7c86835b197628f84a2d2c90">◆ </a></span>fluid_synth_pitch_bend()</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">FLUIDSYNTH_API int fluid_synth_pitch_bend </td>
<td>(</td>
<td class="paramtype"><a class="el" href="types_8h.html#ae265f10ae174a13afe010de50d87e1a4">fluid_synth_t</a> * </td>
<td class="paramname"><em>synth</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>chan</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>val</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">