-
Notifications
You must be signed in to change notification settings - Fork 1
/
ChangeLog
1744 lines (984 loc) · 56.3 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
---------------------------
Jackdmp changes log
---------------------------
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]>
* Major cleanup in adapter code.
2009-02-25 Stephane Letz <[email protected]>
* Fix JackNetDriver::Close method.
* For audio device reservation, add card_to_num function.
* Fix buffer size and sample rate handling in JackAlsaAdapter.
* Add control for adapter ringbuffer size.
* Fix JackAlsaAdapter.h for 64 bits compilation.
2009-02-23 Stephane Letz <[email protected]>
* Another fix in systemdeps.h and types.h: jack_time_t now uniquely defined in types.h.
* Move generic code and data in JackNetInterface and JackNetMasterInterface classes.
* First version of D-Bus based audio device reservation.
2009-02-20 Stephane Letz <[email protected]>
* Add InitConnection and InitRendering methods in JackNetSlaveInterface, better packet type checking in JackNetSlaveInterface::SyncRecv.
* Change fMulticastIP handling in JackNetInterface.
* Cleanup systemdeps.h on Windows.
2009-02-17 Stephane Letz <[email protected]>
* Fix the mutex/signal classes on Windows.
* Client incorrect re-naming fixed: now done at fifo level only.
2009-02-16 Stephane Letz <[email protected]>
* Rework the mutex/signal classes. Use them in JackMessageBuffer.
2009-02-11 Stephane Letz <[email protected]>
* Merge Solaris branch back on trunk.
* Equality of input and output buffer size removed (for now) in JackOSSDriver.
2009-02-10 Stephane Letz <[email protected]>
* Add a resample quality parameter in netadapter.
2009-02-09 Stephane Letz <[email protected]>
* Use PRIu32 kind of macro in JackAlsaDriver again.
* Now correctly return an error if JackServer::SetBufferSize could not change the buffer size (and was just restoring the current one).
2009-02-05 Stephane Letz <[email protected]>
* Add a resample quality parameter in audioadapter.
2009-02-01 Stephane Letz <[email protected]>
* Add a JACK_INTERNAL_DIR environment variable to be used for internal clients.
2009-01-30 Stephane Letz <[email protected]>
* In NetJack2, fix a bug when capture or playback only channels are used.
2009-01-29 Stephane Letz <[email protected]>
* Support for "-h" option in internal clients to print the parameters.
* Support for BIG_ENDIAN machines in NetJack2 for MIDI ports.
2009-01-28 Stephane Letz <[email protected]>
* Support for BIG_ENDIAN machines in NetJack2.
2009-01-27 Stephane Letz <[email protected]>
* Better recovery of network overload situations, now "resynchronize" by skipping cycles."
2009-01-26 Stephane Letz <[email protected]>
* Fix JackNetInterface::SetNetBufferSize for socket buffer size computation and JackNetMasterInterface::DataRecv if synch packet is received, various cleanup.
* Fix in JackAlsaAdapter::Open.
* Simplify audio packet order verification.
* Set default mode to 'slow' in JackNetDriver and JackNetAdapter.
2009-01-19 Stephane Letz <[email protected]>
* Synchronize ALSA backend code with JACK1 one.
2009-01-17 Stephane Letz <[email protected]>
* JackMessageBuffer was using thread "Stop" scheme in destructor, now use the safer thread "Kill" way.
2009-01-14 Stephane Letz <[email protected]>
* Cleanup server starting code for clients directly linked with libjackserver.so.
2009-01-09 Stephane Letz <[email protected]>
* JackProfiler scan already running clients (so can now be added anytime in the graph).
2009-01-09 Stephane Letz <[email protected]>
* New JackProfiler class for real-time server monitoring.
2009-01-07 Stephane Letz <[email protected]>
* Use up to BUFFER_SIZE_MAX frames in midi ports, fix for ticket #117.
2009-01-05 Stephane Letz <[email protected]>
* Synchronize jack2 public headers with JACK1 ones.
* Implement jack_client_real_time_priority and jack_client_max_real_time_priority API.
2008-12-18 Stephane Letz <[email protected]>
* For ALSA driver, synchronize with latest JACK1 memops functions.
* Use memops functions in JackOSSDriver.
* Use memops functions in JackOSSAdapter.
2008-12-17 Stephane Letz <[email protected]>
* Use JACK_DRIVER_DIR variable in internal clients loader.
2008-12-16 Stephane Letz <[email protected]>
* Fix JackOSSDriver::SetBufferSize (was crashing when restoring old size), fix ticket #111.
* Force memory page in of profiling array in JackOSSDriver::Open.
* Cleanup profiling code.
* Client and library global context cleanup in case of incorrect shutdown handling (that is applications not correctly closing client after server has shutdown).
2008-12-08 Stephane Letz <[email protected]>
* Forbid JackOSSDriver to run in "aynchronous" mode, correct DSP CPU computation.
2008-12-04 Stephane Letz <[email protected]>
* More profiling in JackOSSDriver: sample conversion duration is measured.
2008-12-02 Stephane Letz <[email protected]>
* Optimize JackOSSDriver: no samples conversion if ports are not connected.
2008-12-01 Stephane Letz <[email protected]>
* Force preload of memory table in JackEngineProfiling.
2008-11-27 Stephane Letz <[email protected]>
* Add timing profiling code in JackOSSDriver.
* Report ringbuffer.c fixes from JACK1.
2008-11-21 Stephane Letz <[email protected]>
* Report ringbuffer.c fixes from JACK1.
* Better isolation of server and clients system resources to allow starting the server in several user account at the same time.
* Correct ressource cleanup in case of driver open failure.
2008-11-19 Stephane Letz <[email protected]>
* Libjack shutdown handler does not "deactivate" (fActive = false) the client anymore, so that jack_deactivate correctly does the job later on.
* Filter SIGPIPE to avoid having client get a SIGPIPE when trying to access a died server.
2008-11-14 Stephane Letz <[email protected]>
* Version 1.9.1 started, fix symbols export in ringbuffer.c, cleanup on Windows.
2008-11-13 Stephane Letz <[email protected]>
* Fix jackctl_server_unload_internal.
2008-10-30 Stephane Letz <[email protected]>
* Correct JackClient::ShutDown.
* TimeOut management in JackNetUnixSocket on Solaris.
2008-10-23 Stephane Letz <[email protected]>
* In JackOSSDriver, vmix mode is used by default, exclusif (O_EXCL) mode can be selected with -e option.
* Fix a crash in JackEngine::Close when backend cannot be loaded.
* Tim Blechmann optimization patch.
* Backport of latest Paul alsa_seqmidi changes.
2008-10-15 Stephane Letz <[email protected]>
* Fix a conflict with Audio Hijack in JackCoreAudioDriver.
2008-10-09 Stephane Letz <[email protected]>
* Use a mutex to make jack_client_open/jack_client_close thread safe, remove use of jack_init/jack_uninit.
2008-10-08 Stephane Letz <[email protected]>
* Fix a SMP related bug introduced in rev 2957 : remove the __SMP__ flag and define LOCK for SMP in all cases.
2008-10-02 Stephane Letz <[email protected]>
* Correct file permission for jack-shm-registry POSIX shared memory segment.
* Checking for libsamplerate in waf, fix ticket #89."
* Header cleanup, add --clients and --ports options in configure.
2008-09-22 Stephane Letz <[email protected]>
* Socket time out implementation on Solaris.
* Fix a conflict with Audio Hijack in JackCoreAudioDriver.
2008-10-10 Stephane Letz <[email protected]>
* Improve OSS backend : SNDCTL_DSP_SETFRAGMENT must be done before, use of AFMT_S16_LE kind of values.
2008-10-09 Stephane Letz <[email protected]>
* First version of OSS backend.
* Use a mutex to make jack_client_open/jack_client_close thread safe, remove use of jack_init/jack_uninit.
2008-10-08 Stephane Letz <[email protected]>
* Fix a SMP related bug introduced in rev 2957 : remove the __SMP__ flag and define LOCK for SMP in all cases.
2008-10-03 Stephane Letz <[email protected]>
* Add engine profiling tools.
2008-10-02 Stephane Letz <[email protected]>
* Correct file permission for jack-shm-registry POSIX shared memory segment.
* Checking for libsamplerate in waf, fix ticket #89."
* Header cleanup, add --clients and --ports options in configure.
2008-10-01 Stephane Letz <[email protected]>
* First Solaris version.
2008-09-22 Stephane Letz <[email protected]>
* Cleanup jack_port_id_t/jack_port_t mess, should work again on 64 bits machines."
2008-09-20 Stephane Letz <[email protected]>
* Michael Voigt JackAPI cleanup patch.
2008-09-19 Stephane Letz <[email protected]>
* Michael Voigt JackTime cleanup patch.
2008-09-17 Stephane Letz <[email protected]>
* New JackDriverInfo class to cleanup driver loading code.
2008-09-08 Stephane Letz <[email protected]>
* Better symbols export for server and client side libraries.
2008-09-06 Stephane Letz <[email protected]>
* Correct driver hierarchy on macosx and windows targets.
2008-09-05 Stephane Letz <[email protected]>
* Merge Michael Voigt "drops" branch after reorganization step.
2008-09-04 Stephane Letz <[email protected]>
* Michael Voigt 4th source reorganization patch.
* Correct JackNetDriver initialization.
2008-09-03 Stephane Letz <[email protected]>
* Implement DBUS entry points to handle internal clients, add new commands in jack_control.
* Add new "desc" (extended description) in jack_driver_desc_t, to be used by backends and internal clients.
2008-09-01 Stephane Letz <[email protected]>
* Michael Voigt third source reorganization patch.
* Add new jack_set_port_rename_callback API, jack_port_set_name is now a server request that call port rename callbacks.
2008-08-31 Stephane Letz <[email protected]>
* Michael Voigt second source reorganization patch.
2008-08-28 Stephane Letz <[email protected]>
* Michael Voigt first source reorganization patch.
2008-08-26 Stephane Letz <[email protected]>
* Better parameter handling in JackCoreAudioAdapter.
* Fix memory leaks.
2008-08-23 Stephane Letz <[email protected]>
* Implements internal clients management API.
2008-08-22 Stephane Letz <[email protected]>
* Move GetCurrentTransportFrame code from JackClient to JackTransportEngine.
* Add a fNetworkSync state in JackTransportEngine used in network.
2008-08-03 Stephane Letz <[email protected]>
* Fix JackFrameTimer::Time2Frames and JackTimer::Frames2Time, jack_cpu compiled again.
2008-08-01 Stephane Letz <[email protected]>
* Fix desallocation of remaining clients when server quits.
* Close remaining client sockets in JackSocketServerChannel::Close.
* Correct JackClient::Close() to request server close only if server is running.
2008-07-30 Stephane Letz <[email protected]>
* Remove restriction that port connection could be done only if the client was activated.
2008-07-25 Stephane Letz <[email protected]>
* Florian Faber patch for 32 bit float (LE only) support to jack's alsa driver.
* Fix a crash bug when desallocating a non completely created external client.
2008-07-24 Stephane Letz <[email protected]>
* Fix server client OSX special notification mechanism, CoreAudio driver compilation back for 10.4.
2008-07-18 Stephane Letz <[email protected]>
* Correct audioadapter when a sample rate value different from jack server one is chosen.
* Cleanup in JackTransportEngine, move some code that was in JackClient class.
* Remove transport_type.h file, move transport types in types.h file.
2008-07-12 Stephane Letz <[email protected]>
* Loopback driver working again.
2008-07-08 Stephane Letz <[email protected]>
* Add jack_get_descriptor in internal clients API.
* Fix JackFreewheelDriver::Process() in case if client time-out : continue processing until a better recovery strategy is chosen.
2008-07-08 Stephane Letz <[email protected]>
* Merge windows branch back to trunk.
2008-07-05 Stephane Letz <[email protected]>
* Netioadapter renamed in audioadapter.
2008-07-04 Stephane Letz <[email protected]>
* Netioadapter now adapts for buffer size and sample rate changes.
2008-07-03 Stephane Letz <[email protected]>
* Add IsFixedBufferSize method in all drivers.
2008-07-02 Stephane Letz <[email protected]>
* New netioadapter in server client.
2008-06-20 Stephane Letz <[email protected]>
* Add new jack_client_stop_thread and jack_client_kill_thread API.
* New generic BuildClientPath for internal clients loading.
2008-06-19 Stephane Letz <[email protected]>
* Embed JackEngineControl in JackDriver (starting from Tim Blechmann idea).
2008-06-18 Stephane Letz <[email protected]>
* On OSX waf now compiles Universal Binaries.
2008-06-17 Stephane Letz <[email protected]>
* Driver class hierarchy simplification.
* Update waf for compilation on OSX.
2008-06-13 Stephane Letz <[email protected]>
* Correct JackPosixThread::ThreadHandler termination, do not set buffer size if same value is used.
* Another Tim Blechmann cleanup patch + do no allocate JackClientControl in shared memory for server internal clients.
2008-06-12 Stephane Letz <[email protected]>
* Another Tim Blechmann patch to remove unnecessary virtual methods.
2008-06-09 Stephane Letz <[email protected]>
* Improve net driver so that jack clients can be registered even if driver has not yet started.
2008-06-08 Stephane Letz <[email protected]>
* Add a missing EXPORT for JackException class.
2008-06-06 Stephane Letz <[email protected]>
* Better error checking in JackGraphManager::RemoveAllPorts.