forked from geofft/timidity
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
1223 lines (851 loc) · 41.8 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
2010-09-19 Kentaro Sato <[email protected]>
* timidity/instrum.[ch]: Fix a bug created at the previous commit
that prevents alternate instruments from loading occasionally.
* timidity/instrum.c, timidity/readmidi.[ch]:
Fix a bug that ignores user drum source instrument when
"soundfont" directive is used.
* timidity/playmidi.c: Fix a bug that ignores non-standard drumsets
when a soundfont is specified with "soundfont" directive and
the instrument is loaded as needed.
* interface/w32g_pref.c: Fix potential uninitialized pointers access.
* interface/w32g_syn.c: Add access keys to some of twsyng menuitems.
2010-09-12 Kentaro Sato <[email protected]>
* timidity/timidity.c (set_val_float_t):
Fix an error message for the bad floating point values.
* timidity/instrum.c: Fix a bug that ignores non-standard drumsets
when a soundfont is specified with "soundfont" directive.
2010-08-28 Kentaro Sato <[email protected]>
* timidity/timidity.c: Remove the current directory for
the search path of LoadLibrary(), which is invoked when using
output formats that depends on a DLL. (Windows executable)
Quick fix for Microsoft Security Advisory 2269637.
2010-07-10 Kentaro Sato <[email protected]>
* timidity/sndfont.c: Correct soundfont broken loop point
to avoid infinite loop on resampling.
2010-06-05 Kentaro Sato <[email protected]>
* timidity/reverb.[ch]:
Fix insertion effect Lo-Fi making loud noise.
* timidity/mix.c: Workaround for Moog VCF making loud noise.
* timidity/playmidi.c: Remove obsolete filter frequency cap.
2010-05-23 Kentaro Sato <[email protected]>
* timidity/readmidi.c, timidity/reverb.[ch]:
Fix ch_3tap_delay crash.
* timidity/sndfont.c:
Fix infinite loop on reusing soundfont struct.
2010-05-17 Eric A. Welsh <[email protected]>
* timidity/readmidi.c: Allow Device Numbers other than 0x10 for
XG SYSTEM ON SYSEX events.
* timidity/mix.c: Fix existing anti-popping minimum volume ramps
for expression, volume, pans, etc.
Extend anti-popping minimum volume ramps to envelope amp changes.
2009-12-23 Yair K. <[email protected]>
* timidity/sun_a.c (acntl):
Fix for message PM_REQ_GETQSIZ, PM_REQ_GETFRAGSIZ.
2009-12-19 Kentaro Sato <[email protected]>
* timidity/readmidi.c: Fixed crash when loading long music.
* timidity/output.[ch], timidity/timidity.c:
Fixed corruption of the default device encoding on some occasion.
* timidity/output.[ch], timidity/w32_a.c:
Fixed Windows audio driver 24-bit output.
* interface/w32g_syn.c: Better tray icon removal.
2009-10-04 Kentaro Sato <[email protected]>
* doc/C/timidity.1, doc/ja_JP.eucJP/timidity.1,
timidity/reverb.[ch], timidity/timidity.c:
Added Freeverb parameter options to --reverb.
* timidity/freq.c, timidity/sndfont.c:
Reduced warnings.
2009-03-16 TAMUKI Shoichi <[email protected]>
* timidity/readmidi.c (gloom_list):
Fix for GM2 drumch on program change
* timidity/playmidi.c (midi_drumpart_change): Beautify
2009-03-15 Kentaro Sato <[email protected]>
* timidity/miditrace.c:
Fix for Mac sound spectrum being out of sync in trace mode.
* timidity/reverb.c:
Revert r1.69 change for panning delay that caused off-by-one.
2009-03-15 Kentaro Sato <[email protected]>
* interface/w32g_c.c: Display errors reported on startup.
* interface/w32g_utl.c: Add configuration fallbacks.
* timidity/midi_a.c: Remove unused local variables.
* timidity/sndfont.c:
CFG_FOR_SF_SUPPORT_FFT can be externally defined. (cfgforsf)
2009-03-04 TAMUKI Shoichi <[email protected]>
* interface/ncurs_c.c, timidity/readmidi.c:
Fix to fit with MAX_CHANNELS > 32
* timidity/playmidi.c (find_voice): Beautify
2008-12-06 Keishi Suenaga <[email protected]>
* configure.in: Fix mingw detection and replace wsock32 by ws2_32.
* timidity/w32_libOggFLAC_dll.c: Small fix.
* utils/getaddrinfo.c(new file), utils/Makefile.am, utils/net.c:
utils/net.h: Windows 2000 compatible network.
2008-05-22 Yair K. <[email protected]>
* interface/xaw_i.c: reinstate one line.
2008-05-22 TAMUKI Shoichi <[email protected]>
* utils/net.c: Fix for AI_ADDRCONFIG unsupported
2008-05-21 Yair K. <[email protected]>
* interface/server_c.c, libarc/url_ftp.c, libarc/url_http.c,
libarc/url_news.c, timidity/timidity.c, utils/net.c:
add ipv6 support.
* timidity/sysdep.h: include more possible LP64 defines.
* timidity/readmidi.c: fix for broken karaoke files produced
by abc2mid.
* interface/xaw_i.c, interface/xaw.h: make compatible with
xaw3d v1.5, style changes.
* interface/TiMidity(-uj).ad: move useButtom, useRight resources
from xaw_i.c to here.
* timidity/oss_a.c: use 0x7fff arg to get maximum number of
fragments. modernize ioctls a bit.
2008-04-16 Keishi Suenaga <[email protected]>
* interface/w32g_pref.c: WIN64 with AMD64 small fix
2008-04-16 Keishi Suenaga <[email protected]>
patches by Yair K.
* interface/xaw_i.c, interface/x_trace.c, interface/x_trace.h:
xaw SIGSEGV fix.
2008-04-16 Keishi Suenaga <[email protected]>
a patch by Stas Sergeev
* interface/alsaseq_c.c: idle time patch.
2008-04-13 Keishi Suenaga <[email protected]>
* configure.in, doc/C/README.w32, doc/ja_JP.eucJP/README.w32,
interface/Makefile.am, timidity/sysdep.h:
update files about Compile for Windows.
* interface/w32g.h, interface/w32g_c.c, interface/w32g_i.c,
interface/w32g_pref.c, interface/w32g_ut2.c, interface/w32g_utl.c,
timidity/controls.h, timidity/optcode.h, timidity/playmidi.c,
timidity/sysdep.h, timidity/w32_a.c, timidity/reverb.c:
support for WIN64 with AMD64
2008-04-08 TAMUKI Shoichi <[email protected]>
* timidity/timidity.c: Fix atavism (reversion) and change a bit
2008-04-08 Keishi Suenaga <[email protected]>
* timidity/ao_a.c, timidity/portaudio_a.c, timidity/timidity.c,
timidity/w32_a.c: select audio device only in -o option
2008-04-06 TAMUKI Shoichi <[email protected]>
* timidity/timidity.c: Revert short -Od(n) option for output
device ID
2008-04-06 Keishi Suenaga <[email protected]>
* timidity/w32_libFLAC_dll.c, timidity/w32_libFLAC_dll_g.h:
support new flac dll(1.2.1)
2008-04-06 Keishi Suenaga <[email protected]>
* timidity/common.c, timidity/speex_a.c: fix compliation
* timidity/midi_a.c: BorlancC patch
2008-04-05 TAMUKI Shoichi <[email protected]>
* timidity/timidity.c: Remove short option -Od(n) for output
device ID because -O? option is assigned for output format
* TiMidity(-uj).ad, interface/Makefile.am: Fix trivial typo,
translate into Japanese, and move to interface directory
TODO: update man page of timidity.1
--output-devices=n
--preserve-silence
TODO: update ja_JP.eucJP/README.xaw
2008-04-03 Keishi Suenaga <[email protected]>
patches by Yair K.
* interface/Makefile.am, bitmaps/Makefile.am, interface/arrow.xbm,
interface/check.xbm, interface/off.xbm, interface/on.xbm: remove
2008-04-02 Keishi Suenaga <[email protected]>
patches by Yair K.
* timidity/common.c, common.makefile.in, configure.in,
doc/C/README.xaw, interface/arrow.xbm, interface/check.xbm,
interface/Makefile.am, interface/off.xbm, interface/on.xbm,
interface/xaw_c.c, interface/xaw.h, interface/xaw_i.c,
Makefile.am, Makefile.in, script/unix2dos.sh, timidity/aiff_a.c,
timidity/au_a.c, timidity/common.c, timidity/flac_a.c,
timidity/gogo_a.c, timidity/m2m.c, timidity/midi_a.c,
timidity/modmid_a.c, imidity/output.h, timidity/playmidi.c,
timidity/raw_a.c, timidity/speex_a.c, timidity/vorbis_a.c,
timidity/wave_a.c: some improvements of XAW interface.
* interface/bitmaps/arrow.xbm, interface/bitmaps/check.xbm,
interface/bitmaps/fast.xbm, interface/bitmaps/keydown.xbm,
interface/bitmaps/keyup.xbm, interface/bitmaps/off.xbm,
interface/bitmaps/on.xbm, interface/bitmaps/slow.xbm,
interface/xdnd.c, interface/xdnd.h, interface/x_trace.c,
interface/x_trace.h, TiMidity.ad, TiMidity-uj.ad: add
* TiMidity.ad.in, TiMidity-uj.ad.in: remove
2008-04-01 Keishi Suenaga <[email protected]>
a patch by Milan Zamazal
* timidity/playmidi.c, timidity/playmidi.h, timidity/readmidi.c,
timidity/timidity.c: add preserve-silence option
2008-03-31 Keishi Suenaga <[email protected]>
a patch from Yair K.
* configure.in, utils/support.c, utils/support.h: fix-snprintf-crash
2008-03-30 Keishi Suenaga <[email protected]>
patches from Yair K.
* libarc/arc_tar.c: fix archive add crash
* timidity/reverb.c: fix reverb crash from Debian
* timidity/miditrace.c: fix soundspec in trace mode
* autoconf/utils.m4, configure.in, timidity/Makefile.am,
timidity/midi_a.c, timidity/output.c, timidity/reverb.c,
timidity/reverb.h, timidity/sun_a.c, timidity/sysdep.h:
for support OpenBSD
2008-03-28 Stas Sergeev <[email protected]>
* timidity/midi_a.c: remove gnuc extensions
2007-03-10 Keishi Suenaga <[email protected]>
* interface/npsyn_c.c, interface/rtsyn.h, interface/rtsyn_common.c,
interface/rtsyn_npipe.c, timidity/npipe_a.c, timidity/playmidi.c,
timidity/portaudio_a.c, timidity/timidity.c, utils/timer.c:
Windows Named Pipe interface.
2007-02-09 Keishi Suenaga <[email protected]>
* interface.h.in: Windows Named Pipe interface
* timidity/timidity.c: fix typo
2007-02-09 Keishi Suenaga <[email protected]>
* configure.in, interface/Makefile.am, interface/rtsyn.h,
interface/rtsyn_common.c, timidity/Makefile.am, timidity/output.c,
timidity/timidity.c, timidity/controls.c:
Windows Named Pipe interface (new)
* interface/npsyn_c.c, interface/rtsyn_npipe.c, timidity/npipe_a.c:
(add)
* timidity/resample.c: small fix freeing gauss_table.
* windrv/timiditydrv.c, windrv/timiwp_timidity.c:
fix for WindowsMediaPlayer.
2007-01-28 Keishi Suenaga <[email protected]>
* interface/rtsyn_common.c: fix sysex check
* timidity/portaudio_a.c, timidity/w32_a.c: small fix for compiling
* timidity/timidity.c: w32 cfg file sequence changed
(option > exe dir > win dir). w32 set stdin&out binarymode
* windrv/Makefile.am, windrv/timiditydrv.idl: re-add timidity.idl
* windrv/timiditydrv.c: re-add MIDIOUTCAPS2A(W)
2007-01-14 Keishi Suenaga <[email protected]>
* timidity/flac_a.c, timidity/gogo_a.c, timidity/speex_a.c,
timidity/vorbis_a.c, timidity/wave_a.c, timidity/output_a.c:
fix for autofilename
2007-01-13 Keishi Suenaga <[email protected]>
* timidity/wave_a.c: fix for server interface.
2007-01-12 Keishi Suenaga <[email protected]>
* timidity/wave_a.c: fix for autofilename.
2007-01-05 TAMUKI Shoichi <[email protected]>
* timidity/timidity.c (main): Fix to avoid segmentation fault
when "." or nonexistent archive name is given
2007-01-04 Keishi Suenaga <[email protected]>
Fix -iW and timiditydrv.dll sound problem.
* timidity/portaudio_a.c: fix buffer overlow.
2007-01-04 TAMUKI Shoichi <[email protected]>
* timidity/midi_a.c (M_FWRITE):
Keep backward compatibility for gcc-2.95 or earlier
* timidity/timidity.c (parse_opt_output_device): Change a bit
2007-01-03 Keishi Suenaga <[email protected]>
Fix -iW and timiditydrv.dll sound problem.
* timidity/portaudio_a.c: remove broken acntl()s.
2007-01-01 Keishi Suenaga <[email protected]>
* timidity/timidity.c, timidity/w32_a.c,
timidity/portaudio_a.c: can select output device.
2007-01-01 Kentaro Sato <[email protected]>
* timidity/playmidi.[ch], timidity/readmidi.c:
Added support for GM2 Master Fine/Coarse Tuning, GS Master Tune
and XG Master Tuning (4C not 27) SysEx.
* timidity/readmidi.c: Fix suspected typo.
* libarc/unlzh.c: Reverted a useless fix of the previous commit.
2006-12-30 Keishi Suenaga <[email protected]>
* interfece/w32g_pref.c: can change timidity.cfg editor
by environment valuable TIMIDITY_CFG_EDITOR.
2006-12-29 Kentaro Sato <[email protected]>
* timidity/controls.[ch]: Changed argument type of std_write().
* timidity/midi_a.c: Imploved system independency.
* libarc/unlzh.c: Fixed vulnerabilities named
CVE-2006-4335, CVE-2006-4337, CVE-2006-4338.
2006-12-27 Keishi Suenaga <[email protected]>
* timidity/portaudio_a.c: bug fix
* interface/w32g_pref.c, interface/w32g_pref.h,
w32_portaudio_dll.c: asio dialog in win GUI.
2006-12-26 Keishi Suenaga <[email protected]>
* timidity/portaudio_a.c,
timidity/w32_portaudio_dll.c: fix portaudio v19 support
now use only one dll named portaudio.dll.
2006-12-23 Keishi Suenaga <[email protected]>
* windrv/Makefile.am, windrv/timiditydrv.c: free from idl
* windrv/timiditydrv.idl: removed
* windrv/oemsetup.inf: removed
* doc/C/README.w32, doc/ja_JP.eucJP/README.w32: updated
2006-12-23 Keishi Suenaga <[email protected]>
* configure.in, doc/C/README.w32, doc/ja_JP.eucJP/README.w32,
interface/Makefile.am, interface/ncurs_c.c,
interface/rtsyn_common.c, interface/rtsyn_winmm.c,
interface/w32g_syn.c, interface/winsyn_c.c,
interface/wrdt_w32g.c, libarc/Makefile.am, libarc/url_file.c,
libarc/url_ftp.c, libarc/url_http.c, libarc/url_mem.c,
libarc/url_news.c, libarc/url_newsgroup.c, libunimod/Makefile.am,
libunimod/unimod.h, timidity/Makefile.am, timidity/aiff_a.c,
timidity/aq.c, timidity/au_a.c, timidity/controls.c,
timidity/flac_a.c, timidity/gogo_a.c, timidity/list_a.c,
timidity/midi_a.c, timidity/miditrace.c, timidity/mod2midi.c,
timidity/playmidi.c, timidity/playmidi.h, timidity/portaudio_a.c,
timidity/raw_a.c, timidity/readmidi.c, timidity/recache.c,
timidity/sndfont.c, timidity/sysdep.h, timidity/timidity.c,
timidity/w32_a.c, timidity/w32_gogo.c,
timidity/w32_libFLAC_dll.c, timidity/w32_libOggFLAC_dll.c,
timidity/wave_a.c, utils/Makefile.am, utils/mblock.c,
utils/readdir.h, utils/readdir_win.c, utils/support.c,
utils/tmdy_getopt.h, windrv/Makefile.am: Pelles C Compiler support
2006-12-21 Keishi Suenaga <[email protected]>
C++ dependency is removed.
* configure.in: remove AC_PROG_CXX, always link winsock32 for midi_a.c
* windrv/timiditydrv.cpp: removed
* windrv/timiditydrv.c: added
* windrv/Makefile_am: remove C++ dependency
2006-12-20 Keishi Suenaga <[email protected]>
* timidity/midi_a.c: windows compilers support.
* timidity/effect.c: remove duplicate definitions.
2006-12-18 Keishi Suenaga <[email protected]>
* timidity/midi_a.c: u_int8_t must be uint8_t.
* timidity/flac_a.c: fix for mingw.
2006-12-18 Keishi Suenaga <[email protected]>
* autoconf/ogg.m4: from libogg-1.1.3.tar.gz
* autoconf/vorbis.m4: from libvorbis-1.1.2.tar.gz
* timidity/portaudio_a.c: bug fix
2006-12-14 Stas Sergeev <[email protected]>
* interface/server_c.c: extend midi protocol.
* timidity/midi_a.c: new file.
2006-12-13 URABE Shyouhei <[email protected]>
* timidity/flac_a.c: merge patch from FLAC team.
* interface/xaw_i.c: merge patch fixing gcc4 compilation problem.
* interface/alsaseq_c.c, interface/emacs_c.c, interface/gtk_c.c,
interface/mac_c.c, interface/motif_c.c, interface/ncurs_c.c,
interface/portmidisyn_c.c, interface/server_c.c,
interface/tk_c.c, interface/w32g_c.c, interface/w32g_syn.c,
interface/winsyn_c.c, interface/xaw_c.c, interface/xskin_c.c,
timidity/controls.h, timidity/playmidi.c, timidity/playmidi.h,
timidity/sndfont.c, timidity/timidity.c:
propagate return code
2006-07-27 Keishi Suenaga <[email protected]>
* timidity/timidity.c (open_file): Fix coredump when random play.
(free files problem)
2006-06-02 TAMUKI Shoichi <[email protected]>
* timidity/common.c (open_file): Ignore directories only when
loading a GUS/patch instrument in order to avoid the trouble
in {gtk,motif,tcltk} interface and WRD display
* timidity/timidity.c (main): Revert fix supplying suffix '/'
to each argv elements when the path *is* a directory but
*is not* suffixed by '/'
2006-05-31 TAMUKI Shoichi <[email protected]>
* timidity/instrum.c, timidity/readmidi.c:
Revert and fix around alternate assign
2006-05-28 TAMUKI Shoichi <[email protected]>
* interface/mac_c.c, interface/motif_c.c, interface/vt100_c.c,
interface/xaw_c.c, timidity/sndfont.c:
Add struct member of ControlMode to fit with new interface
2006-05-26 Eric A. Welsh <[email protected]>
* timidity/timidity.c (main): The free(files[i]) loop was causing
segfaults by free'ing previously free'd memory. The strings
within files[] are allocated as a single block pointed to by
files[0], then the other string pointers point to the separate
strings within the files[0] block. Thus only files[0] should
be free'd.
2006-05-12 TAMUKI Shoichi <[email protected]>
* coufigure.in: Fix CFLAGS issue
2006-05-06 URABE Shyouhei <[email protected]>
* configure.in: add wcc386 check.
2006-04-14 Stas Sergeev <[email protected]>
* interface/server_c.c: add midi protocol.
2006-03-21 Kentaro Sato <[email protected]>
* timidity/aq.c: Made use of free-on-exit thingie.
* timidity/instrum.c: Reverted needless r1.24 changes.
* timidity/resample.c: Reverted gauss_table to be realloc'ed to allow
interfaces to change N-order dynamically. No leaks.
* timidity/timidity.c: Reverted r1.173 changes around mblock.
* libarc/arc.c: Better path separators skipping.
2006-03-19 Stas Sergeev <[email protected]>
* timidity/timidity.c (main): dynamic allocation of
dynamic_lib_root
* interface/server_c.c: save CPU power
2006-02-04 Keishi Suenaga <[email protected]>
* configure.in, doc/ja_JP.eucJP/README.w32, timidity/Makefile.am,
windrv/Makefile.am, windrv/timiditydrv.cpp, windrv/timiditydrv.def:
timiditydrv.dll can comple with digital Mars
* timidity/portaudio_a.c: enable WRD with portaudio.
* timidity/playmidi.c, interface/rtsyn_common.c, timidity/instrum.c,
timidity/readmidi.c: fix unfreed memory.
2006-01-29 Keishi Suenaga <[email protected]>
* timidity/playmidy.c: export reet_midi();
* interface/rtsyn_common.c: bugfix
* timidity/portaudio_a.c: latency changes by interface charactor.
2006-01-28 Keishi Suenaga <[email protected]>
Fixes of memory leak (checked with win_and dumb win_gui)
* interface/w32g.h, interface/w32g_mag.c, interface/w32g_mag.h,
interface/w32g_playlist.c, interface/w32g_subwin.c,
interface/w32g_subwin.h, interface/w32g_utl.c, interface/w32g_utl.h,
libarc/arc.c, timidity/aq.c, timidity/aq.h, timidity/instrum.c,
timidity/instrum.h, timidity/playmidi.c, timidity/readmidi.c,
timidity/readmidi.h, timidity/recache.c, timidity/recache.h,
timidity/resample.c, timidity/resample.h, timidity/sffile.c,
timidity/sndfont.c, timidity/timidity.c, timidity/wrdt.c,
windrv/timiwp_timidity.c, interface/rtsyn_common.c:
not free_global_mblock() bitween sound;
2006-01-25 Keishi Suenaga <[email protected]>
* windrv/mmddk.h: Added. LGPL version.
* windrv/Makefile.am, doc/ja_JP.eucJP/README.w32, doc/C/README.w32:
no more depence on NTDDK.
* interface/rtsyn_common.c: call free_global_mblock() with option -U
* timidity/readmidi.c: Mingw gcc3 and Borland C hack
2006-01-23 Keishi Suenaga <[email protected]>
* timidity/mix.c, timidity/optcode.c, timidity/optcode.h,
timidity/playmidi.c, timidity/reverb.c, timidity/timidity.c,
timidity/wrd.h, timidity/wrdt.c: supress Borland C inline warrings.
2006-01-23 Keishi Suenaga <[email protected]>
* timidity/readmidi.c: XG reverb fix
* timidity/sysdep.h: digital mars fix
2006-01-21 Keishi Suenaga <[email protected]>
* timidity/portaudio_a.c: bug fix
* interface/w32g_syn.c: digital mars compile fix
* timidity/effect.c: Noise shaping noise fix.
2006-01-19 Keishi Suenaga <[email protected]>
Can compile with Digital Mars.
* configure.in, interface/Makefile.am, libarc/Makefile.am,
libunimod/Makefile.am, timidity/Makefile.am, utils/Makefile.am,
timidity/common.c, timidity/list_a.c, timidity/timidity.c,
utils/support.c: Changes for Digital Mars.
* timidity/effect.c.orig: Noise shaping noise hack.
* script/unix2dos.sh: Added. newline code conversion(LF->CRLF).
2006-01-17 Keishi Suenaga <[email protected]>
* interface/w32g.h: fix LCD array size mismatch hang up.
* interface/w32g_pref.c, interface/w32g_utl.c:
fix over 256 voces hang up about win GUI.
* timidity/reverb.h: small fix.
2006-01-16 Keishi Suenaga <[email protected]>
Supress linker errors about Windows GUI executables.
* configure.in: shape up.
* interface/Makefile.am: don't link tty and dumb objs
to GUI executables.
* interface/w32g_i.c: borand C volatile link problem fix.
* interface/w32g_ut2.c.orig: small fix.
* timidity/controls.c, timidity/timidity.c, timidity/wrdt.c:
GUI executables don't use dumb or tty controls.
* timidity/reverb.c: don't define public variables in .h file.
2006-01-15 Keishi Suenaga <[email protected]>
* configure.in: MSVC compile fix
* windrv/timiditydrv.cpp: use _beginthreadex not CreateThread
* doc/ja_JP.eucJP/README.w32: typo
* script/Makefile.am: add script/wpp386_w.sh
* interface/ncurs_c.c: fix
2006-01-12 Keishi Suenaga <[email protected]>
* doc/C/README.w32, doc/ja_JP.eucJP/README.w32:
add wine wrc.exe discription
* interface/Makefile.am: add rc.exe japanese language option -l0x11
2006-01-12 Keishi Suenaga <[email protected]>
* configure.in: Add mkstemp check
* doc/C/README.w32, doc/ja_JP.eucJP/README.w32:
About timiditydrv compilation
* windrv/Makefile.am: Change to use midl.exe
* windrv/dlldata.c, windrv/timiditydrv.h, windrv/timiditydrv_i.c,
windrv/timiditydrv_p.c:
Removed because will be ganerated by midl.exe.
2006-01-08 Keishi Suenaga <[email protected]>
* configure configure.in, utils/tmdy_getopt.h, doc/C/README.w32,
doc/ja_JP.eucJP/README.w32, script/wcc386_w.sh, timidity/au_a.c,
timidity/wave_a.c, utils/support.h: Changes for OpenWatcom 1.4
2005-12-19 Stas Sergeev <[email protected]>
* interface/server_c.c: Add server version.
2005-12-03 Stas Sergeev <[email protected]>
* interface/server_c.c: Do not ignore SIGPIPE
2005-11-26 URABE Shyouhei <[email protected]>
* timidity/timidity.c (parse_opt_i): fix for possible null-pointer
dereference when interface plugin is not found.
2005-11-26 Stas Sergeev <[email protected]>
* interface/ncurs_c.c, interface/dumb_c.c, interface/slang_c.c,
interface/tk_c.c, interface/emacs_c.c, interface/xskin_c.c,
interface/gtk_c.c, interface/server_c.c, interface/alsaseq_c.c,
interface/dynamic_c.c, timidity/controls.h, timidity/tables.c,
timidity/raw_a.c, timidity/controls.c, timidity/flac_a.c,
timidity/vorbis_a.c, timidity/au_a.c, timidity/wave_a.c,
timidity/aiff_a.c, timidity/speex_a.c:
warn when output to stdout makes no sense
2005-11-15 URABE Shyouhei <[email protected]>
* timidity/sysdep.h: [timidity-bugs-en:61] Add stdint.h check
2005-11-02 Kentaro Sato <[email protected]>
* timidity/playmidi.c: Changed sustained notes not to drop
when opt_overlap_voice_allow is enabled.
* interface/rtsyn.h: Added #ifdef for <sys/types.h>.
2005-11-01 URABE Shyouhei <[email protected]>
* doc/ja_JP.eucJP/README.tk: not -itt but -ikt
(thanks AOKI Taichi @naist)
2005-10-31 Stas Sergeev <[email protected]>
* interface/server_c.c: fix for timing bugs
2005-10-31 TAMUKI Shoichi <[email protected]>
* timidity/timidity.c: Change a bit
2005-10-31 Keishi Suenaga <[email protected]>
* Makefile.am, configure.in, doc/C/README.w32, timidity/Makefile.am,
timidity/timidity.c: Changed files
* windrv/Makefile.am, windrv/dlldata.c, windrv/oemsetup.inf,
windrv/timiditydrv.cpp, windrv/timiditydrv.def,
windrv/timiditydrv.h, windrv/timiditydrv.i,
windrv/timiditydrv.idl, windrv/timiditydrv.inf,
windrv/timiditydrv_i.c, windrv/timiditydrv_p.c,
windrv/timiwp_timidity.c, windrv/timiwp_timidity.h:
Windows Driver merged (New files)
2005-10-31 Keishi Suenaga <[email protected]>
* timidity/portaudio_a.c: for ASIO4ALL fix
* interface/rtsyn.h, interface/rtsyn_common.c: Change a bit
2005-10-30 TAMUKI Shoichi <[email protected]>
* timidity/playmidi.c, timidity/sndfont.c, timidity/timidity.c:
Change a bit
2005-10-28 Keishi Suenaga <[email protected]>
* timidity/w32_gogo.h: small fix
* interface/w32g_utl.c, interface/w32g_syn.c: changes for gcc4 windows
* interface/rtsyn_portmidi.c, interface/rtsyn_winmm.c,
timidity/playmidi.c, interface/rtsyn.h, timidity/instrum.h,
timidity/sndfont.c, interface/rtsyn_common.c, timidity/timidity.c:
New version of windows synthesizer mode. (new windows synth.)
Introduce --rtsyn-latency=(seconds) long-option.
* doc/C/README.w32, doc/ja_JP.eucJP/README.w32: correlated changes.
2005-10-22 Stas Sergeev <[email protected]>
* interface/server_c.c: fix for cmd_setbuf
2005-09-30 Stas Sergeev <[email protected]>
* interface/xaw_i.c, interface/server_c.c, interface/soundspec.c,
interface/motif_i.c, libarc/url_newsgroup.c, libarc/url_http.c,
libarc/url.c, libarc/url_ftp.c, libarc/url_file.c,
libarc/url_news.c, timidity/audriv_mme.c, timidity/wrd_read.c:
use stderr instead of stdout
2005-09-30 Eric A. Welsh <[email protected]>
* timidity/mod2midi.c: Defining out the ME_KEYPRESSURE related code
2005-09-28 URABE Shyouhei <[email protected]>
* interface/Makefile.am (EXTRA_DIST, install.dynamics):
sorry, this file was broken.
2005-09-26 Stas Sergeev <[email protected]>
* interface/server_c.c: usr stdout instead when stdin is a pipe.
2005-09-23 Stas Sergeev <[email protected]>
* interface/server_c.c (cmd_open): Security fix.
2005-09-23 URABE Shyouhei <[email protected]>
* configure.in: FreeBSD has tcltk named libtcl84 and libtk84
* timidity/timidity.c (list_dyna_interface): change dynamic
interface lister to some try-and-error mechanizm.
* interface/*.txt: deleted. (not used any longer)
2005-09-22 Mikhail Teterin <[email protected]>
* timidity/playmidi.c (process_sysex_event): fix typo
2005-09-22 Kentaro Sato <[email protected]>
* timidity/smplfile.c: Fixed possible crash when Sampler chunk's
dwSamplePeriod is erroneously 0.
2005-05-08 URABE Shyouhei <[email protected]>
* timidity/timidity.c (dynamic_interface_module): rewrite.
* timidity/dl_dyld.c (dl_find_symbol): fix potential buffer overflow
* timidity/dl_dyld.c (dl_free): implement of dl_free()
2005-04-03 Kentaro Sato <[email protected]>
* timidity/sndfont.c: Fixed to compile cfgforsf.
2004-12-22 Ed Catmur <[email protected]>
* interface/gtk_i.c (Launch_Gtk_Process): Fix assertion error in
GTK-2.6.0
2004-12-08 Kentaro Sato <[email protected]>
* libarc/arc.c:
Fixed to skip the platform specific path separators right after #.
2004-12-04 Henrique de Moraes Holschuh <[email protected]>
* timidity/aRts_a.c (open_output): Fix for gcc >= 3.4.x
[timidity-bugs-en:00025]
2004-12-02 URABE Shyouhei <[email protected]>
* interface/ncurs_c.c: [timidity-bugs-ja:00118]
* timidity/timidity.c (list_dyna_interface): bug fix: cmp can be
uninitialized
2004-11-03 URABE Shyouhei <[email protected]>
* timidity/resample.c (rs_vib_bidir): disable PRECALC_LOOPS for
this function
2004-11-03 Henrique de Moraes Holschuh <[email protected]>
* timidity/aRts_a.c: disable aRts auto-detection to avoid
segmentation violation
2004-11-03 URABE Shyouhei <[email protected]>
* timidity/timidity.c (list_dyna_interface): ditto
* interface/dynamic_c.c (ctl_open): fix compile error
2004-11-03 Eric A. Welsh <[email protected]>
* timidity/playmidi.c: fix to correctly handle non-linear velocity
levels
2004-10-27 TAMUKI Shoichi <[email protected]>
* configure, autoconf/utils.m4, doc/{C,ja_JP.eucJP}/readme.dl,
interface/Makefile.{am,in}, interface/{dumb,ncurs,slang,motif,tk,
emacs,vt100,xaw,xskin,dynamic,mac,gtk,server,alsaseq,w32g,winsyn,
portmidisyn}_c.c, timidity/controls.h, timidity/timiidty.c:
Fix to fit with case-insensitive file system
* interface/interface_[nsmkeTaigA].txt: Remove
* interface/if_{ncurses,slang,motif,tcltk,emacs,vt100,xaw,xskin,
gtk,alsaseq}.txt: Add
2004-10-21 Henrique de Moraes Holschuh <[email protected]>
* timidity/mod2midi.c (Voice_Play, Voice_SetPeriod):
improve the code path when period2note returns -1
2004-10-21 Eric A. Welsh <[email protected]>
* timidity/mod2midi.c (period2note):
initialize *finetune when returning a bad period
* timidity/mod2midi.c (load_module_samples):
samples without names were causing NULL pointer reads
* timidity/mod2midi.c (period2note):
delete extra \n
2004-10-18 Eric A. Welsh <[email protected]>
* libunimod/mlutil.c (getAmigaPeriod): Avoid division by zero
* timidity/mod2midi.c: Change all VERB_NORMAL and VERB_VERBOSE
messages to VERB_NOISY.
2004-10-17 URABE Shyouhei <[email protected]>
* libunimod/mloader.c (SL_LoadSamples): too many arguments to
function `FreeSampleList'
* timidity/common.c, timidiyt/timidiyt.c: avoid confliction of
time.h and sys/time.h
* timidity/aq.c: fix wrong prototype (int -> void)
* timidity/wrd_read.c: #ifdef-out unknown pragma
* configure.in, timidity/timidity.c: no need of <stdbool.h>
* timidity/Makefile.am: bug fix
2004-10-14 URABE Shyouhei <[email protected]>
* interface/w32g_i.c (MPanelMessageHaveMesssage): fix typo
* autoconf/alsa.m4, autoconf/ao.m4, autoconf/arts.m4,
autoconf/esd.m4, autoconf/gtk-2.0.m4, autoconf/gtk.m4,
autoconf/libFLAC.m4, autoconf/libOggFLAC.m4, autoconf/ogg.m4,
autoconf/utils.m4, autoconf/vorbis.m4: Fixes for the
underquoting problems in the M4 macros.
2004-10-09 Kentaro Sato <[email protected]>
* interface/mac_c.c, interface/wrdt_mac.c, timidity/wrd.h,
utils/support.c: Fixes to compile on Mac OS.
2004-10-03 URABE Shyouhei <[email protected]>
* NEWS: Add new entry for 2.13.2
* configure.in: Change version to 2.13.2
2004-10-02 URABE Shyouhei <[email protected]>
* interface/wrdt_wcon.c: Fix double definition of print_ecmd()
* timidity/timidity.c (main): s/strcat/strncat/;
2004-09-29 URABE Shyouhei <[email protected]>
* NEWS: Add new entry for 2.13.1
2004-09-28 URABE Shyouhei <[email protected]>
* configure.in: Change version to 2.13.1
2004-09-27 URABE Shyouhei <[email protected]>
* utils/support.c (vsnprintf): ensure snpritnf() to return a
\0-terminated string
* interface/mac_c.c, interface/server_c.c, interface/w32g_c.c,
interface/w32g_i.c, interface/wrdt_dumb.c, interface/wrdt_mac.c,
interface/wrdt_tty.c, interface/wrdt_w32g.c, interface/xaw_i.c,
interface/xskin_i.c, libarc/arc.c, timidity/audriv_al.c,
timidity/audriv_mme.c, timidity/common.c, timidity/mac_qt_a.c,
timidity/sun_a.c, timidity/timidity.c, timidity/wrdt_read.c:
Fix to use strn* functinos.
2004-09-23 URABE Shyouhei <[email protected]>
* utils/support.h: ditto
* utils/support.c: ditto
* configure.in: add strlcpy and strlcat
2004-09-15 Eric A. Welsh <[email protected]>
* timidity/resample.c: Reimplement bounds cheking
2004-09-09 URABE Shyouhei <[email protected]>
* interface/gtk_c.c (ctl_total_time): ditto.
* interface/gtk_i.c (handle_input): Fix counter overflow
(fix for [timidity-bugs-en:00032])
* NEWS: Fix typo.
2004-09-07 Eric A. Welsh <[email protected]>
* freq.c: mostly rewritten
New pitch and chord detection algorithm that is much more
robust and accurate than before.
* sndfont.c (main): CFG_FOR_SF_SUPPORT_FFT related code
modified to work with new freq.c
2004-09-03 URABE Shyouhei <[email protected]>
* timidity/timidity.c: add null_play_mode
(fix for [timidity-bugs-en:00031])
* timidity/timidity.c (parse_opt_h): add prototype for
show_ao_device_info()
* timidity/readmidi.c (check_midi_file): Fix to recognize .rmi & .mfi
(Fix for [timidity-bugs-en:00030])
2004-09-01 URABE Shyouhei <[email protected]>
* timidity/timidity.c : Fix for linkage error in W32
* utils/support.h (S_ISDIR): define S_ISDIR for platforms without
S_ISDIR
* interface/xaw_i.c: avoid all-black file selector when tracer is
not enabled, thanks to [email protected]
2004-08-28 Eric A. Welsh <[email protected]>
* playmidi.c (new_chorus_voice, new_chorus_voice_alternate):
v1 and v2 are now swapped correctly
* playmidi.c (process_sysex_event):
many fixes to XG SYSEX parsing
* readmidi.c: (parse_sysex_event_multi):
many fixes to XG SYSEX parsing
* reverb.c (do_filter_lowpass1_stereo):
p->x1l and p->x1r are now properly updated
2004-08-22 Eric A. Welsh <[email protected]>
* timidity/mix.c (next_stage):
Added bounds checking after scaling envelope rates when
opt_tva_attack and/or opt_tva_decay are enabled. This fixes
previous short/silent note problems when these options were
enabled.
2004-07-10 TAMUKI Shoichi <[email protected]>
* interface/alsaseq_c.c, interface/rtsyn_common.c,
timidity/playmidi.c:
Suppress force keysig transposition at the beginning of
MIDI sequence
2004-07-01 TAMUKI Shoichi <[email protected]>
* interface/alsaseq_c.c, interface/rtsyn_common.c,
timidity/playmidi.c:
Adjust force keysig transposition so that performance may
feel it natural
2004-06-30 TAMUKI Shoichi <[email protected]>
* interface/alsaseq_c.c, interface/rtsyn_common.c,
timidity/playmidi.[ch], timidity/readmidi.c,
timidity/timidity.[ch]:
Reflect the result of -K and -T command option on interfaces
Improve force keysig calculation
Change the base number of measure (bar) counter as 1 (was 0)
2004-06-14 TAMUKI Shoichi <[email protected]>
* timidity/loadtab.c, timidity/tables.[ch]:
Fix bug in -Z command option
2004-06-09 Keishi Suenaga <[email protected]>
* timidity/reverb.c, timidity/tables.c,
doc/C/README.w32, doc/ja_JP.eucJP/README.w32:
small fixes for CbuilderX.
2004-06-02 Kentaro Sato <[email protected]>
* utils/support.[ch]: Implemented subset of stat() for Mac OS.
2004-06-02 URABE Shyouhei <[email protected]>
* utils/support.h: add things to treat the case of no <sys/stat.h>
* timidity/common.c: rebirth of HAVE_SYS_STAT_H
2004-06-01 URABE Shyouhei <[email protected]>
* timidity/timidity.c (canonicalize_path): fix typo
* timidity/common.c: fix compiling problem on VC6.
2004-05-31 Keishi Suenaga <[email protected]>
* configure.in:
dynamic linked runtime library must be used with Open Watcom.
2004-05-31 URABE Shyouhei <[email protected]>
* timidity/common.c (open_file): ignore directories when searching
a normal file
* timidity/timidity.c (main): suffix '/' is supplied to each argv
elems when the path IS a directory but IS NOT suffixed by '/'.
2004-05-31 Eric A. Welsh <[email protected]>
* timidity/instrum.h, timidity/instrum.c, timidity/m2m.c,
timidity/mod2midi.c, timidity/playmidi.c, timidity/sndfont.c:
root_freq_detected, transpose_detected, and chord variables
added to Sample type in instrum.h. Pitch detection is applied
to drum and MOD samples if surround chorus is enabled. This
allows the true pitch of the rendered voices to be determined,
so that surround chorus voice cancellation can be avoided by
choosing a chorus delay that is not close to half the period.
* playmidi.c (new_chorus_voice_alternate): Various fixes to
surround chorus. Uses pitch detection for drum and MOD samples.
Multiple similar drum instruments (snare1 and snare2, kick1 and
kick2) playing at once no longer cause voice cancellation and
strange perceived pans.
2004-05-31 Iwata <[email protected]>
* interface/gtk_i.c (open_file_cb): Fix compiling problem