forked from jackaudio/jack2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
2131 lines (1193 loc) · 66.4 KB
/
ChangeLog
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
---------------------------
Contributors
---------------------------
Dmitry Baikov
Gabriel M. Beddingfield
Steven Chamberlain
Thom Johansen
Thibault LeMeur
Tom Szilagyi
Andrzej Szombierski
Kjetil S.Matheussen
Pieter Palmers
Tim Blechmann
Marc-Olivier Barre
Nedko Arnaudov
Fernando Lopez-Lezcano
Romain Moret
Florian Faber
Michael Voigt
Torben Hohn
Paul Davis
Peter L Jones
Devin Anderson
Josh Green
Mario Lang
Arnold Krille
Jan Engelhardt
Adrian Knoth
David Garcia Garzon
Valerio Pilo
Chris Caudle
John Emmas
Robin Gareus
---------------------------
Jackdmp changes log
---------------------------
2012-12-10 Stephane Letz <[email protected]>
* Version 1.9.10 started.
2012-11-21 Stephane Letz <[email protected]>
* Correct JackPortAudioDriver::Open : special case for ASIO drivers.
2012-10-20 Stephane Letz <[email protected]>
* Correct JackEngine::NotifyGraphReorder : graph-order callback now notified after port latencies update.
2012-09-22 Robin Gareus <[email protected]>
* netjack/opus: don't re-init en/decoders.
2012-09-18 Nedko Arnaudov <[email protected]>
* Use string ids in the alsa device list.
2012-09-10 Nedko Arnaudov <[email protected]>
* controlapi: fix double free on master switch.
2012-09-10 Robin Gareus <[email protected]>
* netjack1/netone opus support.
* netjack1/2 Opus: use only 2bytes for encoded-length.
* wscript: add header defines and libs for example-clients/netsource.
* fix duplicate prog.includes.
2012-09-05 Stephane Letz <[email protected]>
* More robust channel mapping handling in JackCoreAudioDriver.
2012-09-05 Robin Gareus <[email protected]>
* Add opus support to NetJack2.
2012-08-21 Nedko Arnaudov <[email protected]>
* jack_control: fix epr command.
2012-08-21 Stephane Letz <[email protected]>
* Update JackCoreAudioDriver and JackCoreAudioAdapter with more recent API.
2012-08-03 Stephane Letz <[email protected]>
* Change framework installation hierarchy for OSX Mountain Lion.
2012-08-02 Stephane Letz <[email protected]>
* Devin Anderson patch for Jack/CoreMIDI duplicated messages.
2012-07-24 Stephane Letz <[email protected]>
* Fix in ALSA adapter.
2012-05-26 Nedko Arnaudov <[email protected]>
* Fix alsa driver parameter order.
* Control API: Enforce driver/internal parameter order.
2012-05-24 Nedko Arnaudov <[email protected]>
* Extend jack_control to have parameter reset commands.
2012-03-24 Adrian Knoth <[email protected]>
* Align buffers to 32 byte boundaries to allow AVX processing.
2012-03-21 Stephane Letz <[email protected]>
* New jack_get_cycle_times() implementation from Fons Adriennsen.
2012-03-17 Nedko Arnaudov <[email protected]>
* Update waf.
2012-03-17 Adrian Knoth <[email protected]>
* [firewire] Introduce UpdateLatencies() in FFADO backend.
* [firewire] Allow FFADO backend to change the buffer size.
2012-03-16 Stephane Letz <[email protected]>
* Rework JackMessageBuffer.
2012-03-15 Stephane Letz <[email protected]>
* POST_PACKED_STRUCTURE used for jack_latency_range_t type.
2012-03-09 Stephane Letz <[email protected]>
* Remove JACK_32_64 flag, so POST_PACKED_STRUCTURE now always used.
2012-02-10 Stephane Letz <[email protected]>
* Improve libjacknet master mode.
2012-02-09 Stephane Letz <[email protected]>
* In control API, UNIX like sigset_t replaced by more abstract jackctl_sigmask_t * opaque struct.
2012-02-01 Stephane Letz <[email protected]>
* Check server API callback from notification thread.
* Use a time-out in notification channel write function.
* Fix lock management in JackEngine.
2012-01-29 Stephane Letz <[email protected]>
* A bit more robust JackMessageBuffer implementation (in progress).
2012-01-27 Stephane Letz <[email protected]>
* Rename JackProcessSync in JackPosixProcessSync.
2012-01-26 Stephane Letz <[email protected]>
* Add EndTime function (especially for Windows).
2012-01-25 Stephane Letz <[email protected]>
* Fix NetJack2 initialisation bug.
2012-01-24 Stephane Letz <[email protected]>
* Improve ShutDown in NetManager.
* Correct ShutDown in JackInternalClient and JackLibClient.
2012-01-20 Stephane Letz <[email protected]>
* Experimental system port alias use in Windows JackRouter.
2012-01-19 Stephane Letz <[email protected]>
* Implement shutdown for in server clients.
* Better time-out management in NetJack2.
2012-01-13 Stephane Letz <[email protected]>
* More robust server/client protocol.
2012-01-11 Stephane Letz <[email protected]>
* Factorize code the server/client request in JackRequestDecoder class.
2012-01-06 Stephane Letz <[email protected]>
* Cleanup drivers and internals loading code.
* jackctl_driver_params_parse API moved in public control.h.
* More general drivers/internals loading model on Windows.
2012-01-06 Stephane Letz <[email protected]>
* Fix for compilation on Solaris.
2012-01-04 Stephane Letz <[email protected]>
* Fix library symbols export issue.
2012-01-02 Stephane Letz <[email protected]>
* Adrian Knoth fix in midiseq.c.
2011-12-20 Stephane Letz <[email protected]>
* Version 1.9.9 started.
2011-11-25 Stephane Letz <[email protected]>
* More robust dynamic port management in JACK/CoreMidi bridge.
* Correct jack_port_name_size API.
2011-11-24 Stephane Letz <[email protected]>
* Dynamic port management in JACK/CoreMidi bridge.
* Correct jack_client_create_thread (when realtime in on).
2011-11-21 Stephane Letz <[email protected]>
* John Emmas third auto-launch server on Windows patch.
2011-11-07 Stephane Letz <[email protected]>
* John Emmas first auto-launch server on Windows patch.
* John Emmas second auto-launch server on Windows patch.
2011-11-06 Stephane Letz <[email protected]>
* Enable local access in NetJack2 code.
2011-11-04 Stephane Letz <[email protected]>
* Fix jack_set_port_name API.
2011-11-03 Stephane Letz <[email protected]>
* Add missing jack_client_get_uuid API.
* John Emmas Windows server launching patch (1).
2011-10-28 Stephane Letz <[email protected]>
* John Emmas POST_PACKED_STRUCTURE patch.
2011-10-27 Stephane Letz <[email protected]>
* Gabriel Beddingfield patch (r4541) reverted.
2011-10-10 Stephane Letz <[email protected]>
* John Emmas patch for DSP CPU computation.
2011-09-27 Stephane Letz <[email protected]>
* Gabriel Beddingfield patch for ALSA driver: error when source is non-native byte-order float.
2011-08-31 Stephane Letz <[email protected]>
* Correct Start/Stop for Control API.
2011-08-30 Stephane Letz <[email protected]>
* Check driver type in jackdmp.cpp.
2011-08-28 Stephane Letz <[email protected]>
* Correct JackBasePosixMutex::Trylock.
* Correct JackMessageBuffer::Execute.
2011-08-26 Stephane Letz <[email protected]>
* More robust code in synchronization primitives and in JackMessageBuffer.
* Non blocking notifications in JackEngine::NotifyAddClient and JackEngine::NotifyRemoveClient.
* More robust Control API implementation.
* Add jackctl_driver_get_type in Control API.
* Singleton behaviour for JackCoreMidiDriver and JackWinMMEDriver.
2011-07-29 Stephane Letz <[email protected]>
* New JackTimedDriver class to be used by JackDummyDriver, JackNetDriver and JackNetOneDriver classes.
2011-07-28 Stephane Letz <[email protected]>
* Enable explicit channel mapping in CoreAudio driver.
2011-07-25 Stephane Letz <[email protected]>
* NetJack2: no more timeout, correct JackWaitThreadedDriver::Execute.
2011-07-25 Stephane Letz <[email protected]>
* NetJack2: improve latency management, cleanup.
2011-07-23 Stephane Letz <[email protected]>
* Possible fix for http://trac.jackaudio.org/ticket/193.
2011-07-22 Stephane Letz <[email protected]>
* NetJack2: improve error reporting.
2011-07-16 Stephane Letz <[email protected]>
* Error in JackActivationCount::Signal now uses jack_log instead of jack_error.
* EXPORT macro renamed to LIB_EXPORT.
2011-07-12 Stephane Letz <[email protected]>
* NetJack2 now only send data on network only is ports are connected both sides.
2011-07-11 Stephane Letz <[email protected]>
* Add JACK_NETJACK_PORT and JACK_NETJACK_MULTICAST environment variables for NetJack2.
2011-07-08 Stephane Letz <[email protected]>
* NetJack2 now only send data on network for connected ports.
2011-07-03 Stephane Letz <[email protected]>
* More debug code in JackMMCSS class.
2011-07-03 Stephane Letz <[email protected]>
* -l in JackCoreAudioDriver now display devices names and then quit.
2011-07-01 Stephane Letz <[email protected]>
* Fix bugs in JackNetAdapter.
2011-06-29 Stephane Letz <[email protected]>
* Special CATCH_CLOSE_EXCEPTION_RETURN to handle Close API calls.
2011-06-28 Stephane Letz <[email protected]>
* Another round of code improvements to handle completely buggy Digidesign CoreAudio user-land driver.
2011-06-20 Stephane Letz <[email protected]>
* Correct Dummy driver.
2011-06-17 Stephane Letz <[email protected]>
* NetJack2: connection error handling.
2011-06-16 Stephane Letz <[email protected]>
* Changes in NetJack2 connection management: no more timeout, any transmission error considered as fatal.
* NetJack2: timeout again...
2011-06-11 Stephane Letz <[email protected]>
* Special version of jack_attach_shm/jack_release_shm on client side for POSIX shared memory, to solve a memory leak issue.
2011-06-10 Stephane Letz <[email protected]>
* SaveConnections/RestoreConnections in NetDriver.
* SaveConnections/RestoreConnections moved in JackAudioDriver.
2011-06-09 Stephane Letz <[email protected]>
* Correct NetJack2 connection handling.
2011-05-27 Stephane Letz <[email protected]>
* Correct rd_acquire in dbus code.
2011-05-16 Stephane Letz <[email protected]>
* Correct OSX real-time thread setup.
2011-05-11 Stephane Letz <[email protected]>
* Correct MIDI in NetJack2.
2011-05-05 Stephane Letz <[email protected]>
* Libjacknet in progress.
2011-05-02 Stephane Letz <[email protected]>
* Merge branch switch-master-port-registration-notifications: correct driver port registration.
2011-04-21 Stephane Letz <[email protected]>
* CELT code for NetJack2.
2011-04-20 Stephane Letz <[email protected]>
* Add XRun detection in PortAudio driver.
2011-04-18 Stephane Letz <[email protected]>
* JackWeakAPI.cpp renamed in JackWeakAPI.c.
2011-04-04 Stephane Letz <[email protected]>
* Correct driver lifetime management.
2011-04-03 Stephane Letz <[email protected]>
* Fix in JackCoreAudioDriver::Read when there is no inputs.
2011-04-02 Stephane Letz <[email protected]>
* NetDriver can now ask for in/out values from the master (in progress).
* Correct drivers parameter settings.
2011-04-01 Stephane Letz <[email protected]>
* Merge newer-midi branch (Devin Anderson redesign of the MIDI drivers: alsarawmidi, ffado, coremidi and winmme).
* Cleanup JackThreadedDriver::Stop.
* Correct JackNetOneDriver::Close.
* Correction in jackdmp.cpp: notify_server_stop should be done after server destruction.
* Improve error management in JackNetDriver.
2011-03-30 Stephane Letz <[email protected]>
* Version 1.9.8 started.
2011-03-29 Stephane Letz <[email protected]>
* Synchronize JackWeakAPI.cpp with new APIs.
2011-03-28 Stephane Letz <[email protected]>
* Correction of jack_connect/jack_disconnect: use of jack_activate and volatile keyword for thread shared variable.
* Correction of JackNetOneDriver for latest CELT API.
2011-03-24 Stephane Letz <[email protected]>
* Implement renaming in JackDriver::Open to avoid name collision (thanks Devin Anderson).
* Correct alsa_driver_restart (thanks Devin Anderson).
2011-03-23 Stephane Letz <[email protected]>
* Devin Anderson server-ctl-proposal branch merged on trunk: improved control API, slave backend reworked.
2011-03-14 Stephane Letz <[email protected]>
* Correct JackEngine::NotifyGraphReorder, update JackDebugClient with latest API.
2011-03-13 Stephane Letz <[email protected]>
* Rework internal slave driver management, JackServerGlobals now handle same parameters as jackdmp.
2011-03-11 Stephane Letz <[email protected]>
* Correct JackNetMaster::SetBufferSize.
* Use jack_default_audio_sample_t instead of float consistently, fix ticket #201."
* -X now allows to add several slave backends, add -I to load several internal clients.
2011-03-10 Stephane Letz <[email protected]>
* Latency callback must always be activated.
* Correct TopologicalSort.
* Add jack_midi_dump client.
* Synchronize netjack1 with JACK1 version.
* Synchronize jack_connect/jack_disconnect with JACK1 version.
2011-03-09 Stephane Letz <[email protected]>
* jack_client_has_session_callback implementation.
* Fix jdelay for new latency API.
* Check requested buffer size and limit to 1..8192 - avoids weird behaviour caused by jack_bufsize foobar.
* jack_port_type_get_buffer_size implementation.
* Stop using alloca and allocate buffer on the heap for alsa_io.
* Rename jdelay to jack_iodelay as per Fons' request.
* Call buffer size callback in activate (actually this is done on client side in the RT thread Init method).
* JackEngine::ComputeTotalLatencies in progress.
2011-03-08 Stephane Letz <[email protected]>
* Use of latency range in all backends.
* ComputeTotalLatencies now a client/server call.
* Add latent test client for latency API.
* Also print playback and capture latency in jack_lsp.
2011-03-04 Stephane Letz <[email protected]>
* Revert r4119 (RT notification in the server). JackAudioDriver::ProcessSync now skip backend write in case of graph process failure.
* Fix incorrect error codes in alsa/usx2y.c and alsa/JackAlsaDriver.cpp.
* Synchronize public headers with JACK1. Update OSX project.
* New latency API implementation (in progress).
2011-02-09 Stephane Letz <[email protected]>
* Remove JackPortIsActive flag.
2011-02-07 Stephane Letz <[email protected]>
* Valerio Pilo second CAS for ARMv7 patch.
2011-02-03 Stephane Letz <[email protected]>
* Valerio Pilo CAS for ARMv7 patch.
2011-01-11 Stephane Letz <[email protected]>
* Adrian Knoth jack_lsp patch.
2010-11-17 Stephane Letz <[email protected]>
* ALSA backend: suspend/resume handling (jack1 r4075).
* Correct dummy driver.
2010-11-05 Stephane Letz <[email protected]>
* In jackdmp.cpp, jackctl_setup_signals moved before jackctl_server_start.
* Correct symbols export in backends on OSX.
2010-11-03 Stephane Letz <[email protected]>
* Improve backend error handling: fatal error returned by Read/Write now cause a Process failure (so a thread exit for blocking backends). Recoverable ones (XRuns..) are now treated internally in ALSA, FreeBob and FFADO backends.
2010-10-30 Stephane Letz <[email protected]>
* Correct JackServer::Open to avoid a race when control API is used on OSX.
2010-10-29 Stephane Letz <[email protected]>
* Correct lsp.c code.
* Add note about unique port-name requirement.
2010-09-08 Stephane Letz <[email protected]>
* Sync JackAlsaDriver::alsa_driver_check_card_type with JACK1 backend.
2010-08-30 Stephane Letz <[email protected]>
* Version 1.9.7 started.
2010-08-25 Stephane Letz <[email protected]>
* In JackCoreAudioDriver, fix an issue when no value is given for input.
2010-08-23 Stephane Letz <[email protected]>
* Adrian Knoth fix for linux cycle.h (ticket 188).
2010-07-07 Stephane Letz <[email protected]>
* Jan Engelhardt patch for get_cycles on SPARC.
* Adrian Knoth hurd.patch, kfreebsd-fix.patch and alpha_ia64-sigsegv.patch from ticket 177.
2010-06-29 Stephane Letz <[email protected]>
* Arnold Krille firewire snooping patch.
2010-06-16 Stephane Letz <[email protected]>
* David Garcia Garzon unused_pkt_buf_field_jack2 netone patch.
2010-06-13 Stephane Letz <[email protected]>
* Fix JackPosixSemaphore::TimedWait: same behavior as JackPosixSemaphore::Wait regarding EINTR.
2010-05-31 Stephane Letz <[email protected]>
* Fix from Fernando Lopez-Lezcano for compilation on fc13.
2010-05-30 Stephane Letz <[email protected]>
* David Garcia Garzon netone patch.
2010-05-27 Stephane Letz <[email protected]>
* In JackCoreAudioDriver, move code called in MeasureCallback to be called once in IO thread.
2010-05-07 Stephane Letz <[email protected]>
* Add tests to validate intclient.h API.
* On Linux, inter-process synchronization primitive switched to POSIX semaphore.
2010-04-16 Stephane Letz <[email protected]>
* Make jack_connect/jack_disconnect wait for effective port connection/disconnection.
2010-04-07 Stephane Letz <[email protected]>
* Remove call to exit in library code.
2010-03-26 Stephane Letz <[email protected]>
* ffado-portname-sync.patch from ticket #163 applied.
2010-03-24 Stephane Letz <[email protected]>
* On Windows, now use TRE library for regexp (BSD license instead of GPL license).
2010-03-19 Stephane Letz <[email protected]>
* Fix some file header to have library side code use LGPL.
* Apply srcfactor.diff patch for ticket #162.
2010-03-06 Stephane Letz <[email protected]>
* Arnold Krille firewire patch.
* Raise JACK_DRIVER_PARAM_STRING_MAX and JACK_PARAM_STRING_MAX to 127 otherwise some audio drivers cannot be loaded on OSX.
2010-03-04 Stephane Letz <[email protected]>
* Correct JackMachServerChannel::Execute: keep running even in error cases.
* Raise JACK_PROTOCOL_VERSION number.
2010-03-03 Stephane Letz <[email protected]>
* Correct JackGraphManager::DeactivatePort.
2010-03-02 Stephane Letz <[email protected]>
* Improve JackCoreAudioDriver and JackCoreAudioAdapter: when no devices are described, takes default input and output and aggregate them.
2010-02-15 Stephane Letz <[email protected]>
* Version 1.9.6 started.
2010-01-29 Gabriel M. Beddingfield <[email protected]>
* Change JackEngineProfiling and JackAudioAdapterInterface gnuplot scripts to output SVG instead of PDF.
2009-12-15 Stephane Letz <[email protected]>
* Shared memory manager was calling abort in case of fatal error, now return an error in caller.
2009-12-13 Stephane Letz <[email protected]>
* Mario Lang alsa_io time calculation overflow patch.
2009-12-10 Stephane Letz <[email protected]>
* Use a QUIT notification to properly quit the server channel, the server channel thread can then be 'stopped' instead of 'canceled'.
2009-12-09 Stephane Letz <[email protected]>
* When threads are cancelled, the exception has to be rethrown.
2009-12-08 Stephane Letz <[email protected]>
* Josh Green ALSA driver capture only patch.
2009-12-03 Stephane Letz <[email protected]>
* Fix JackCoreMidiDriver::ReadProcAux when ring buffer is full (thanks Devin Anderson).
2009-12-02 Stephane Letz <[email protected]>
* Special code in JackCoreAudio driver to handle completely buggy Digidesign CoreAudio user-land driver.
* Ensure that client-side message buffer thread calls thread_init callback if/when it is set by the client (backport of JACK1 rev 3838).
* Check dynamic port-max value.
2009-12-01 Stephane Letz <[email protected]>
* Fix port_rename callback: now both old name and new name are given as parameters.
2009-11-30 Stephane Letz <[email protected]>
* Devin Anderson patch for Jack FFADO driver issues with lost MIDI bytes between periods (and more).
2009-11-29 Stephane Letz <[email protected]>
* More robust sample rate change handling code in JackCoreAudioDriver.
2009-11-24 Stephane Letz <[email protected]>
* Dynamic choice of maximum port number.
2009-11-23 Stephane Letz <[email protected]>
* Peter L Jones patch for NetJack1 compilation on Windows.
2009-11-20 Stephane Letz <[email protected]>
* Version 1.9.5 started.
* Client debugging code improved.
2009-11-18 Stephane Letz <[email protected]>
* Sync JackCoreAudioAdapter code with JackCoreAudioDriver.
2009-11-17 Stephane Letz <[email protected]>
* In JackCoreAudio driver, clock drift compensation in aggregated devices working.
* In JackCoreAudio driver, clock drift compensation semantic changed a bit: when on, does not activate if not needed (same clock domain).
2009-11-16 Stephane Letz <[email protected]>
* In JackCoreAudio driver, (possibly) clock drift compensation when needed in aggregated devices.
2009-11-14 Stephane Letz <[email protected]>
* Sync with JACK1: -r parameter now used for no-realtime, realtime (-R) is now default, usable backend given vie platform.
2009-11-13 Stephane Letz <[email protected]>
* Better memory allocation error checking in ringbuffer.c, weak import improvements.
* Memory allocation error checking for jack_client_new and jack_client_open (server and client side).
* Memory allocation error checking in server for RPC.
* Simplify server temporary mode: now use a JackTemporaryException.
* Lock/Unlock shared memory segments (to test...).
2009-11-12 Stephane Letz <[email protected]>
* Better memory allocation error checking on client (library) side.
2009-11-11 Stephane Letz <[email protected]>
* Correct JackCoreAudio driver when empty strings are given as -C, -P or -d parameter.
2009-11-10 Stephane Letz <[email protected]>
* Correct JackInfoShutdownCallback prototype, two new JackClientProcessFailure and JackClientZombie JackStatus code.
2009-11-09 Stephane Letz <[email protected]>
* Correct JackGraphManager::GetBuffer for the "client loop with one connection" case: buffer must be copied.
2009-11-07 Stephane Letz <[email protected]>
* Fix AcquireRealTime and DropRealTime: now distinguish when called from another thread (AcquireRealTime/DropRealTime) and from the thread itself (AcquireSelfRealTime/DropSelfRealTime).
* Correct JackPosixThread::StartImp: thread priority setting now done in the RT case only.
2009-11-06 Stephane Letz <[email protected]>
* Correctly save and restore RT mode state in freewheel mode.
* Correct freewheel code on client side.
2009-11-05 Stephane Letz <[email protected]>
* No reason to make jack_on_shutdown deprecated, so revert the incorrect change.
* Thread AcquireRealTime and DropRealTime were (incorrectly) using fThread field. Use pthread_self()) (or GetCurrentThread() on Windows) to get the calling thread.
2009-10-30 Stephane Letz <[email protected]>
* In JackCoreAudioDriver, improve management of input/output channels: -1 is now used internally to indicate a wanted max value.
* In JackCoreAudioDriver::OpenAUHAL, correct stream format setup and cleanup.
* Correct crash bug in JackAudioAdapterInterface when not input is used in adapter (temporary fix...)
* Sync JackCoreAudioAdapter code on JackCoreAudioDriver one.
* JACK_SCHED_POLICY switched to SCHED_FIFO.
* Now can aggregate device that are themselves AD.
2009-10-29 Stephane Letz <[email protected]>
* In JackCoreAudioDriver::Start, wait for the audio driver to effectively start (use the MeasureCallback).
2009-10-28 Stephane Letz <[email protected]>
* In JackCoreAudioDriver, force the SR value to the wanted one *before* creating aggregate device (otherwise creation will fail).
* In JackCoreAudioDriver, better cleanup of AD when intermediate open failure.
2009-10-27 Stephane Letz <[email protected]>
* Dynamic system version detection in JackCoreAudioDriver to either create public or private aggregate device.
2009-10-26 Stephane Letz <[email protected]>
* Implement "hog mode" (exclusive access of the audio device) in JackCoreAudioDriver.
* Fix jack_set_sample_rate_callback to have he same behavior as in JACK1.
2009-10-25 Stephane Letz <[email protected]>
* Improve aggregate device management in JackCoreAudioDriver: now a "private" device only and cleanup properly.
* Aggregate device code added to JackCoreAudioAdapter.
2009-10-23 Stephane Letz <[email protected]>
* Correct JackProcessSync::LockedTimedWait.
* Correct JACK_MESSAGE_SIZE value, particularly in OSX RPC code.
* Now start server channel thread only when backend has been started (so in JackServer::Start). Should solve race conditions at start time.
* jack_verbose moved to JackGlobals class.
2009-10-22 Stephane Letz <[email protected]>
* Correct jackdmp.cpp (failures case were not correct..). Improve JackCoreAudioDriver code. Raise default port number to 2048.
2009-10-20 Stephane Letz <[email protected]>
* Add a string parameter to server ==> client notification, add a new JackInfoShutdownCallback type.
* CoreAudio backend now issue a JackInfoShutdownCallback when an unrecoverable error is detected (sampling rate change, stream configuration changed)
2009-10-17 Stephane Letz <[email protected]>
* Correct server temporary mode: now set a global and quit after server/client message handling is finished.
2009-10-15 Stephane Letz <[email protected]>
* Change CoreAudio notification thread setup for OSX Snow Leopard.
2009-09-18 Stephane Letz <[email protected]>
* Simplify transport in NetJack2: master only can control transport.
2009-09-15 Stephane Letz <[email protected]>
* Correct CPU timing in JackNetDriver, now take cycle begin time after Read.
* Fix issues in JackNetDriver::DecodeTransportData and JackNetDriver::Initialize.
2009-08-28 Stephane Letz <[email protected]>
* Correct monitor port naming in JackAudioDriver and JackCoreAudioDriver.
* Big endian bug fix in memops.c (http://bugs.debian.org/cgi-bin/bugreport.cgi?msg=5;filename=11_be24bit.patch;att=1;bug=486308)
2009-07-31 Stephane Letz <[email protected]>
* Use SNDCTL_DSP_SYNCGROUP/SNDCTL_DSP_SYNCSTART API to synchronize input and output in Solaris boomer backend.
2009-07-29 Stephane Letz <[email protected]>
* Add a -G parameter in CoreAudio backend (the computation value in RT thread expressed as percent of period).
2009-07-28 Stephane Letz <[email protected]>
* Fix CopyAndConvertIn for Solaris backends.
2009-07-22 Stephane Letz <[email protected]>
* Version 1.9.4 started.
* Solaris boomer backend now working in capture or playback only mode.
* Fix control.h for proper compilation on Solaris.
2009-07-17 Stephane Letz <[email protected]>
* Loopback backend reborn as a dynamically loadable separated backend.
* -L parameter for loopback backend activated again in jackd.
2009-07-17 Stephane Letz <[email protected]>
* Big rewrite of Solaris boomer driver, seems to work in duplex mode at least.
2009-07-16 Stephane Letz <[email protected]>
* In combined --dbus and --classic compilation code, use PulseAudio acquire/release code.
2009-07-15 Stephane Letz <[email protected]>
* Rename JackDriver::Init method to JackDriver::Initialize (to avoid confusion with JackThread::Init method).
* Update Solaris boomer driver.
* Report some cleanup and documentation improvements done on JACK1 timing functions.
2009-07-11 Stephane Letz <[email protected]>
* Raise drivers time out used in synchronous mode.
2009-07-09 Stephane Letz <[email protected]>
* Use __attribute__((__packed__)) again, more fixes for 64/32 mixed mode.
* Torben Hohn changes for 64/32 mixed mode in wscripts.
* Add compile time option for maximum ports per application.
2009-07-07 Stephane Letz <[email protected]>
* Use __attribute__((__aligned__(32))) instead of __attribute__((__packed__)) for 64/32 mixed mode.
2009-07-03 Stephane Letz <[email protected]>
* Another Tim Bechmann memops.c optimization patch.
2009-07-01 Stephane Letz <[email protected]>
* Tim Bechmann memops.c optimization patch.
2009-06-30 Stephane Letz <[email protected]>
* Tim Bechmann patch: hammerfall, only release monitor thread, if it has been created.
2009-06-19 Stephane Letz <[email protected]>
* Correct JackTransportEngine::MakeAllLocating, sync callback has to be called in this case also.
* NetJack2 code: better error checkout, method renaming.
2009-06-17 Stephane Letz <[email protected]>
* Move DBus based audio device reservation code in ALSA backend compilation.
2009-06-16 Stephane Letz <[email protected]>
* Correct JackFifo::TimedWait for EINTR handling.
2009-06-05 Stephane Letz <[email protected]>
* Correct jack_set_error_function, jack_set_info_function and jack_set_thread_creator functions.
2009-05-18 Stephane Letz <[email protected]>
* Correct wcsript files to create jackdbus only (and not create jackd anymore) when compiled in --dbus mode, add a --classic option. Both options are possible but issue a warning.
2009-05-15 Stephane Letz <[email protected]>
* Move InitFrameTime in JackDriver::Start method.
2009-05-13 Stephane Letz <[email protected]>
* Reworked Torben Hohn fix for server restart issue on Windows.
2009-05-11 Stephane Letz <[email protected]>
* New jack_free function added in jack.h.
* Torben Hohn fix for InitTime and GetMicroSeconds in JackWinTime.c.
2009-05-07 Stephane Letz <[email protected]>
* Cleanup "loopback" stuff in server.
2009-05-06 Stephane Letz <[email protected]>
* Fix transport callback (timebase master, sync) issue when used after jack_activate (RT thread was not running).
* D-Bus access for jackctl_server_add_slave/jackctl_server_remove_slave API.
2009-05-05 Stephane Letz <[email protected]>
* First working version of native MIDI backend (JackCoreMidiDriver, JackWinMMEDriver).
2009-04-22 Stephane Letz <[email protected]>
* jackctl_server_load_master renamed to jackctl_server_switch_master, jackctl_server_unload_master is removed.
2009-04-21 Stephane Letz <[email protected]>
* Add jackctl_server_load_master/jackctl_server_unload_master API.
2009-04-20 Stephane Letz <[email protected]>
* In ALSA audio card reservation code, tries to open the card even if reservation fails.
* Clock source setting on Linux.
2009-04-08 Stephane Letz <[email protected]>
* Native MIDI backend (JackCoreMidiDriver, JackWinMMEDriver) in progress.
2009-04-03 Stephane Letz <[email protected]>
* Simplify JackClient RT code, jack_thread_wait API marked deprecated."
2009-03-29 Stephane Letz <[email protected]>
* Cleanup JackInternalClient code.
2009-03-27 Stephane Letz <[email protected]>
* Add a buffer size callback for netmaster that just remove the client (it will be recreated with the new parameters).
2009-03-26 Stephane Letz <[email protected]>
* First working JackBoomerDriver two threads version.
2009-03-24 Stephane Letz <[email protected]>
* New JackBoomerDriver class for Boomer driver on Solaris.
* Add mixed 32/64 bits mode (off by default).
2009-03-23 Stephane Letz <[email protected]>
* Version 1.9.3 started.
2009-03-19 Stephane Letz <[email protected]>
* Tim Blechmann optimization patch (inlining some heavy used methods).
2009-03-12 Stephane Letz <[email protected]>
* Virtualize and allow overriding of thread creation function, to allow Wine support (from JACK1).
2009-03-12 Stephane Letz <[email protected]>
* Try automatic adaptative mode in adapters.
2009-03-11 Stephane Letz <[email protected]>
* Client incorrect re-naming fixed: now done at socket level also.
2009-03-10 Stephane Letz <[email protected]>
* Add -g (ring-buffer) parameter to netadapter.
* Automatic adaptative ringbuffer size mode when -g = 0.
2009-03-09 Stephane Letz <[email protected]>
* Use Torben Hohn PI controler code for adapters (in progress).
2009-03-05 Stephane Letz <[email protected]>
* Support for BIG_ENDIAN machines in NetJack2 for transport data.
* Add auto_connect parameter in netmanager and netadapter.
2009-03-03 Stephane Letz <[email protected]>
* More robust profiling tools when clients come and go.
2009-03-01 Stephane Letz <[email protected]>
* Raise default port number to 1024.
2009-02-27 Stephane Letz <[email protected]>
* Improve generated gnuplot files for adapting code.
2009-02-25 Stephane Letz <[email protected]>