-
Notifications
You must be signed in to change notification settings - Fork 266
/
Copy pathfluid_jack.c
800 lines (636 loc) · 22.9 KB
/
fluid_jack.c
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
/* FluidSynth - A Software Synthesizer
*
* Copyright (C) 2003 Peter Hanappe and others.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
* as published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free
* Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301, USA
*/
/* fluid_jack.c
*
* Driver for the JACK
*
* This code is derived from the simple_client example in the JACK
* source distribution. Many thanks to Paul Davis.
*
*/
#include "fluid_synth.h"
#include "fluid_adriver.h"
#include "fluid_mdriver.h"
#include "fluid_settings.h"
#if JACK_SUPPORT
#include <jack/jack.h>
#include <jack/midiport.h>
#include "fluid_lash.h"
typedef struct _fluid_jack_audio_driver_t fluid_jack_audio_driver_t;
typedef struct _fluid_jack_midi_driver_t fluid_jack_midi_driver_t;
/* Clients are shared for drivers using the same server. */
typedef struct
{
jack_client_t *client;
char *server; /* Jack server name used */
fluid_jack_audio_driver_t *audio_driver;
fluid_jack_midi_driver_t *midi_driver;
} fluid_jack_client_t;
/* Jack audio driver instance */
struct _fluid_jack_audio_driver_t
{
fluid_audio_driver_t driver;
fluid_jack_client_t *client_ref;
int audio_channels;
jack_port_t **output_ports;
int num_output_ports;
float **output_bufs;
jack_port_t **fx_ports;
int num_fx_ports;
float **fx_bufs;
fluid_audio_func_t callback;
void *data;
};
/* Jack MIDI driver instance */
struct _fluid_jack_midi_driver_t
{
fluid_midi_driver_t driver;
fluid_jack_client_t *client_ref;
int midi_port_count;
jack_port_t **midi_port; // array of midi port handles
fluid_midi_parser_t *parser;
};
static fluid_jack_client_t *new_fluid_jack_client(fluid_settings_t *settings,
int isaudio, void *driver);
static int fluid_jack_client_register_ports(void *driver, int isaudio,
jack_client_t *client,
fluid_settings_t *settings);
void fluid_jack_driver_shutdown(void *arg);
int fluid_jack_driver_srate(jack_nframes_t nframes, void *arg);
int fluid_jack_driver_bufsize(jack_nframes_t nframes, void *arg);
int fluid_jack_driver_process(jack_nframes_t nframes, void *arg);
static fluid_mutex_t last_client_mutex = FLUID_MUTEX_INIT; /* Probably not necessary, but just in case drivers are created by multiple threads */
static fluid_jack_client_t *last_client = NULL; /* Last unpaired client. For audio/MIDI driver pairing. */
void
fluid_jack_audio_driver_settings(fluid_settings_t *settings)
{
fluid_settings_register_str(settings, "audio.jack.id", "fluidsynth", 0);
fluid_settings_register_int(settings, "audio.jack.multi", 0, 0, 1, FLUID_HINT_TOGGLED);
fluid_settings_register_int(settings, "audio.jack.autoconnect", 0, 0, 1, FLUID_HINT_TOGGLED);
fluid_settings_register_str(settings, "audio.jack.server", "", 0);
}
/*
* Create Jack client as necessary, share clients of the same server.
* @param settings Settings object
* @param isaudio TRUE if audio driver, FALSE if MIDI
* @param driver fluid_jack_audio_driver_t or fluid_jack_midi_driver_t
* @param data The user data instance associated with the driver (fluid_synth_t for example)
* @return New or paired Audio/MIDI Jack client
*/
static fluid_jack_client_t *
new_fluid_jack_client(fluid_settings_t *settings, int isaudio, void *driver)
{
fluid_jack_client_t *client_ref = NULL;
char *server = NULL;
char *client_name;
char name[64];
if(fluid_settings_dupstr(settings, isaudio ? "audio.jack.server" /* ++ alloc server name */
: "midi.jack.server", &server) != FLUID_OK)
{
return NULL;
}
fluid_mutex_lock(last_client_mutex); /* ++ lock last_client */
/* If the last client uses the same server and is not the same type (audio or MIDI),
* then re-use the client. */
if(last_client &&
(last_client->server != NULL && server != NULL && FLUID_STRCMP(last_client->server, server) == 0) &&
((!isaudio && last_client->midi_driver != NULL) || (isaudio && last_client->audio_driver != NULL)))
{
client_ref = last_client;
last_client = NULL; /* No more pairing for this client */
/* Register ports */
if(fluid_jack_client_register_ports(driver, isaudio, client_ref->client, settings) != FLUID_OK)
{
goto error_recovery;
}
if(isaudio)
{
fluid_atomic_pointer_set(&client_ref->audio_driver, driver);
}
else
{
fluid_atomic_pointer_set(&client_ref->midi_driver, driver);
}
fluid_mutex_unlock(last_client_mutex); /* -- unlock last_client */
if(server)
{
FLUID_FREE(server);
}
return client_ref;
}
/* No existing client for this Jack server */
client_ref = FLUID_NEW(fluid_jack_client_t);
if(!client_ref)
{
FLUID_LOG(FLUID_ERR, "Out of memory");
goto error_recovery;
}
FLUID_MEMSET(client_ref, 0, sizeof(fluid_jack_client_t));
fluid_settings_dupstr(settings, isaudio ? "audio.jack.id" /* ++ alloc client name */
: "midi.jack.id", &client_name);
if(client_name != NULL && client_name[0] != 0)
{
FLUID_SNPRINTF(name, sizeof(name), "%s", client_name);
}
else
{
FLUID_STRNCPY(name, "fluidsynth", sizeof(name));
}
name[63] = '\0';
if(client_name)
{
FLUID_FREE(client_name); /* -- free client name */
}
/* Open a connection to the Jack server and use the server name if specified */
if(server && server[0] != '\0')
{
client_ref->client = jack_client_open(name, JackServerName, NULL, server);
}
else
{
client_ref->client = jack_client_open(name, JackNullOption, NULL);
}
if(!client_ref->client)
{
FLUID_LOG(FLUID_ERR, "Failed to connect to Jack server.");
goto error_recovery;
}
jack_set_process_callback(client_ref->client, fluid_jack_driver_process, client_ref);
jack_set_buffer_size_callback(client_ref->client, fluid_jack_driver_bufsize, client_ref);
jack_set_sample_rate_callback(client_ref->client, fluid_jack_driver_srate, client_ref);
jack_on_shutdown(client_ref->client, fluid_jack_driver_shutdown, client_ref);
/* Register ports */
if(fluid_jack_client_register_ports(driver, isaudio, client_ref->client, settings) != FLUID_OK)
{
goto error_recovery;
}
/* tell the JACK server that we are ready to roll */
if(jack_activate(client_ref->client))
{
FLUID_LOG(FLUID_ERR, "Failed to activate Jack client");
goto error_recovery;
}
/* tell the lash server our client name */
#ifdef LASH_ENABLED
{
int enable_lash = 0;
fluid_settings_getint(settings, "lash.enable", &enable_lash);
if(enable_lash)
{
fluid_lash_jack_client_name(fluid_lash_client, name);
}
}
#endif /* LASH_ENABLED */
client_ref->server = server; /* !! takes over allocation */
server = NULL; /* Set to NULL so it doesn't get freed below */
last_client = client_ref;
if(isaudio)
{
fluid_atomic_pointer_set(&client_ref->audio_driver, driver);
}
else
{
fluid_atomic_pointer_set(&client_ref->midi_driver, driver);
}
fluid_mutex_unlock(last_client_mutex); /* -- unlock last_client */
if(server)
{
FLUID_FREE(server);
}
return client_ref;
error_recovery:
fluid_mutex_unlock(last_client_mutex); /* -- unlock clients list */
if(server)
{
FLUID_FREE(server); /* -- free server name */
}
if(client_ref)
{
if(client_ref->client)
{
jack_client_close(client_ref->client);
}
FLUID_FREE(client_ref);
}
return NULL;
}
static int
fluid_jack_client_register_ports(void *driver, int isaudio, jack_client_t *client,
fluid_settings_t *settings)
{
fluid_jack_audio_driver_t *dev;
char name[64];
int multi;
int i;
int jack_srate;
double sample_rate;
if(!isaudio)
{
fluid_jack_midi_driver_t *dev = driver;
int midi_channels, ports;
fluid_settings_getint(settings, "synth.midi-channels", &midi_channels);
ports = midi_channels / 16;
if((dev->midi_port = FLUID_ARRAY(jack_port_t *, ports)) == NULL)
{
FLUID_LOG(FLUID_ERR, "Out of memory");
return FLUID_FAILED;
}
for(i = 0; i < ports; i++)
{
FLUID_SNPRINTF(name, sizeof(name), "midi_%02d", i);
dev->midi_port[i] = jack_port_register(client, name, JACK_DEFAULT_MIDI_TYPE,
JackPortIsInput | JackPortIsTerminal, 0);
if(dev->midi_port[i] == NULL)
{
FLUID_LOG(FLUID_ERR, "Failed to create Jack MIDI port");
FLUID_FREE(dev->midi_port);
dev->midi_port = NULL;
return FLUID_FAILED;
}
}
dev->midi_port_count = ports;
return FLUID_OK;
}
dev = driver;
fluid_settings_getint(settings, "audio.jack.multi", &multi);
if(!multi)
{
/* create the two audio output ports */
dev->num_output_ports = 1;
dev->num_fx_ports = 0;
dev->output_ports = FLUID_ARRAY(jack_port_t *, 2 * dev->num_output_ports);
if(dev->output_ports == NULL)
{
FLUID_LOG(FLUID_PANIC, "Jack server not running?");
return FLUID_FAILED;
}
dev->output_bufs = FLUID_ARRAY(float *, 2 * dev->num_output_ports);
FLUID_MEMSET(dev->output_ports, 0, 2 * dev->num_output_ports * sizeof(jack_port_t *));
dev->output_ports[0]
= jack_port_register(client, "left", JACK_DEFAULT_AUDIO_TYPE, JackPortIsOutput, 0);
dev->output_ports[1]
= jack_port_register(client, "right", JACK_DEFAULT_AUDIO_TYPE, JackPortIsOutput, 0);
}
else
{
fluid_settings_getint(settings, "synth.audio-channels", &dev->num_output_ports);
dev->output_ports = FLUID_ARRAY(jack_port_t *, 2 * dev->num_output_ports);
if(dev->output_ports == NULL)
{
FLUID_LOG(FLUID_PANIC, "Out of memory");
return FLUID_FAILED;
}
dev->output_bufs = FLUID_ARRAY(float *, 2 * dev->num_output_ports);
if(dev->output_bufs == NULL)
{
FLUID_LOG(FLUID_PANIC, "Out of memory");
return FLUID_FAILED;
}
FLUID_MEMSET(dev->output_ports, 0, 2 * dev->num_output_ports * sizeof(jack_port_t *));
for(i = 0; i < dev->num_output_ports; i++)
{
sprintf(name, "l_%02d", i);
dev->output_ports[2 * i]
= jack_port_register(client, name, JACK_DEFAULT_AUDIO_TYPE, JackPortIsOutput, 0);
sprintf(name, "r_%02d", i);
dev->output_ports[2 * i + 1]
= jack_port_register(client, name, JACK_DEFAULT_AUDIO_TYPE, JackPortIsOutput, 0);
}
fluid_settings_getint(settings, "synth.effects-channels", &dev->num_fx_ports);
fluid_settings_getint(settings, "synth.effects-groups", &i);
dev->num_fx_ports *= i;
dev->fx_ports = FLUID_ARRAY(jack_port_t *, 2 * dev->num_fx_ports);
if(dev->fx_ports == NULL)
{
FLUID_LOG(FLUID_PANIC, "Out of memory");
return FLUID_FAILED;
}
dev->fx_bufs = FLUID_ARRAY(float *, 2 * dev->num_fx_ports);
if(dev->fx_bufs == NULL)
{
FLUID_LOG(FLUID_PANIC, "Out of memory");
return FLUID_FAILED;
}
FLUID_MEMSET(dev->fx_ports, 0, 2 * dev->num_fx_ports * sizeof(jack_port_t *));
for(i = 0; i < dev->num_fx_ports; i++)
{
sprintf(name, "fx_l_%02d", i);
dev->fx_ports[2 * i]
= jack_port_register(client, name, JACK_DEFAULT_AUDIO_TYPE, JackPortIsOutput, 0);
sprintf(name, "fx_r_%02d", i);
dev->fx_ports[2 * i + 1]
= jack_port_register(client, name, JACK_DEFAULT_AUDIO_TYPE, JackPortIsOutput, 0);
}
}
/* Adjust sample rate to match JACK's */
jack_srate = jack_get_sample_rate(client);
FLUID_LOG(FLUID_DBG, "Jack engine sample rate: %lu", jack_srate);
fluid_settings_getnum(settings, "synth.sample-rate", &sample_rate);
if((int)sample_rate != jack_srate)
{
FLUID_LOG(FLUID_INFO, "Jack sample rate mismatch, adjusting."
" (synth.sample-rate=%lu, jackd=%lu)", (int)sample_rate, jack_srate);
fluid_settings_setnum(settings, "synth.sample-rate", jack_srate);
}
/* Changing sample rate is non RT, so make sure we process it and/or other things now */
if(dev->callback == NULL)
{
fluid_synth_process_event_queue(dev->data);
}
return FLUID_OK;
}
static void
fluid_jack_client_close(fluid_jack_client_t *client_ref, void *driver)
{
if(client_ref->audio_driver == driver)
{
fluid_atomic_pointer_set(&client_ref->audio_driver, NULL);
}
else if(client_ref->midi_driver == driver)
{
fluid_atomic_pointer_set(&client_ref->midi_driver, NULL);
}
if(client_ref->audio_driver || client_ref->midi_driver)
{
fluid_msleep(100); /* FIXME - Hack to make sure that resources don't get freed while Jack callback is active */
return;
}
fluid_mutex_lock(last_client_mutex);
if(client_ref == last_client)
{
last_client = NULL;
}
fluid_mutex_unlock(last_client_mutex);
if(client_ref->client)
{
jack_client_close(client_ref->client);
}
if(client_ref->server)
{
FLUID_FREE(client_ref->server);
}
FLUID_FREE(client_ref);
}
fluid_audio_driver_t *
new_fluid_jack_audio_driver(fluid_settings_t *settings, fluid_synth_t *synth)
{
return new_fluid_jack_audio_driver2(settings, NULL, synth);
}
fluid_audio_driver_t *
new_fluid_jack_audio_driver2(fluid_settings_t *settings, fluid_audio_func_t func, void *data)
{
fluid_jack_audio_driver_t *dev = NULL;
jack_client_t *client;
const char **jack_ports; /* for looking up ports */
int autoconnect = 0;
int i;
dev = FLUID_NEW(fluid_jack_audio_driver_t);
if(dev == NULL)
{
FLUID_LOG(FLUID_ERR, "Out of memory");
return NULL;
}
FLUID_MEMSET(dev, 0, sizeof(fluid_jack_audio_driver_t));
dev->callback = func;
dev->data = data;
dev->client_ref = new_fluid_jack_client(settings, TRUE, dev);
if(!dev->client_ref)
{
FLUID_FREE(dev);
return NULL;
}
client = dev->client_ref->client;
/* connect the ports. */
/* FIXME: should be done by a patchbay application */
/* find some physical ports and connect to them */
fluid_settings_getint(settings, "audio.jack.autoconnect", &autoconnect);
if(autoconnect)
{
jack_ports = jack_get_ports(client, NULL, NULL, JackPortIsInput | JackPortIsPhysical);
if(jack_ports)
{
int err;
int connected = 0;
for(i = 0; jack_ports[i] && i < 2 * dev->num_output_ports; ++i)
{
err = jack_connect(client, jack_port_name(dev->output_ports[i]), jack_ports[i]);
if(err)
{
FLUID_LOG(FLUID_ERR, "Error connecting jack port");
}
else
{
connected++;
}
}
for(i = 0; jack_ports[i] && i < 2 * dev->num_fx_ports; ++i)
{
err = jack_connect(client, jack_port_name(dev->fx_ports[i]), jack_ports[i]);
if(err)
{
FLUID_LOG(FLUID_ERR, "Error connecting jack port");
}
else
{
connected++;
}
}
jack_free(jack_ports); /* free jack ports array (not the port values!) */
}
else
{
FLUID_LOG(FLUID_WARN, "Could not connect to any physical jack ports; fluidsynth is unconnected");
}
}
return (fluid_audio_driver_t *) dev;
}
/*
* delete_fluid_jack_audio_driver
*/
void
delete_fluid_jack_audio_driver(fluid_audio_driver_t *p)
{
fluid_jack_audio_driver_t *dev = (fluid_jack_audio_driver_t *) p;
fluid_return_if_fail(dev != NULL);
if(dev->client_ref != NULL)
{
fluid_jack_client_close(dev->client_ref, dev);
}
FLUID_FREE(dev->output_bufs);
FLUID_FREE(dev->output_ports);
FLUID_FREE(dev->fx_bufs);
FLUID_FREE(dev->fx_ports);
FLUID_FREE(dev);
}
/* Process function for audio and MIDI Jack drivers */
int
fluid_jack_driver_process(jack_nframes_t nframes, void *arg)
{
fluid_jack_client_t *client = (fluid_jack_client_t *)arg;
fluid_jack_audio_driver_t *audio_driver;
fluid_jack_midi_driver_t *midi_driver;
float *left, *right;
int i;
jack_midi_event_t midi_event;
fluid_midi_event_t *evt;
void *midi_buffer;
jack_nframes_t event_count;
jack_nframes_t event_index;
unsigned int u;
/* Process MIDI events first, so that they take effect before audio synthesis */
midi_driver = fluid_atomic_pointer_get(&client->midi_driver);
if(midi_driver)
{
for(i = 0; i < midi_driver->midi_port_count; i++)
{
midi_buffer = jack_port_get_buffer(midi_driver->midi_port[i], 0);
event_count = jack_midi_get_event_count(midi_buffer);
for(event_index = 0; event_index < event_count; event_index++)
{
jack_midi_event_get(&midi_event, midi_buffer, event_index);
/* let the parser convert the data into events */
for(u = 0; u < midi_event.size; u++)
{
evt = fluid_midi_parser_parse(midi_driver->parser, midi_event.buffer[u]);
/* send the event to the next link in the chain */
if(evt != NULL)
{
fluid_midi_event_set_channel(evt, fluid_midi_event_get_channel(evt) + i * 16);
midi_driver->driver.handler(midi_driver->driver.data, evt);
}
}
}
}
}
audio_driver = fluid_atomic_pointer_get(&client->audio_driver);
if(audio_driver == NULL)
{
// shutting down
return FLUID_OK;
}
if(audio_driver->callback == NULL && audio_driver->num_output_ports == 1 && audio_driver->num_fx_ports == 0) /* i.e. audio.jack.multi=no */
{
left = (float *) jack_port_get_buffer(audio_driver->output_ports[0], nframes);
right = (float *) jack_port_get_buffer(audio_driver->output_ports[1], nframes);
return fluid_synth_write_float(audio_driver->data, nframes, left, 0, 1, right, 0, 1);
}
else
{
fluid_audio_func_t callback = (audio_driver->callback != NULL) ? audio_driver->callback : fluid_synth_process;
for(i = 0; i < audio_driver->num_output_ports; i++)
{
int k = i * 2;
audio_driver->output_bufs[k] = (float *)jack_port_get_buffer(audio_driver->output_ports[k], nframes);
FLUID_MEMSET(audio_driver->output_bufs[k], 0, nframes * sizeof(float));
k = 2 * i + 1;
audio_driver->output_bufs[k] = (float *)jack_port_get_buffer(audio_driver->output_ports[k], nframes);
FLUID_MEMSET(audio_driver->output_bufs[k], 0, nframes * sizeof(float));
}
for(i = 0; i < audio_driver->num_fx_ports; i++)
{
int k = i * 2;
audio_driver->fx_bufs[k] = (float *) jack_port_get_buffer(audio_driver->fx_ports[k], nframes);
FLUID_MEMSET(audio_driver->fx_bufs[k], 0, nframes * sizeof(float));
k = 2 * i + 1;
audio_driver->fx_bufs[k] = (float *) jack_port_get_buffer(audio_driver->fx_ports[k], nframes);
FLUID_MEMSET(audio_driver->fx_bufs[k], 0, nframes * sizeof(float));
}
return callback(audio_driver->data,
nframes,
audio_driver->num_fx_ports * 2,
audio_driver->fx_bufs,
audio_driver->num_output_ports * 2,
audio_driver->output_bufs);
}
}
int
fluid_jack_driver_bufsize(jack_nframes_t nframes, void *arg)
{
/* printf("the maximum buffer size is now %lu\n", nframes); */
return 0;
}
int
fluid_jack_driver_srate(jack_nframes_t nframes, void *arg)
{
/* printf("the sample rate is now %lu/sec\n", nframes); */
/* FIXME: change the sample rate of the synthesizer! */
return 0;
}
void
fluid_jack_driver_shutdown(void *arg)
{
// fluid_jack_audio_driver_t* dev = (fluid_jack_audio_driver_t*) arg;
FLUID_LOG(FLUID_ERR, "Help! Lost the connection to the JACK server");
/* exit (1); */
}
void fluid_jack_midi_driver_settings(fluid_settings_t *settings)
{
fluid_settings_register_str(settings, "midi.jack.id", "fluidsynth-midi", 0);
fluid_settings_register_str(settings, "midi.jack.server", "", 0);
}
/*
* new_fluid_jack_midi_driver
*/
fluid_midi_driver_t *
new_fluid_jack_midi_driver(fluid_settings_t *settings,
handle_midi_event_func_t handler, void *data)
{
fluid_jack_midi_driver_t *dev;
fluid_return_val_if_fail(handler != NULL, NULL);
/* allocate the device */
dev = FLUID_NEW(fluid_jack_midi_driver_t);
if(dev == NULL)
{
FLUID_LOG(FLUID_ERR, "Out of memory");
return NULL;
}
FLUID_MEMSET(dev, 0, sizeof(fluid_jack_midi_driver_t));
dev->driver.handler = handler;
dev->driver.data = data;
/* allocate one event to store the input data */
dev->parser = new_fluid_midi_parser();
if(dev->parser == NULL)
{
FLUID_LOG(FLUID_ERR, "Out of memory");
FLUID_FREE(dev);
return NULL;
}
dev->client_ref = new_fluid_jack_client(settings, FALSE, dev);
if(!dev->client_ref)
{
FLUID_FREE(dev);
return NULL;
}
return (fluid_midi_driver_t *)dev;
}
void
delete_fluid_jack_midi_driver(fluid_midi_driver_t *p)
{
fluid_jack_midi_driver_t *dev = (fluid_jack_midi_driver_t *)p;
fluid_return_if_fail(dev != NULL);
if(dev->client_ref != NULL)
{
fluid_jack_client_close(dev->client_ref, dev);
}
delete_fluid_midi_parser(dev->parser);
FLUID_FREE(dev->midi_port);
FLUID_FREE(dev);
}
#endif /* JACK_SUPPORT */