-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
7837 lines (5158 loc) · 238 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
2014-12-25 11:41 uratec
* bin/: lsp2lpc/lsp2lpc.c, lspcheck/lspcheck.c: fix code format.
2014-12-11 18:51 uratec
* NEWS, configure.ac: update NEWS
2014-12-11 17:30 uratec
* COPYING, README, configure.ac, bin/acep/_acep.c, bin/acep/acep.c,
bin/acorr/_acorr.c, bin/acorr/acorr.c, bin/agcep/_agcep.c,
bin/agcep/agcep.c, bin/amcep/_amcep.c, bin/amcep/amcep.c,
bin/average/_average.c, bin/average/average.c, bin/b2mc/_b2mc.c,
bin/b2mc/b2mc.c, bin/bcp/bcp.c, bin/bcut/bcut.c,
bin/c2acr/_c2acr.c, bin/c2acr/c2acr.c, bin/c2ir/_c2ir.c,
bin/c2ir/c2ir.c, bin/c2sp/_c2sp.c, bin/c2sp/c2sp.c,
bin/cat2/cat2.c, bin/cdist/cdist.c, bin/clip/_clip.c,
bin/clip/clip.c, bin/da/da.h, bin/da/da.in, bin/da/dawrite.c,
bin/da/winplay.c, bin/da/winplay.h, bin/dct/_dct.c,
bin/dct/dct.c, bin/decimate/decimate.c, bin/delay/delay.c,
bin/delta/delta.c, bin/df2/_df2.c, bin/df2/df2.c, bin/dfs/_dfs.c,
bin/dfs/dfs.c, bin/dmp/dmp.c, bin/ds/ds.c, bin/dtw/dtw.c,
bin/echo2/echo2.c, bin/excite/excite.c, bin/extract/extract.c,
bin/fd/fd.c, bin/fft/_fft.c, bin/fft/fft.c, bin/fft2/_fft2.c,
bin/fft2/fft2.c, bin/fftcep/_fftcep.c, bin/fftcep/fftcep.c,
bin/fftr/_fftr.c, bin/fftr/fftr.c, bin/fftr2/_fftr2.c,
bin/fftr2/fftr2.c, bin/fig+fdrw/fdrw.c, bin/fig+fdrw/fig.c,
bin/fig+fdrw/fig.h, bin/fig+fdrw/fig0.c, bin/fig+fdrw/fig1.c,
bin/fig+fdrw/plot.c, bin/fig+fdrw/plot.h, bin/fig+fdrw/plsub.c,
bin/frame/frame.c, bin/freqt/_freqt.c, bin/freqt/freqt.c,
bin/gc2gc/_gc2gc.c, bin/gc2gc/gc2gc.c, bin/gcep/_gcep.c,
bin/gcep/gcep.c, bin/glsadf/_glsadf.c, bin/glsadf/glsadf.c,
bin/gmm/_gmm.c, bin/gmm/gmm.c, bin/gmm/gmmp.c,
bin/gnorm/_gnorm.c, bin/gnorm/gnorm.c, bin/grpdelay/_grpdelay.c,
bin/grpdelay/grpdelay.c, bin/histogram/_histogram.c,
bin/histogram/histogram.c, bin/idct/idct.c, bin/ifft/_ifft.c,
bin/ifft/ifft.c, bin/ifft2/_ifft2.c, bin/ifft2/ifft2.c,
bin/ifftr/_ifftr.c, bin/ifftr/ifftr.c, bin/ignorm/_ignorm.c,
bin/ignorm/ignorm.c, bin/impulse/impulse.c, bin/imsvq/_imsvq.c,
bin/imsvq/imsvq.c, bin/interpolate/interpolate.c, bin/ivq/_ivq.c,
bin/ivq/ivq.c, bin/lbg/_lbg.c, bin/lbg/lbg.c,
bin/levdur/_levdur.c, bin/levdur/levdur.c,
bin/linear_intpl/linear_intpl.c, bin/lmadf/_lmadf.c,
bin/lmadf/lmadf.c, bin/lpc/_lpc.c, bin/lpc/lpc.c,
bin/lpc2c/_lpc2c.c, bin/lpc2c/lpc2c.c, bin/lpc2lsp/_lpc2lsp.c,
bin/lpc2lsp/lpc2lsp.c, bin/lpc2par/_lpc2par.c,
bin/lpc2par/lpc2par.c, bin/lsp2lpc/_lsp2lpc.c,
bin/lsp2lpc/lsp2lpc.c, bin/lsp2sp/_lsp2sp.c, bin/lsp2sp/lsp2sp.c,
bin/lspcheck/_lspcheck.c, bin/lspcheck/lspcheck.c,
bin/lspdf/_lspdf.c, bin/lspdf/lspdf.c, bin/ltcdf/_ltcdf.c,
bin/ltcdf/ltcdf.c, bin/mc2b/_mc2b.c, bin/mc2b/mc2b.c,
bin/mcep/_mcep.c, bin/mcep/mcep.c, bin/merge/merge.c,
bin/mfcc/_mfcc.c, bin/mfcc/mfcc.c, bin/mgc2mgc/_mgc2mgc.c,
bin/mgc2mgc/mgc2mgc.c, bin/mgc2sp/_mgc2sp.c, bin/mgc2sp/mgc2sp.c,
bin/mgcep/_mgcep.c, bin/mgcep/mgcep.c, bin/mglsadf/_mglsadf.c,
bin/mglsadf/mglsadf.c, bin/minmax/minmax.c, bin/mlpg/_mlpg.c,
bin/mlpg/mlpg.c, bin/mlsacheck/mlsacheck.c, bin/mlsadf/_mlsadf.c,
bin/mlsadf/mlsadf.c, bin/msvq/_msvq.c, bin/msvq/msvq.c,
bin/nan/nan.c, bin/norm0/_norm0.c, bin/norm0/norm0.c,
bin/nrand/_nrand.c, bin/nrand/nrand.c, bin/par2lpc/_par2lpc.c,
bin/par2lpc/par2lpc.c, bin/pca/pca.c, bin/pca/pcas.c,
bin/phase/_phase.c, bin/phase/phase.c, bin/pitch/pitch.c,
bin/pitch/snack/COPYING, bin/pitch/snack/jkGetF0.c,
bin/pitch/snack/jkGetF0.h, bin/pitch/snack/sigproc.c,
bin/poledf/_poledf.c, bin/poledf/poledf.c, bin/psgr/dict.c,
bin/psgr/eps.c, bin/psgr/plot.c, bin/psgr/psgr.c,
bin/psgr/psgr.h, bin/ramp/ramp.c, bin/rawtowav/rawtowav.c,
bin/reverse/_reverse.c, bin/reverse/reverse.c, bin/rmse/_rmse.c,
bin/rmse/rmse.c, bin/root_pol/_root_pol.c,
bin/root_pol/root_pol.c, bin/sin/sin.c, bin/smcep/_smcep.c,
bin/smcep/smcep.c, bin/snr/snr.c, bin/sopr/sopr.c,
bin/spec/spec.c, bin/step/step.c, bin/swab/swab.c,
bin/symmetrize/symmetrize.c, bin/train/train.c,
bin/transpose/_transpose.c, bin/transpose/transpose.c,
bin/uels/_uels.c, bin/uels/uels.c, bin/ulaw/_ulaw.c,
bin/ulaw/ulaw.c, bin/us/us.c, bin/us/us16.in, bin/us/uscd.in,
bin/vc/_vc.c, bin/vc/vc.c, bin/vopr/vopr.c, bin/vq/_vq.c,
bin/vq/vq.c, bin/vstat/vstat.c, bin/vsum/vsum.c,
bin/wavjoin/_wavjoin.c, bin/wavjoin/wavjoin.c,
bin/wavsplit/_wavsplit.c, bin/wavsplit/wavsplit.c,
bin/window/_window.c, bin/window/window.c, bin/x2x/x2x.c,
bin/xgr/config.h, bin/xgr/gcdata.h, bin/xgr/plot.c,
bin/xgr/window.c, bin/xgr/xgr.c, bin/xgr/xgr.h,
bin/zcross/_zcross.c, bin/zcross/zcross.c, bin/zerodf/_zerodf.c,
bin/zerodf/zerodf.c, include/SPTK.h, lib/agexp.c, lib/cholesky.c,
lib/fileio.c, lib/fillz.c, lib/getfp.c, lib/getmem.c, lib/gexp.c,
lib/glog.c, lib/invert.c, lib/matrix.c, lib/movem.c, lib/mseq.c,
lib/theq.c, lib/toeplitz.c, script/bell.in, script/glogsp.in,
script/grlogsp.in, script/gseries.in, script/gwave.in,
script/mgc2mgclsp.in, script/mgclsp2mgc.in, script/raw2wav.in,
script/wav2raw.in: update copyright
2014-12-11 17:27 uratec
* bin/vc/hts_engine_API/: COPYING, HTS_engine.h, HTS_hidden.h,
HTS_misc.c, HTS_pstream.c, HTS_sstream.c: udpate hts_engine API
to latest version
2014-12-11 16:33 uratec
* bin/lsp2lpc/lsp2lpc.c, bin/lsp2sp/lsp2sp.c,
bin/lspcheck/lspcheck.c, bin/mgclsp2sp/mgclsp2sp.c,
include/SPTK.h: fix code format
2014-12-11 11:20 artk0816
* bin/: vc/vc.c, gmm/gmmp.c: separation of invert and gconst
calculations from load_GMM()
2014-12-11 11:14 artk0816
* bin/gmm/_gmm.c, bin/gmm/gmm.c, include/SPTK.h: addition of map
estimation for gmm
2014-12-04 21:13 uratec
* bin/pitch/swipe/: COPYING, swipe.c, vector.c, vector.h: update
swipe to version 1.5
2014-12-04 21:09 uratec
* bin/mlsacheck/mlsacheck.c: remove compiler warning message in
mlsacheck.
2014-12-04 10:46 uratec
* Makefile.am, configure.ac, bin/Makefile.am, bin/acep/Makefile.am,
bin/acorr/Makefile.am, bin/agcep/Makefile.am,
bin/amcep/Makefile.am, bin/average/Makefile.am,
bin/b2mc/Makefile.am, bin/bcp/Makefile.am, bin/bcut/Makefile.am,
bin/c2acr/Makefile.am, bin/c2ir/Makefile.am,
bin/c2ndps/Makefile.am, bin/c2sp/Makefile.am,
bin/cat2/Makefile.am, bin/cdist/Makefile.am,
bin/clip/Makefile.am, bin/da/Makefile.am, bin/dct/Makefile.am,
bin/decimate/Makefile.am, bin/delay/Makefile.am,
bin/delta/Makefile.am, bin/df2/Makefile.am, bin/dfs/Makefile.am,
bin/dmp/Makefile.am, bin/ds/Makefile.am, bin/dtw/Makefile.am,
bin/echo2/Makefile.am, bin/excite/Makefile.am,
bin/extract/Makefile.am, bin/fd/Makefile.am, bin/fft/Makefile.am,
bin/fft2/Makefile.am, bin/fftcep/Makefile.am,
bin/fftr/Makefile.am, bin/fftr2/Makefile.am,
bin/fig+fdrw/Makefile.am, bin/frame/Makefile.am,
bin/freqt/Makefile.am, bin/gc2gc/Makefile.am,
bin/gcep/Makefile.am, bin/glsadf/Makefile.am,
bin/gmm/Makefile.am, bin/gnorm/Makefile.am,
bin/grpdelay/Makefile.am, bin/histogram/Makefile.am,
bin/idct/Makefile.am, bin/ifft/Makefile.am,
bin/ifft2/Makefile.am, bin/ifftr/Makefile.am,
bin/ignorm/Makefile.am, bin/impulse/Makefile.am,
bin/imsvq/Makefile.am, bin/interpolate/Makefile.am,
bin/ivq/Makefile.am, bin/lbg/Makefile.am, bin/levdur/Makefile.am,
bin/linear_intpl/Makefile.am, bin/lmadf/Makefile.am,
bin/lpc/Makefile.am, bin/lpc2c/Makefile.am,
bin/lpc2lsp/Makefile.am, bin/lpc2par/Makefile.am,
bin/lsp2lpc/Makefile.am, bin/lsp2sp/Makefile.am,
bin/lspcheck/Makefile.am, bin/lspdf/Makefile.am,
bin/ltcdf/Makefile.am, bin/mc2b/Makefile.am,
bin/mcep/Makefile.am, bin/merge/Makefile.am,
bin/mfcc/Makefile.am, bin/mgc2mgc/Makefile.am,
bin/mgc2sp/Makefile.am, bin/mgcep/Makefile.am,
bin/mgclsp2sp/Makefile.am, bin/mglsadf/Makefile.am,
bin/minmax/Makefile.am, bin/mlpg/Makefile.am,
bin/mlsacheck/Makefile.am, bin/mlsadf/Makefile.am,
bin/msvq/Makefile.am, bin/nan/Makefile.am,
bin/ndps2c/Makefile.am, bin/norm0/Makefile.am,
bin/nrand/Makefile.am, bin/par2lpc/Makefile.am,
bin/pca/Makefile.am, bin/phase/Makefile.am,
bin/pitch/Makefile.am, bin/poledf/Makefile.am,
bin/psgr/Makefile.am, bin/ramp/Makefile.am,
bin/rawtowav/Makefile.am, bin/reverse/Makefile.am,
bin/rmse/Makefile.am, bin/root_pol/Makefile.am,
bin/sin/Makefile.am, bin/smcep/Makefile.am, bin/snr/Makefile.am,
bin/sopr/Makefile.am, bin/spec/Makefile.am, bin/step/Makefile.am,
bin/swab/Makefile.am, bin/symmetrize/Makefile.am,
bin/train/Makefile.am, bin/transpose/Makefile.am,
bin/uels/Makefile.am, bin/ulaw/Makefile.am, bin/us/Makefile.am,
bin/vc/Makefile.am, bin/vopr/Makefile.am, bin/vq/Makefile.am,
bin/vstat/Makefile.am, bin/vsum/Makefile.am,
bin/wavjoin/Makefile.am, bin/wavsplit/Makefile.am,
bin/window/Makefile.am, bin/x2x/Makefile.am, bin/xgr/Makefile.am,
bin/zcross/Makefile.am, bin/zerodf/Makefile.am,
include/Makefile.am, lib/Makefile.am, script/Makefile.am: update
makefiles for automake 1.14.1
2014-12-04 09:34 uratec
* bin/pitch/swipe/vector.c: fix pointer type in swipe
2014-12-03 17:49 shikano
* bin/: acep/acep.c, amcep/amcep.c, bcp/bcp.c, bcut/bcut.c,
fftcep/fftcep.c, glsadf/glsadf.c, lmadf/lmadf.c, mlpg/mlpg.c,
vc/vc.c, vopr/vopr.c, vstat/vstat.c: change note to notice
2014-12-03 11:48 artk0816
* include/SPTK.h, lib/Makefile.am, bin/Makefile.am, configure.ac,
bin/wavjoin/.cvsignore, bin/wavjoin/Makefile.am,
bin/wavjoin/_wavjoin.c, bin/wavjoin/wavjoin.c,
bin/wavsplit/.cvsignore, bin/wavsplit/Makefile.am,
bin/wavsplit/_wavsplit.c, bin/wavsplit/wavsplit.c: addition of
wav format joiner and splitter, wavjoin and wavsplit
2014-09-04 11:50 artk0816
* bin/delta/delta.c: fix of the explanation for -e in delta
2014-07-07 13:45 uratec
* bin/pitch/swipe/swipe.c: fix frame shift calc. in swipe
2014-06-30 19:53 uratec
* bin/gmm/gmm.c: remove stderr message in full covarinace calc.
from gmm command.
2014-06-30 16:27 artk0816
* bin/ndps2c/_ndps2c.c: fixed warning of _indps.c
2014-06-30 16:00 artk0816
* bin/vc/vc.c: fixed warning of vc.c
2014-06-27 13:53 artk0816
* bin/vc/vc.c: VC was added the option -e that specifies small
value added to covariance
2014-06-27 13:52 artk0816
* bin/delta/delta.c: DELTA was added the option -e that specifies
small value added to diagonal component
2014-06-10 10:46 artk0816
* bin/vc/_vc.c: fix the GMM weight calculation of vc
2014-05-14 16:44 artk0816
* bin/mlsacheck/mlsacheck.c: add fast mode to mlsacheck
2014-04-24 13:35 artk0816
* configure.ac, bin/Makefile.am, include/SPTK.h: add mgclsp2sp
2014-04-24 13:30 artk0816
* bin/mgclsp2sp/: .cvsignore, Makefile.am, _mgclsp2sp.c,
mgclsp2sp.c: add mgclsp2sp
2014-04-24 11:15 artk0816
* script/mgclsp2mgc.in: modify the -i option to -q.
2014-04-24 11:10 artk0816
* bin/: lsp2lpc/lsp2lpc.c, lsp2sp/lsp2sp.c, lspcheck/lspcheck.c:
modify the -i option to -q.
2014-03-27 18:38 uratec
* bin/: c2ndps/Makefile.am, ndps2c/Makefile.am: Remove autotools
warning messages.
2014-03-27 18:28 artk0816
* bin/dtw/dtw.c: refactor dtw.c
2014-03-26 22:45 uratec
* bin/c2ndps/c2ndps.c: Remove gcc warning in c2ndps.
2014-03-26 22:35 uratec
* configure.ac, bin/da/Makefile.am, bin/da/da.in,
bin/ds/Makefile.am, bin/lsp2sp/Makefile.am,
bin/pitch/Makefile.am, bin/rawtowav/Makefile.am,
bin/us/Makefile.am, bin/us/us16.in, bin/us/uscd.in,
bin/vc/Makefile.am, lib/Makefile.am, script/Makefile.am,
script/bell.in, script/glogsp.in, script/grlogsp.in,
script/gseries.in, script/gwave.in, script/mgc2mgclsp.in,
script/mgclsp2mgc.in, script/raw2wav.in, script/wav2raw.in:
Optimize makefiles for latest autotools.
2014-02-28 02:28 artk0816
* bin/lsp2sp/: _c2ndps.c, _ndps2c.c, c2ndps.c, ndps2c.c: fix lsp2sp
2014-02-28 02:02 artk0816
* bin/ndps2c/Makefile.am: fix ndps2c
2014-02-27 18:53 artk0816
* bin/lsp2sp/: .cvsignore, Makefile.am: fix lsp2sp
2014-02-27 18:45 artk0816
* bin/ndps2c/: .cvsignore, Makefile.am, _ndps2c.c, ndps2c.c: add
new commands ndps2c
2014-02-27 18:43 mataki
* bin/dtw/dtw.c: - add -V option to make joint vector sequence of
test/reference data along the Viterbi path. - change name of
several functions.
2014-02-27 18:39 artk0816
* bin/c2ndps/: .cvsignore, Makefile.am, _c2ndps.c, c2ndps.c: add
new commands c2ndps
2014-02-27 18:23 artk0816
* bin/lsp2sp/: .cvsignore, Makefile.am, _c2ndps.c, c2ndps.c,
_ndps2c.c, ndps2c.c: add new commands c2ndps and ndps2c
2014-02-27 18:09 artk0816
* configure.ac, bin/Makefile.am: add new commands c2ndps and ndps2c
2014-02-27 18:01 artk0816
* include/SPTK.h: add new commands c2ndps and ndps2c
2014-02-25 16:58 mataki
* bin/dtw/dtw.c: fix a bug suggested by Wern-Jun Wang.
2014-02-20 11:29 artk0816
* bin/lsp2sp/: lsp2sp.c, _lsp2sp.c: fix lsp2sp.c to add free() and
_lsp2sp.c to correct explanation
2014-01-19 17:19 mataki
* configure.ac: add statement to check existance of csh.
2013-12-24 19:27 mataki
* Makefile.mak: fix Makefile.mak to install files correctly.
2013-12-23 23:27 uratec
* README, bin/Makefile.am, bin/ds/Makefile.am,
bin/ds/emime/COPYING, bin/ds/emime/lpfcoef.7to4,
bin/ds/titech/COPYING, bin/ds/titech/lpfcoef.7to4,
bin/us/Makefile.am, bin/us/emime/COPYING,
bin/us/emime/lpfcoef.3to5, bin/us/emime/lpfcoef.7to8,
bin/us/titech/COPYING, bin/us/titech/lpfcoef.3to5,
bin/us/titech/lpfcoef.7to8: Fix copyrights of ds/us filter
coefficients.
2013-12-23 09:40 mataki
* README: fix README for COPYING.
2013-12-23 09:37 mataki
* README: fix README for COPYING.
2013-12-23 09:02 mataki
* bin/: mlsacheck/mlsacheck.c, symmetrize/symmetrize.c: fix source
code to remove warning messages in compilation.
2013-12-23 01:58 uratec
* NEWS, configure.ac, bin/Makefile.am, bin/ds/Makefile.am,
bin/ds/ds.c, bin/ds/emime/COPYING, bin/ds/emime/lpfcoef.7to4,
bin/us/Makefile.am, bin/us/us.c, bin/us/emime/COPYING,
bin/us/emime/lpfcoef.3to5, bin/us/emime/lpfcoef.7to8: Add filter
coefficients for 7:4 down-sampling, 3:5 and 7:8 up-sampling.
2013-12-19 11:47 mataki
* NEWS: fix NEWS for version 3.7.
2013-12-19 11:28 mataki
* bin/: lspcheck/lspcheck.c, lspdf/lspdf.c: fix source code for
compatibility of log gain.
2013-12-19 11:07 mataki
* NEWS: update NEWS for version 3.7.
2013-12-19 11:05 mataki
* bin/: lspcheck/lspcheck.c, lspdf/lspdf.c: change -l option to -L
option to specify log gain.
2013-12-19 08:36 mataki
* bin/vc/hts_engine_API/: COPYING, HTS_engine.h, HTS_hidden.h,
HTS_misc.c, HTS_pstream.c, HTS_sstream.c: update source code and
COPYING based on hts_engine_API-1.08.
2013-12-18 13:13 mataki
* NEWS: update NEWS for version 3.7.
2013-12-18 12:58 mataki
* bin/rmse/rmse.c: fix indentation of usage().
2013-12-17 11:36 mataki
* NEWS: update NEWS for version 3.7.
2013-12-17 10:49 mataki
* bin/: decimate/decimate.c, interpolate/interpolate.c: fix usage()
and macro name.
2013-12-16 23:42 mataki
* script/: glogsp.in, grlogsp.in: fix usage.
2013-12-16 19:57 mataki
* bin/sopr/sopr.c: re-add constant semitone.
2013-12-16 18:01 mataki
* COPYING, README, configure.ac, bin/acep/_acep.c, bin/acep/acep.c,
bin/acorr/_acorr.c, bin/acorr/acorr.c, bin/agcep/_agcep.c,
bin/agcep/agcep.c, bin/amcep/_amcep.c, bin/amcep/amcep.c,
bin/average/_average.c, bin/average/average.c, bin/b2mc/_b2mc.c,
bin/b2mc/b2mc.c, bin/bcp/bcp.c, bin/bcut/bcut.c,
bin/c2acr/_c2acr.c, bin/c2acr/c2acr.c, bin/c2ir/_c2ir.c,
bin/c2ir/c2ir.c, bin/c2sp/_c2sp.c, bin/c2sp/c2sp.c,
bin/cat2/cat2.c, bin/cdist/cdist.c, bin/clip/_clip.c,
bin/clip/clip.c, bin/da/da.h, bin/da/da.in, bin/da/dawrite.c,
bin/da/winplay.c, bin/da/winplay.h, bin/dct/_dct.c,
bin/dct/dct.c, bin/decimate/decimate.c, bin/delay/delay.c,
bin/delta/delta.c, bin/df2/_df2.c, bin/df2/df2.c, bin/dfs/_dfs.c,
bin/dfs/dfs.c, bin/dmp/dmp.c, bin/ds/ds.c, bin/dtw/dtw.c,
bin/echo2/echo2.c, bin/excite/excite.c, bin/extract/extract.c,
bin/fd/fd.c, bin/fft/_fft.c, bin/fft/fft.c, bin/fft2/_fft2.c,
bin/fft2/fft2.c, bin/fftcep/_fftcep.c, bin/fftcep/fftcep.c,
bin/fftr/_fftr.c, bin/fftr/fftr.c, bin/fftr2/_fftr2.c,
bin/fftr2/fftr2.c, bin/fig+fdrw/fdrw.c, bin/fig+fdrw/fig.c,
bin/fig+fdrw/fig.h, bin/fig+fdrw/fig0.c, bin/fig+fdrw/fig1.c,
bin/fig+fdrw/plot.c, bin/fig+fdrw/plot.h, bin/fig+fdrw/plsub.c,
bin/frame/frame.c, bin/freqt/_freqt.c, bin/freqt/freqt.c,
bin/gc2gc/_gc2gc.c, bin/gc2gc/gc2gc.c, bin/gcep/_gcep.c,
bin/gcep/gcep.c, bin/glsadf/_glsadf.c, bin/glsadf/glsadf.c,
bin/gmm/_gmm.c, bin/gmm/gmm.c, bin/gmm/gmmp.c,
bin/gnorm/_gnorm.c, bin/gnorm/gnorm.c, bin/grpdelay/_grpdelay.c,
bin/grpdelay/grpdelay.c, bin/histogram/_histogram.c,
bin/histogram/histogram.c, bin/idct/idct.c, bin/ifft/_ifft.c,
bin/ifft/ifft.c, bin/ifft2/_ifft2.c, bin/ifft2/ifft2.c,
bin/ifftr/_ifftr.c, bin/ifftr/ifftr.c, bin/ignorm/_ignorm.c,
bin/ignorm/ignorm.c, bin/impulse/impulse.c, bin/imsvq/_imsvq.c,
bin/imsvq/imsvq.c, bin/interpolate/interpolate.c, bin/ivq/_ivq.c,
bin/ivq/ivq.c, bin/lbg/_lbg.c, bin/lbg/lbg.c,
bin/levdur/_levdur.c, bin/levdur/levdur.c,
bin/linear_intpl/linear_intpl.c, bin/lmadf/_lmadf.c,
bin/lmadf/lmadf.c, bin/lpc/_lpc.c, bin/lpc/lpc.c,
bin/lpc2c/_lpc2c.c, bin/lpc2c/lpc2c.c, bin/lpc2lsp/_lpc2lsp.c,
bin/lpc2lsp/lpc2lsp.c, bin/lpc2par/_lpc2par.c,
bin/lpc2par/lpc2par.c, bin/lsp2lpc/_lsp2lpc.c,
bin/lsp2lpc/lsp2lpc.c, bin/lsp2sp/_lsp2sp.c, bin/lsp2sp/lsp2sp.c,
bin/lspcheck/_lspcheck.c, bin/lspcheck/lspcheck.c,
bin/lspdf/_lspdf.c, bin/lspdf/lspdf.c, bin/ltcdf/_ltcdf.c,
bin/ltcdf/ltcdf.c, bin/mc2b/_mc2b.c, bin/mc2b/mc2b.c,
bin/mcep/_mcep.c, bin/mcep/mcep.c, bin/merge/merge.c,
bin/mfcc/_mfcc.c, bin/mfcc/mfcc.c, bin/mgc2mgc/_mgc2mgc.c,
bin/mgc2mgc/mgc2mgc.c, bin/mgc2sp/_mgc2sp.c, bin/mgc2sp/mgc2sp.c,
bin/mgcep/_mgcep.c, bin/mgcep/mgcep.c, bin/mglsadf/_mglsadf.c,
bin/mglsadf/mglsadf.c, bin/minmax/minmax.c, bin/mlpg/_mlpg.c,
bin/mlpg/mlpg.c, bin/mlsacheck/mlsacheck.c, bin/mlsadf/_mlsadf.c,
bin/mlsadf/mlsadf.c, bin/msvq/_msvq.c, bin/msvq/msvq.c,
bin/nan/nan.c, bin/norm0/_norm0.c, bin/norm0/norm0.c,
bin/nrand/_nrand.c, bin/nrand/nrand.c, bin/par2lpc/_par2lpc.c,
bin/par2lpc/par2lpc.c, bin/pca/pca.c, bin/pca/pcas.c,
bin/phase/_phase.c, bin/phase/phase.c, bin/pitch/pitch.c,
bin/pitch/snack/COPYING, bin/pitch/snack/jkGetF0.c,
bin/pitch/snack/jkGetF0.h, bin/pitch/snack/sigproc.c,
bin/pitch/swipe/COPYING, bin/pitch/swipe/swipe.c,
bin/pitch/swipe/vector.c, bin/pitch/swipe/vector.h,
bin/poledf/_poledf.c, bin/poledf/poledf.c, bin/psgr/dict.c,
bin/psgr/eps.c, bin/psgr/plot.c, bin/psgr/psgr.c,
bin/psgr/psgr.h, bin/ramp/ramp.c, bin/rawtowav/rawtowav.c,
bin/reverse/_reverse.c, bin/reverse/reverse.c, bin/rmse/_rmse.c,
bin/rmse/rmse.c, bin/root_pol/_root_pol.c,
bin/root_pol/root_pol.c, bin/sin/sin.c, bin/smcep/_smcep.c,
bin/smcep/smcep.c, bin/snr/snr.c, bin/sopr/sopr.c,
bin/spec/spec.c, bin/step/step.c, bin/swab/swab.c,
bin/symmetrize/symmetrize.c, bin/train/train.c,
bin/transpose/_transpose.c, bin/transpose/transpose.c,
bin/uels/_uels.c, bin/uels/uels.c, bin/ulaw/_ulaw.c,
bin/ulaw/ulaw.c, bin/us/us.c, bin/us/us16.in, bin/us/uscd.in,
bin/vopr/vopr.c, bin/vq/_vq.c, bin/vq/vq.c, bin/vstat/vstat.c,
bin/vsum/vsum.c, bin/window/_window.c, bin/window/window.c,
bin/x2x/x2x.c, bin/xgr/config.h, bin/xgr/gcdata.h,
bin/xgr/plot.c, bin/xgr/window.c, bin/xgr/xgr.c, bin/xgr/xgr.h,
bin/zcross/_zcross.c, bin/zcross/zcross.c, bin/zerodf/_zerodf.c,
bin/zerodf/zerodf.c, include/SPTK.h, lib/agexp.c, lib/cholesky.c,
lib/fileio.c, lib/fillz.c, lib/getfp.c, lib/getmem.c, lib/gexp.c,
lib/glog.c, lib/invert.c, lib/matrix.c, lib/movem.c, lib/mseq.c,
lib/theq.c, lib/toeplitz.c, script/bell.in, script/glogsp.in,
script/grlogsp.in, script/gseries.in, script/gwave.in,
script/mgc2mgclsp.in, script/mgclsp2mgc.in, script/raw2wav.in,
script/wav2raw.in: update all documents for version 3.7.
2013-12-15 16:36 mataki
* bin/gmm/_gmm.c, bin/lsp2sp/_lsp2sp.c, include/SPTK.h: fix the
problem of multiple definition of constant macros.
2013-12-15 02:30 mataki
* bin/da/Makefile.am: fix Makefile.am for correct installation.
2013-12-14 22:11 mataki
* configure.ac: fix configure.ac to specify TARNAME explicitly.
2013-12-14 20:30 mataki
* bin/vc/Makefile.am, bin/Makefile.mak, bin/vc/_vc.c,
lib/Makefile.am: fix source code, Makefile.am and Makefile.mak to
compile vc command.
2013-12-13 18:19 mataki
* bin/gmm/Makefile.am: remove gmm.h.
2013-12-13 18:02 mataki
* bin/gmm/gmmp.c: add -f option to specify full covariance.
2013-12-11 16:20 mataki
* bin/vc/vc.c: remove unnecessary local variable.
2013-12-11 14:27 mataki
* bin/vc/hts_engine_API/HTS_sstream.c: remove '#else' directives.
2013-12-10 20:40 mataki
* bin/vc/: _vc.c, vc.c: fix order of arguments for getmem().
2013-12-10 20:24 mataki
* bin/vc/vc.c: fix source code to avoid memory leak bug.
2013-12-10 20:11 mataki
* bin/vc/vc.c: fix source code to avoid memory leak.
2013-12-10 19:15 mataki
* bin/vc/: Makefile.am, hts_engine_API/HTS_engine.h,
hts_engine_API/HTS_hidden.h, hts_engine_API/HTS_label.c,
hts_engine_API/HTS_misc.c, hts_engine_API/HTS_model.c,
hts_engine_API/HTS_pstream.c, hts_engine_API/HTS_sstream.c:
remove HTS_label.c and HTS_model.c.
2013-12-10 18:36 mataki
* bin/vc/.cvsignore: fix .cvsignore.
2013-12-10 17:51 mataki
* bin/vc/hts_engine_API/COPYING: add COPYING for vc command.
2013-12-10 17:49 mataki
* bin/vc/: .cvsignore, hts_engine_API/HTS_engine.h,
hts_engine_API/HTS_hidden.h: add vc command.
2013-12-10 17:44 mataki
* bin/vc/: .cvsignore, _vc.c: fix comment part of _vc.c to insert
rcs_id and fix .cvsignore to add hts_engine_API.
2013-12-10 17:36 mataki
* configure.ac, bin/Makefile.am, bin/decimate/decimate.c,
bin/lpc2lsp/lpc2lsp.c, bin/lsp2lpc/lsp2lpc.c, bin/vc/.cvsignore,
bin/vc/Makefile.am, bin/vc/_vc.c, bin/vc/vc.c,
bin/vc/hts_engine_API/HTS_label.c,
bin/vc/hts_engine_API/HTS_misc.c,
bin/vc/hts_engine_API/HTS_model.c,
bin/vc/hts_engine_API/HTS_pstream.c,
bin/vc/hts_engine_API/HTS_sstream.c, include/SPTK.h: add vc
command.
2013-12-10 17:09 mataki
* bin/gmm/_gmm.c, bin/gmm/gmm.c, bin/gmm/gmmp.c, include/SPTK.h,
bin/gmm/gmm.h: remove gmm.h.
2013-12-10 15:11 mataki
* bin/gmm/_gmm.c, bin/gmm/gmm.c, bin/gmm/gmmp.c, include/SPTK.h: -
integrate fillz_gmm() and fillz_gmmf() into fillz_GMM(). -
integrate log_wgd() and log_wgdf() into new log_wgd(). - use
'TR' to specify value of 'full' as member of GMM structure.
2013-12-09 18:04 mataki
* bin/gmm/_gmm.c, bin/gmm/gmm.c, bin/gmm/gmmp.c, include/SPTK.h:
fix GMM structure and its related modules to remove redundant
arguments.
2013-12-09 14:37 uratec
* script/: mgc2mgclsp.in, mgclsp2mgc.in: Change log gain option for
mgc2mgclsp and mgclsp2mgc
2013-12-09 14:33 uratec
* bin/: gcep/gcep.c, mgcep/mgcep.c: Fix source code format
2013-12-02 13:11 mataki
* bin/gmm/_gmm.c: fix load_GMM() to set number of mixtures.
2013-11-26 13:46 artk0816
* script/mgc2mgclsp.in: modify mgc2mgclsp about -h option
2013-11-26 11:06 mataki
* bin/da/Makefile.am, bin/da/da.in, bin/rawtowav/Makefile.am,
bin/us/Makefile.am, script/Makefile.am, script/raw2wav.in: put
all .sh files, dawrite and rawtowav into
"install_dir/share/SPTK".
2013-11-26 10:49 artk0816
* bin/mlsacheck/mlsacheck.c: add options for modification by
scaling and specifying threshold to mlsacheck
2013-11-22 14:36 mataki
* bin/: dct/dct.c, idct/idct.c: fix typo.
2013-11-18 21:11 mataki
* bin/da/Makefile.am, bin/da/da.in, bin/rawtowav/Makefile.am,
script/raw2wav.in: make rawtowav and dawrite hidden binaries.
2013-11-18 20:47 artk0816
* script/mgc2mgclsp.in: add mgc2mgclsp to -d, -n and -p options.
2013-11-18 19:00 mataki
* bin/merge/merge.c: apply patch code provided by Giulio Paci.
2013-11-15 16:16 mataki
* bin/us/Makefile.am: Apply patch code provided by Giulio Paci.
2013-11-15 16:05 mataki
* configure.ac: Apply patch code provided by Giulio Paci except
that 'no-installinfo' and 'no-installman' are removed. This is
because these options are disallowed by GNU standards.
2013-11-15 15:22 mataki
* bin/: acep/Makefile.am, acorr/Makefile.am, agcep/Makefile.am,
amcep/Makefile.am, average/Makefile.am, b2mc/Makefile.am,
bcp/Makefile.am, bcut/Makefile.am, c2acr/Makefile.am,
c2ir/Makefile.am, c2sp/Makefile.am, cat2/Makefile.am,
cdist/Makefile.am, clip/Makefile.am, da/Makefile.am,
dct/Makefile.am, decimate/Makefile.am, delay/Makefile.am,
delta/Makefile.am, df2/Makefile.am, dfs/Makefile.am,
dmp/Makefile.am, ds/Makefile.am, dtw/Makefile.am,
echo2/Makefile.am, excite/Makefile.am, extract/Makefile.am,
fd/Makefile.am, fft/Makefile.am, fft2/Makefile.am,
fftcep/Makefile.am, fftr/Makefile.am, fftr2/Makefile.am,
fig+fdrw/Makefile.am, frame/Makefile.am, freqt/Makefile.am,
gc2gc/Makefile.am, gcep/Makefile.am, glsadf/Makefile.am,
gmm/Makefile.am, gnorm/Makefile.am, grpdelay/Makefile.am,
histogram/Makefile.am, idct/Makefile.am, ifft/Makefile.am,
ifft2/Makefile.am, ifftr/Makefile.am, ignorm/Makefile.am,
impulse/Makefile.am, imsvq/Makefile.am, interpolate/Makefile.am,
ivq/Makefile.am, lbg/Makefile.am, levdur/Makefile.am,
linear_intpl/Makefile.am, lmadf/Makefile.am, lpc/Makefile.am,
lpc2c/Makefile.am, lpc2lsp/Makefile.am, lpc2par/Makefile.am,
lsp2lpc/Makefile.am, lspcheck/Makefile.am, lspdf/Makefile.am,
ltcdf/Makefile.am, mc2b/Makefile.am, mcep/Makefile.am,
merge/Makefile.am, mfcc/Makefile.am, mgc2mgc/Makefile.am,
mgc2sp/Makefile.am, mgcep/Makefile.am, mglsadf/Makefile.am,
minmax/Makefile.am, mlpg/Makefile.am, mlsacheck/Makefile.am,
mlsadf/Makefile.am, msvq/Makefile.am, nan/Makefile.am,
norm0/Makefile.am, nrand/Makefile.am, par2lpc/Makefile.am,
pca/Makefile.am, phase/Makefile.am, pitch/Makefile.am,
poledf/Makefile.am, psgr/Makefile.am, ramp/Makefile.am,
rawtowav/Makefile.am, reverse/Makefile.am, rmse/Makefile.am,
root_pol/Makefile.am, sin/Makefile.am, smcep/Makefile.am,
snr/Makefile.am, sopr/Makefile.am, spec/Makefile.am,
step/Makefile.am, swab/Makefile.am, symmetrize/Makefile.am,
train/Makefile.am, transpose/Makefile.am, uels/Makefile.am,
ulaw/Makefile.am, vopr/Makefile.am, vq/Makefile.am,
vstat/Makefile.am, vsum/Makefile.am, window/Makefile.am,
x2x/Makefile.am, xgr/Makefile.am, zcross/Makefile.am,
zerodf/Makefile.am: apply patch code provided by Giulio Paci.
2013-11-12 13:17 artk0816
* script/gseries.in: fix gseries.in to allow input data to exceed
range of short.
2013-11-12 13:16 artk0816
* script/gwave.in: fix gwave.in to allow input data to exceed range
of short.
2013-10-17 15:09 mataki
* bin/delta/delta.c: fix get_coef() to calculate regression
coefficients from regression polynomial of arbitrary order.
2013-09-10 11:52 artk0816
* bin/lsp2sp/Makefile.in: [no log message]
2013-09-10 11:42 artk0816
* bin/lsp2sp/.cvsignore: Add command 'LSP2SP' that calculates the
spectrum from the line spectral pairs(LSP).
2013-09-09 15:50 artk0816
* configure.ac, bin/Makefile.am, bin/lsp2sp/Makefile.am,
bin/lsp2sp/Makefile.in, bin/lsp2sp/_lsp2sp.c,
bin/lsp2sp/lsp2sp.c, include/SPTK.h, lib/Makefile.am: Add command
'LSP2SP' that calculates the spectrum from the line spectral
pairs(LSP).
2013-09-07 17:20 mataki
* lib/getmem.c: change variable name in ddgetmem().
2013-09-07 17:03 mataki
* include/SPTK.h, lib/getmem.c: add ddgetmem() to allocate a double
type matrix.
2013-09-06 12:50 artk0816
* script/: gseries.in, gwave.in: Fix the error that arises when
input data is over the range of type 'short'.
2013-09-05 19:23 mataki
* bin/gmm/_gmm.c, bin/gmm/gmm.c, bin/gmm/gmmp.c, include/SPTK.h: -
add -M, -c1, and -c2 options to specify the structure of the
covariace matrix. - add alloc_gmm(), load_gmm(), save_gmm(), and
free_gmm() in _gmm.c .
2013-09-04 10:45 artk0816
* bin/: lpc2lsp/lpc2lsp.c, lsp2lpc/lsp2lpc.c: Change -l option into
-L option
2013-09-04 10:16 artk0816
* bin/vsum/vsum.c: Conform VSUM's options to VSTAT's -l, -n, and -t
option.
2013-08-23 15:04 mataki
* bin/symmetrize/symmetrize.c: fix source code to use freadf and
fwritef.
2013-08-16 08:15 artk0816
* bin/: sopr/sopr.c, rmse/rmse.c: fix source code not to use
capital letter in variable name
2013-08-16 06:42 mataki
* bin/delta/delta.c: fix source code not to use capital letter in
variable name.
2013-08-15 00:37 artk0816
* bin/sopr/sopr.c: add -p -POWX -LOGX option
2013-08-14 11:05 artk0816
* bin/rmse/rmse.c: change rmse
2013-08-13 13:46 mataki
* bin/delta/delta.c: fix source code not to use capital letter at
the beginning of variable name.
2013-08-12 17:20 mataki
* bin/delta/delta.c: -fix a bug that all static features in output
are 0 in all frames containing magic number. -fix souce code not
to use calloc and malloc.
2013-06-13 11:35 uratec
* bin/pitch/snack/jkGetF0.c: Fix a downsampling error in snack F0
estimator.
2013-06-12 07:35 mataki
* script/wav2raw.in: fix source code not to read unnecessary
chunks.
2013-05-07 10:25 mataki
* bin/spec/spec.c: fix typo.
2013-05-06 15:35 mataki
* bin/lspcheck/lspcheck.c: Add a few options to check gain value.
2013-04-30 14:30 mataki
* bin/pitch/swipe/: swipe.c, vector.c: Merge patch code by Pieter
Scholtz : Fix memory leak of 'SWIPE.
2013-04-22 17:26 mataki
* bin/fd/fd.c: fix source code to use isprint().
2013-04-22 15:52 mataki
* bin/c2ir/c2ir.c: fix '-L' option name; from '-L' to '-l'.
2013-03-24 15:54 okdtmhr
* bin/: smcep/_smcep.c, smcep/smcep.c, uels/_uels.c, uels/uels.c:
unify the description of periodogram
2013-03-24 15:19 okdtmhr
* bin/mgcep/: _mgcep.c, mgcep.c: unify the description of
periodogram
2013-03-24 15:14 okdtmhr
* bin/mcep/: _mcep.c, mcep.c: unify the description of periodogram
2013-03-24 15:05 okdtmhr
* bin/gcep/: _gcep.c, gcep.c: unify the description of periodogram
2013-03-23 15:20 mataki
* bin/fd/fd.c: fix default data type.
2013-02-27 09:45 okdtmhr
* script/grlogsp.in: add the type of scale
2013-02-27 09:39 okdtmhr
* script/glogsp.in: add the type of scale
2013-02-27 09:13 okdtmhr
* bin/sopr/sopr.c: enable to use semitone
2013-02-27 09:06 okdtmhr
* bin/interpolate/interpolate.c: enable to use vector with -l
option
2013-02-27 08:57 okdtmhr
* bin/decimate/decimate.c: enable to use vector with -l option
2013-02-27 00:46 uratec
* bin/mlsacheck/mlsacheck.c: Fix option parsing part in mlsacheck.
2013-02-20 13:03 mataki
* include/SPTK.h, bin/rawtowav/rawtowav.c, lib/fileio.c: add new
fuction fwrite_little_endian() and fix rawtowav.c to use it.
2013-02-19 18:41 mataki
* bin/mlsacheck/mlsacheck.c: remove unnecessary memory allocation.
2013-02-15 17:13 mataki
* bin/rawtowav/rawtowav.c: fix source code to make WAVE header
properly on both 32bit and 64bit machine.
2013-02-15 12:12 mataki
* bin/mlsacheck/mlsacheck.c: bug fix for stabilization process.
2013-02-15 11:50 mataki
* script/: glogsp.in, grlogsp.in, gseries.in, gwave.in,
mgc2mgclsp.in, mgclsp2mgc.in: fix scripts to accept file name
containing white space.
2013-02-13 17:35 mataki
* script/raw2wav.in: fix script to accept samping frequency written
in floating point.
2013-02-03 00:10 mataki
* script/raw2wav.in: fix a bug when -n option is specified.
2013-02-03 00:03 mataki
* bin/dfs/dfs.c: fix a bug when -a and/or -b option is not
specified.
2013-01-18 17:06 mataki
* bin/transpose/: _transpose.c, transpose.c: fix source codes not
to use rewind().
2013-01-16 21:06 mataki
* script/wav2raw.in: fix script to read extra format in "fmt "
chunk.
2013-01-15 20:54 okdtmhr
* bin/vstat/vstat.c: Error which happen when inputted from stdin is
corrected.
2013-01-15 18:53 mataki
* script/: raw2wav.in, wav2raw.in: remove trailing whitespace from
source scripts and fix them to accept input filename containing
whitespace.
2013-01-10 21:24 mataki
* bin/rawtowav/rawtowav.c: fix source code not to break RIFF header
on both 32bit and 64bit machine.
2013-01-10 20:48 mataki
* script/raw2wav.in: fix script not to accept too large sampling
frequency.
2013-01-10 14:51 mataki
* bin/mlsacheck/mlsacheck.c: fix a bug in calculating gain factor.
2013-01-08 20:24 mataki
* bin/dfs/dfs.c: fix indent of source code.
2013-01-08 20:20 mataki
* bin/dfs/dfs.c: fix source code to remove limitation of the order
of filter coefficients.
2013-01-03 14:55 okdtmhr
* bin/symmetrize/symmetrize.c: Error which happen when inputted
from stdin is corrected.
2012-12-24 23:08 mataki
* script/: raw2wav.in, wav2raw.in: fix usage.
2012-12-24 12:44 mataki
* NEWS: fix NEWS for SPTK-3.6.
2012-12-24 12:34 mataki
* script/: Makefile.am, gimp.in, gseries.in: rename 'gimp' to
'gseries'.
2012-12-24 11:23 mataki
* script/raw2wav.in: change sampling frequency in Hz into sampling
frequency in kHz.
2012-12-23 21:51 mataki
* bin/bcut/bcut.c: fix a bug for int 3byte.
2012-12-23 20:15 mataki
* bin/mfcc/mfcc.c, script/wav2raw.in: fix usage.
2012-12-23 20:12 mataki
* bin/Makefile.mak: Unify linefeed code of bin/Makefile.mak into