You can subscribe to this list here.
2007 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(125) |
Nov
(7) |
Dec
(1) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2008 |
Jan
|
Feb
(1) |
Mar
|
Apr
|
May
(9) |
Jun
(150) |
Jul
(7) |
Aug
|
Sep
|
Oct
|
Nov
(15) |
Dec
|
2009 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(2) |
Dec
(183) |
2010 |
Jan
|
Feb
(1) |
Mar
(26) |
Apr
(23) |
May
(4) |
Jun
(8) |
Jul
(9) |
Aug
(19) |
Sep
(6) |
Oct
(27) |
Nov
(5) |
Dec
(135) |
2011 |
Jan
(1) |
Feb
|
Mar
|
Apr
(22) |
May
(8) |
Jun
(8) |
Jul
(2) |
Aug
(12) |
Sep
(3) |
Oct
(13) |
Nov
(31) |
Dec
(40) |
2012 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(11) |
Jun
(27) |
Jul
(6) |
Aug
(19) |
Sep
(14) |
Oct
(8) |
Nov
(10) |
Dec
(82) |
2013 |
Jan
(12) |
Feb
(14) |
Mar
(11) |
Apr
(4) |
May
(2) |
Jun
(2) |
Jul
|
Aug
(11) |
Sep
(16) |
Oct
(2) |
Nov
(23) |
Dec
(86) |
2014 |
Jan
(1) |
Feb
(18) |
Mar
(5) |
Apr
(13) |
May
(2) |
Jun
(8) |
Jul
(1) |
Aug
(1) |
Sep
(1) |
Oct
|
Nov
(1) |
Dec
(65) |
2015 |
Jan
|
Feb
|
Mar
(1) |
Apr
|
May
(2) |
Jun
|
Jul
|
Aug
(2) |
Sep
(1) |
Oct
(2) |
Nov
(6) |
Dec
(41) |
2016 |
Jan
(2) |
Feb
(2) |
Mar
(3) |
Apr
(2) |
May
(1) |
Jun
(2) |
Jul
(5) |
Aug
(8) |
Sep
(3) |
Oct
(26) |
Nov
(11) |
Dec
(45) |
2017 |
Jan
(12) |
Feb
(9) |
Mar
(4) |
Apr
(8) |
May
(20) |
Jun
(13) |
Jul
(18) |
Aug
(6) |
Sep
(1) |
Oct
(1) |
Nov
|
Dec
|
From: Heiga Z. <hei...@us...> - 2007-10-16 02:21:37
|
Update of /cvsroot/sp-tk/SPTK/src/bin/us In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv11613/src/bin/us Modified Files: us.c Log Message: Arrange spaces for macros. Wrap strrchr() by rindex() if string.h does not exist. Index: us.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/us/us.c,v retrieving revision 1.21 retrieving revision 1.22 diff -C2 -d -r1.21 -r1.22 *** us.c 9 Oct 2007 08:51:45 -0000 1.21 --- us.c 16 Oct 2007 02:20:56 -0000 1.22 *************** *** 86,96 **** #include <stdio.h> #include <stdlib.h> ! #include <string.h> #if defined(WIN32) ! #include "SPTK.h" #else ! #include <strings.h> ! #include <SPTK.h> #endif --- 86,103 ---- #include <stdio.h> #include <stdlib.h> ! ! #ifdef HAVE_STRING_H ! # include <string.h> ! #else ! # include <strings.h> ! # ifndef HAVE_STRRCHR ! # define strrchr rindex ! # endif ! #endif #if defined(WIN32) ! # include "SPTK.h" #else ! # include <SPTK.h> #endif *************** *** 241,245 **** } else { ! fprintf(stderr, "%s : Given dec/int rate %d is not supported!\n",cmnd,type); usage (1); } --- 248,252 ---- } else { ! fprintf(stderr, "%s : Given dec/int rate %s is not supported!\n",cmnd,type); usage (1); } |
From: Heiga Z. <hei...@us...> - 2007-10-16 02:21:35
|
Update of /cvsroot/sp-tk/SPTK/src/bin/fftr2 In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv11613/src/bin/fftr2 Modified Files: fftr2.c _fftr2.c Log Message: Arrange spaces for macros. Wrap strrchr() by rindex() if string.h does not exist. Index: fftr2.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/fftr2/fftr2.c,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** fftr2.c 9 Oct 2007 10:07:06 -0000 1.19 --- fftr2.c 16 Oct 2007 02:20:58 -0000 1.20 *************** *** 79,88 **** #include <stdlib.h> #include <math.h> ! #include <string.h> #if defined(WIN32) ! #include "SPTK.h" #else ! #include <SPTK.h> #endif --- 79,97 ---- #include <stdlib.h> #include <math.h> ! ! #ifdef HAVE_STRING_H ! # include <string.h> ! #else ! # include <strings.h> ! # ifndef HAVE_STRRCHR ! # define strrchr rindex ! # endif ! #endif ! #if defined(WIN32) ! # include "SPTK.h" #else ! # include <SPTK.h> #endif Index: _fftr2.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/fftr2/_fftr2.c,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** _fftr2.c 8 Oct 2007 16:49:29 -0000 1.9 --- _fftr2.c 16 Oct 2007 02:20:58 -0000 1.10 *************** *** 70,76 **** #if defined(WIN32) ! #include "SPTK.h" #else ! #include <SPTK.h> #endif --- 70,76 ---- #if defined(WIN32) ! # include "SPTK.h" #else ! # include <SPTK.h> #endif |
From: Heiga Z. <hei...@us...> - 2007-10-16 02:21:35
|
Update of /cvsroot/sp-tk/SPTK/src/bin/bcut In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv11613/src/bin/bcut Modified Files: bcut.c Log Message: Arrange spaces for macros. Wrap strrchr() by rindex() if string.h does not exist. Index: bcut.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/bcut/bcut.c,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** bcut.c 9 Oct 2007 10:07:02 -0000 1.16 --- bcut.c 16 Oct 2007 02:20:56 -0000 1.17 *************** *** 81,92 **** /* Standard C Libraries */ #include <stdio.h> ! #include <string.h> #include <stdlib.h> #include <ctype.h> #if defined(WIN32) ! #include "SPTK.h" #else ! #include <SPTK.h> #endif --- 81,101 ---- /* Standard C Libraries */ #include <stdio.h> ! ! #ifdef HAVE_STRING_H ! # include <string.h> ! #else ! # include <strings.h> ! # ifndef HAVE_STRRCHR ! # define strrchr rindex ! # endif ! #endif ! #include <stdlib.h> #include <ctype.h> #if defined(WIN32) ! # include "SPTK.h" #else ! # include <SPTK.h> #endif |
From: Heiga Z. <hei...@us...> - 2007-10-16 02:21:35
|
Update of /cvsroot/sp-tk/SPTK/src/bin/nan In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv11613/src/bin/nan Modified Files: nan.c Log Message: Arrange spaces for macros. Wrap strrchr() by rindex() if string.h does not exist. Index: nan.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/nan/nan.c,v retrieving revision 1.22 retrieving revision 1.23 diff -C2 -d -r1.22 -r1.23 *** nan.c 9 Oct 2007 10:07:05 -0000 1.22 --- nan.c 16 Oct 2007 02:20:58 -0000 1.23 *************** *** 68,78 **** #include <stdio.h> #include <stdlib.h> ! #include <string.h> #include <math.h> #if defined(WIN32) ! #include "SPTK.h" #else ! #include <SPTK.h> #endif --- 68,87 ---- #include <stdio.h> #include <stdlib.h> ! ! #ifdef HAVE_STRING_H ! # include <string.h> ! #else ! # include <strings.h> ! # ifndef HAVE_STRRCHR ! # define strrchr rindex ! # endif ! #endif ! #include <math.h> #if defined(WIN32) ! # include "SPTK.h" #else ! # include <SPTK.h> #endif |
From: Heiga Z. <hei...@us...> - 2007-10-16 02:21:35
|
Update of /cvsroot/sp-tk/SPTK/src/bin/sopr In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv11613/src/bin/sopr Modified Files: sopr.c Log Message: Arrange spaces for macros. Wrap strrchr() by rindex() if string.h does not exist. Index: sopr.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/sopr/sopr.c,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** sopr.c 9 Oct 2007 10:07:06 -0000 1.19 --- sopr.c 16 Oct 2007 02:20:58 -0000 1.20 *************** *** 95,106 **** #include <stdio.h> #include <stdlib.h> ! #include <string.h> #include <ctype.h> #include <math.h> #if defined(WIN32) ! #include "SPTK.h" #else ! #include <SPTK.h> #endif --- 95,115 ---- #include <stdio.h> #include <stdlib.h> ! ! #ifdef HAVE_STRING_H ! # include <string.h> ! #else ! # include <strings.h> ! # ifndef HAVE_STRRCHR ! # define strrchr rindex ! # endif ! #endif ! #include <ctype.h> #include <math.h> #if defined(WIN32) ! # include "SPTK.h" #else ! # include <SPTK.h> #endif |
From: Heiga Z. <hei...@us...> - 2007-10-16 02:21:35
|
Update of /cvsroot/sp-tk/SPTK/src/bin/fftr In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv11613/src/bin/fftr Modified Files: fftr.c _fftr.c Log Message: Arrange spaces for macros. Wrap strrchr() by rindex() if string.h does not exist. Index: _fftr.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/fftr/_fftr.c,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** _fftr.c 8 Oct 2007 16:49:27 -0000 1.9 --- _fftr.c 16 Oct 2007 02:20:54 -0000 1.10 *************** *** 67,73 **** #if defined(WIN32) ! #include "SPTK.h" #else ! #include <SPTK.h> #endif --- 67,73 ---- #if defined(WIN32) ! # include "SPTK.h" #else ! # include <SPTK.h> #endif Index: fftr.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/fftr/fftr.c,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** fftr.c 9 Oct 2007 17:35:57 -0000 1.19 --- fftr.c 16 Oct 2007 02:20:54 -0000 1.20 *************** *** 77,87 **** #include <stdio.h> #include <stdlib.h> ! #include <string.h> #include <math.h> #if defined(WIN32) ! #include "SPTK.h" #else ! #include <SPTK.h> #endif --- 77,96 ---- #include <stdio.h> #include <stdlib.h> ! ! #ifdef HAVE_STRING_H ! # include <string.h> ! #else ! # include <strings.h> ! # ifndef HAVE_STRRCHR ! # define strrchr rindex ! # endif ! #endif ! #include <math.h> #if defined(WIN32) ! # include "SPTK.h" #else ! # include <SPTK.h> #endif |
From: Heiga Z. <hei...@us...> - 2007-10-16 02:21:35
|
Update of /cvsroot/sp-tk/SPTK/src/bin/lpc2lsp In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv11613/src/bin/lpc2lsp Modified Files: _lpc2lsp.c lpc2lsp.c Log Message: Arrange spaces for macros. Wrap strrchr() by rindex() if string.h does not exist. Index: lpc2lsp.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/lpc2lsp/lpc2lsp.c,v retrieving revision 1.21 retrieving revision 1.22 diff -C2 -d -r1.21 -r1.22 *** lpc2lsp.c 9 Oct 2007 10:07:11 -0000 1.21 --- lpc2lsp.c 16 Oct 2007 02:20:53 -0000 1.22 *************** *** 92,102 **** #include <stdio.h> #include <stdlib.h> ! #include <string.h> #include <math.h> #if defined(WIN32) ! #include "SPTK.h" #else ! #include <SPTK.h> #endif --- 92,111 ---- #include <stdio.h> #include <stdlib.h> ! ! #ifdef HAVE_STRING_H ! # include <string.h> ! #else ! # include <strings.h> ! # ifndef HAVE_STRRCHR ! # define strrchr rindex ! # endif ! #endif ! #include <math.h> #if defined(WIN32) ! # include "SPTK.h" #else ! # include <SPTK.h> #endif Index: _lpc2lsp.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/lpc2lsp/_lpc2lsp.c,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** _lpc2lsp.c 8 Oct 2007 16:49:27 -0000 1.8 --- _lpc2lsp.c 16 Oct 2007 02:20:53 -0000 1.9 *************** *** 74,80 **** #if defined(WIN32) ! #include "SPTK.h" #else ! #include <SPTK.h> #endif --- 74,80 ---- #if defined(WIN32) ! # include "SPTK.h" #else ! # include <SPTK.h> #endif |
From: Heiga Z. <hei...@us...> - 2007-10-16 02:21:34
|
Update of /cvsroot/sp-tk/SPTK/src/bin/fft2 In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv11613/src/bin/fft2 Modified Files: _fft2.c fft2.c Log Message: Arrange spaces for macros. Wrap strrchr() by rindex() if string.h does not exist. Index: _fft2.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/fft2/_fft2.c,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** _fft2.c 8 Oct 2007 16:49:28 -0000 1.9 --- _fft2.c 16 Oct 2007 02:20:54 -0000 1.10 *************** *** 72,78 **** #if defined(WIN32) ! #include "SPTK.h" #else ! #include <SPTK.h> #endif --- 72,78 ---- #if defined(WIN32) ! # include "SPTK.h" #else ! # include <SPTK.h> #endif Index: fft2.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/fft2/fft2.c,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** fft2.c 9 Oct 2007 10:07:13 -0000 1.18 --- fft2.c 16 Oct 2007 02:20:54 -0000 1.19 *************** *** 79,89 **** #include <stdio.h> #include <stdlib.h> ! #include <string.h> #include <math.h> #if defined(WIN32) ! #include "SPTK.h" #else ! #include <SPTK.h> #endif --- 79,98 ---- #include <stdio.h> #include <stdlib.h> ! ! #ifdef HAVE_STRING_H ! # include <string.h> ! #else ! # include <strings.h> ! # ifndef HAVE_STRRCHR ! # define strrchr rindex ! # endif ! #endif ! #include <math.h> #if defined(WIN32) ! # include "SPTK.h" #else ! # include <SPTK.h> #endif |
From: Heiga Z. <hei...@us...> - 2007-10-16 02:21:34
|
Update of /cvsroot/sp-tk/SPTK/src/bin/pitch In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv11613/src/bin/pitch Modified Files: pitch.c _pitch.c Log Message: Arrange spaces for macros. Wrap strrchr() by rindex() if string.h does not exist. Index: pitch.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/pitch/pitch.c,v retrieving revision 1.24 retrieving revision 1.25 diff -C2 -d -r1.24 -r1.25 *** pitch.c 9 Oct 2007 10:07:02 -0000 1.24 --- pitch.c 16 Oct 2007 02:20:57 -0000 1.25 *************** *** 88,97 **** #include <stdio.h> #include <stdlib.h> ! #include <string.h> #if defined(WIN32) ! #include "SPTK.h" #else ! #include <SPTK.h> #endif --- 88,106 ---- #include <stdio.h> #include <stdlib.h> ! ! #ifdef HAVE_STRING_H ! # include <string.h> ! #else ! # include <strings.h> ! # ifndef HAVE_STRRCHR ! # define strrchr rindex ! # endif ! #endif ! #if defined(WIN32) ! # include "SPTK.h" #else ! # include <SPTK.h> #endif Index: _pitch.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/pitch/_pitch.c,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** _pitch.c 8 Oct 2007 16:49:29 -0000 1.13 --- _pitch.c 16 Oct 2007 02:20:57 -0000 1.14 *************** *** 74,80 **** #if defined(WIN32) ! #include "SPTK.h" #else ! #include <SPTK.h> #endif --- 74,80 ---- #if defined(WIN32) ! # include "SPTK.h" #else ! # include <SPTK.h> #endif |
From: Heiga Z. <hei...@us...> - 2007-10-16 02:21:34
|
Update of /cvsroot/sp-tk/SPTK/src/bin/dfs In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv11613/src/bin/dfs Modified Files: dfs.c _dfs.c Log Message: Arrange spaces for macros. Wrap strrchr() by rindex() if string.h does not exist. Index: _dfs.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/dfs/_dfs.c,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** _dfs.c 8 Oct 2007 16:49:28 -0000 1.8 --- _dfs.c 16 Oct 2007 02:20:55 -0000 1.9 *************** *** 70,76 **** #if defined(WIN32) ! #include "SPTK.h" #else ! #include <SPTK.h> #endif --- 70,76 ---- #if defined(WIN32) ! # include "SPTK.h" #else ! # include <SPTK.h> #endif Index: dfs.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/dfs/dfs.c,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** dfs.c 9 Oct 2007 10:07:02 -0000 1.17 --- dfs.c 16 Oct 2007 02:20:55 -0000 1.18 *************** *** 76,85 **** #include <stdlib.h> #include <ctype.h> ! #include <string.h> #if defined(WIN32) ! #include "SPTK.h" #else ! #include <SPTK.h> #endif --- 76,94 ---- #include <stdlib.h> #include <ctype.h> ! ! #ifdef HAVE_STRING_H ! # include <string.h> ! #else ! # include <strings.h> ! # ifndef HAVE_STRRCHR ! # define strrchr rindex ! # endif ! #endif ! #if defined(WIN32) ! # include "SPTK.h" #else ! # include <SPTK.h> #endif |
From: Heiga Z. <hei...@us...> - 2007-10-16 02:21:34
|
Update of /cvsroot/sp-tk/SPTK/src/bin/window In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv11613/src/bin/window Modified Files: _window.c window.c Log Message: Arrange spaces for macros. Wrap strrchr() by rindex() if string.h does not exist. Index: _window.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/window/_window.c,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** _window.c 8 Oct 2007 16:49:28 -0000 1.11 --- _window.c 16 Oct 2007 02:20:55 -0000 1.12 *************** *** 77,83 **** #if defined(WIN32) ! #include "SPTK.h" #else ! #include <SPTK.h> #endif --- 77,83 ---- #if defined(WIN32) ! # include "SPTK.h" #else ! # include <SPTK.h> #endif Index: window.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/window/window.c,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** window.c 9 Oct 2007 10:07:02 -0000 1.17 --- window.c 16 Oct 2007 02:20:55 -0000 1.18 *************** *** 83,92 **** #include <stdio.h> #include <stdlib.h> ! #include <string.h> #if defined(WIN32) ! #include "SPTK.h" #else ! #include <SPTK.h> #endif --- 83,101 ---- #include <stdio.h> #include <stdlib.h> ! ! #ifdef HAVE_STRING_H ! # include <string.h> ! #else ! # include <strings.h> ! # ifndef HAVE_STRRCHR ! # define strrchr rindex ! # endif ! #endif ! #if defined(WIN32) ! # include "SPTK.h" #else ! # include <SPTK.h> #endif |
From: Heiga Z. <hei...@us...> - 2007-10-16 02:21:34
|
Update of /cvsroot/sp-tk/SPTK/src/bin/ifft In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv11613/src/bin/ifft Modified Files: _ifft.c ifft.c Log Message: Arrange spaces for macros. Wrap strrchr() by rindex() if string.h does not exist. Index: _ifft.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/ifft/_ifft.c,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** _ifft.c 8 Oct 2007 16:49:27 -0000 1.12 --- _ifft.c 16 Oct 2007 02:20:53 -0000 1.13 *************** *** 63,69 **** #if defined(WIN32) ! #include "SPTK.h" #else ! #include <SPTK.h> #endif --- 63,69 ---- #if defined(WIN32) ! # include "SPTK.h" #else ! # include <SPTK.h> #endif Index: ifft.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/ifft/ifft.c,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** ifft.c 9 Oct 2007 10:07:05 -0000 1.17 --- ifft.c 16 Oct 2007 02:20:54 -0000 1.18 *************** *** 71,80 **** #include <stdlib.h> #include <math.h> ! #include <string.h> #if defined(WIN32) ! #include "SPTK.h" #else ! #include <SPTK.h> #endif --- 71,89 ---- #include <stdlib.h> #include <math.h> ! ! #ifdef HAVE_STRING_H ! # include <string.h> ! #else ! # include <strings.h> ! # ifndef HAVE_STRRCHR ! # define strrchr rindex ! # endif ! #endif ! #if defined(WIN32) ! # include "SPTK.h" #else ! # include <SPTK.h> #endif |
From: Heiga Z. <hei...@us...> - 2007-10-16 02:21:34
|
Update of /cvsroot/sp-tk/SPTK/src/bin/sp2mgc In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv11613/src/bin/sp2mgc Modified Files: _sp2mgc.c Log Message: Arrange spaces for macros. Wrap strrchr() by rindex() if string.h does not exist. Index: _sp2mgc.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/sp2mgc/_sp2mgc.c,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** _sp2mgc.c 9 Oct 2007 04:33:30 -0000 1.6 --- _sp2mgc.c 16 Oct 2007 02:20:56 -0000 1.7 *************** *** 54,58 **** Extract mel-generalized cepstral coefficients for given spectrum ! int sp2mgc(xw, flng, b, m, a, g, itr1, itr2, dd, e); double *xw : input sequence --- 54,58 ---- Extract mel-generalized cepstral coefficients for given spectrum ! int sp2mgc(xw, flng, b, m, a, g, itr1, itr2, dd, e, itype); double *xw : input sequence *************** *** 69,72 **** --- 69,73 ---- double f : mimimum value of the determinant of the normal matrix + int itype : input data type return value : 0 -> completed by end condition *************** *** 80,86 **** #if defined(WIN32) ! #include "SPTK.h" #else ! #include <SPTK.h> #endif --- 81,87 ---- #if defined(WIN32) ! # include "SPTK.h" #else ! # include <SPTK.h> #endif |
From: Heiga Z. <hei...@us...> - 2007-10-16 02:21:32
|
Update of /cvsroot/sp-tk/SPTK/src/bin/gc2gc In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv11613/src/bin/gc2gc Modified Files: _gc2gc.c gc2gc.c Log Message: Arrange spaces for macros. Wrap strrchr() by rindex() if string.h does not exist. Index: gc2gc.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/gc2gc/gc2gc.c,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** gc2gc.c 9 Oct 2007 10:07:06 -0000 1.18 --- gc2gc.c 16 Oct 2007 02:20:55 -0000 1.19 *************** *** 86,95 **** #include <stdio.h> #include <stdlib.h> ! #include <string.h> #if defined(WIN32) ! #include "SPTK.h" #else ! #include <SPTK.h> #endif --- 86,104 ---- #include <stdio.h> #include <stdlib.h> ! ! #ifdef HAVE_STRING_H ! # include <string.h> ! #else ! # include <strings.h> ! # ifndef HAVE_STRRCHR ! # define strrchr rindex ! # endif ! #endif ! #if defined(WIN32) ! # include "SPTK.h" #else ! # include <SPTK.h> #endif Index: _gc2gc.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/gc2gc/_gc2gc.c,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** _gc2gc.c 8 Oct 2007 16:49:28 -0000 1.9 --- _gc2gc.c 16 Oct 2007 02:20:55 -0000 1.10 *************** *** 68,74 **** #if defined(WIN32) ! #include "SPTK.h" #else ! #include <SPTK.h> #endif --- 68,74 ---- #if defined(WIN32) ! # include "SPTK.h" #else ! # include <SPTK.h> #endif |
From: Heiga Z. <hei...@us...> - 2007-10-16 02:21:32
|
Update of /cvsroot/sp-tk/SPTK/src/bin/clip In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv11613/src/bin/clip Modified Files: clip.c _clip.c Log Message: Arrange spaces for macros. Wrap strrchr() by rindex() if string.h does not exist. Index: _clip.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/clip/_clip.c,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** _clip.c 8 Oct 2007 16:49:27 -0000 1.9 --- _clip.c 16 Oct 2007 02:20:53 -0000 1.10 *************** *** 69,75 **** #if defined(WIN32) ! #include "SPTK.h" #else ! #include <SPTK.h> #endif --- 69,75 ---- #if defined(WIN32) ! # include "SPTK.h" #else ! # include <SPTK.h> #endif Index: clip.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/clip/clip.c,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** clip.c 9 Oct 2007 10:06:58 -0000 1.15 --- clip.c 16 Oct 2007 02:20:53 -0000 1.16 *************** *** 75,84 **** #include <stdio.h> #include <stdlib.h> ! #include <string.h> #if defined(WIN32) ! #include "SPTK.h" #else ! #include <SPTK.h> #endif --- 75,93 ---- #include <stdio.h> #include <stdlib.h> ! ! #ifdef HAVE_STRING_H ! # include <string.h> ! #else ! # include <strings.h> ! # ifndef HAVE_STRRCHR ! # define strrchr rindex ! # endif ! #endif ! #if defined(WIN32) ! # include "SPTK.h" #else ! # include <SPTK.h> #endif |
From: Heiga Z. <hei...@us...> - 2007-10-16 02:21:31
|
Update of /cvsroot/sp-tk/SPTK/src/bin/agcep In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv11613/src/bin/agcep Modified Files: _agcep.c agcep.c Log Message: Arrange spaces for macros. Wrap strrchr() by rindex() if string.h does not exist. Index: _agcep.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/agcep/_agcep.c,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** _agcep.c 8 Oct 2007 16:49:28 -0000 1.9 --- _agcep.c 16 Oct 2007 02:20:55 -0000 1.10 *************** *** 74,80 **** #if defined(WIN32) ! #include "SPTK.h" #else ! #include <SPTK.h> #endif --- 74,80 ---- #if defined(WIN32) ! # include "SPTK.h" #else ! # include <SPTK.h> #endif Index: agcep.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/agcep/agcep.c,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** agcep.c 9 Oct 2007 10:07:05 -0000 1.20 --- agcep.c 16 Oct 2007 02:20:55 -0000 1.21 *************** *** 87,97 **** #include <stdio.h> #include <stdlib.h> ! #include <string.h> #include <math.h> #if defined(WIN32) ! #include "SPTK.h" #else ! #include <SPTK.h> #endif --- 87,106 ---- #include <stdio.h> #include <stdlib.h> ! ! #ifdef HAVE_STRING_H ! # include <string.h> ! #else ! # include <strings.h> ! # ifndef HAVE_STRRCHR ! # define strrchr rindex ! # endif ! #endif ! #include <math.h> #if defined(WIN32) ! # include "SPTK.h" #else ! # include <SPTK.h> #endif |
From: Heiga Z. <hei...@us...> - 2007-10-16 02:21:31
|
Update of /cvsroot/sp-tk/SPTK/src/bin/lsp2lpc In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv11613/src/bin/lsp2lpc Modified Files: _lsp2lpc.c lsp2lpc.c Log Message: Arrange spaces for macros. Wrap strrchr() by rindex() if string.h does not exist. Index: lsp2lpc.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/lsp2lpc/lsp2lpc.c,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** lsp2lpc.c 9 Oct 2007 10:07:06 -0000 1.19 --- lsp2lpc.c 16 Oct 2007 02:20:55 -0000 1.20 *************** *** 84,94 **** #include <stdio.h> #include <stdlib.h> ! #include <string.h> #include <math.h> #if defined(WIN32) ! #include "SPTK.h" #else ! #include <SPTK.h> #endif --- 84,103 ---- #include <stdio.h> #include <stdlib.h> ! ! #ifdef HAVE_STRING_H ! # include <string.h> ! #else ! # include <strings.h> ! # ifndef HAVE_STRRCHR ! # define strrchr rindex ! # endif ! #endif ! #include <math.h> #if defined(WIN32) ! # include "SPTK.h" #else ! # include <SPTK.h> #endif Index: _lsp2lpc.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/lsp2lpc/_lsp2lpc.c,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** _lsp2lpc.c 8 Oct 2007 16:49:28 -0000 1.9 --- _lsp2lpc.c 16 Oct 2007 02:20:55 -0000 1.10 *************** *** 67,73 **** #if defined(WIN32) ! #include "SPTK.h" #else ! #include <SPTK.h> #endif --- 67,73 ---- #if defined(WIN32) ! # include "SPTK.h" #else ! # include <SPTK.h> #endif |
From: Heiga Z. <hei...@us...> - 2007-10-16 02:21:31
|
Update of /cvsroot/sp-tk/SPTK/src/bin/phase In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv11613/src/bin/phase Modified Files: phase.c _phase.c Log Message: Arrange spaces for macros. Wrap strrchr() by rindex() if string.h does not exist. Index: _phase.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/phase/_phase.c,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** _phase.c 8 Oct 2007 16:49:28 -0000 1.8 --- _phase.c 16 Oct 2007 02:20:55 -0000 1.9 *************** *** 69,75 **** #if defined(WIN32) ! #include "SPTK.h" #else ! #include <SPTK.h> #endif --- 69,75 ---- #if defined(WIN32) ! # include "SPTK.h" #else ! # include <SPTK.h> #endif Index: phase.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/phase/phase.c,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** phase.c 9 Oct 2007 10:06:58 -0000 1.18 --- phase.c 16 Oct 2007 02:20:55 -0000 1.19 *************** *** 77,86 **** #include <stdio.h> #include <stdlib.h> ! #include <string.h> #if defined(WIN32) ! #include "SPTK.h" #else ! #include <SPTK.h> #endif --- 77,95 ---- #include <stdio.h> #include <stdlib.h> ! ! #ifdef HAVE_STRING_H ! # include <string.h> ! #else ! # include <strings.h> ! # ifndef HAVE_STRRCHR ! # define strrchr rindex ! # endif ! #endif ! #if defined(WIN32) ! # include "SPTK.h" #else ! # include <SPTK.h> #endif |
From: Heiga Z. <hei...@us...> - 2007-10-16 02:21:31
|
Update of /cvsroot/sp-tk/SPTK/src/bin/impulse In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv11613/src/bin/impulse Modified Files: impulse.c Log Message: Arrange spaces for macros. Wrap strrchr() by rindex() if string.h does not exist. Index: impulse.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/impulse/impulse.c,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** impulse.c 8 Oct 2007 16:49:28 -0000 1.14 --- impulse.c 16 Oct 2007 02:20:54 -0000 1.15 *************** *** 73,82 **** #include <stdio.h> #include <stdlib.h> ! #include <string.h> #if defined(WIN32) ! #include "SPTK.h" #else ! #include <SPTK.h> #endif --- 73,91 ---- #include <stdio.h> #include <stdlib.h> ! ! #ifdef HAVE_STRING_H ! # include <string.h> ! #else ! # include <strings.h> ! # ifndef HAVE_STRRCHR ! # define strrchr rindex ! # endif ! #endif ! #if defined(WIN32) ! # include "SPTK.h" #else ! # include <SPTK.h> #endif |
From: Heiga Z. <hei...@us...> - 2007-10-16 02:21:31
|
Update of /cvsroot/sp-tk/SPTK/src/bin/ds In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv11613/src/bin/ds Modified Files: ds.c Log Message: Arrange spaces for macros. Wrap strrchr() by rindex() if string.h does not exist. Index: ds.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/ds/ds.c,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** ds.c 9 Oct 2007 09:11:41 -0000 1.17 --- ds.c 16 Oct 2007 02:20:55 -0000 1.18 *************** *** 85,95 **** /* Standard C Libraries */ #include <stdio.h> - #include <string.h> #include <stdlib.h> #if defined(WIN32) ! #include "SPTK.h" #else ! #include <SPTK.h> #endif --- 85,103 ---- /* Standard C Libraries */ #include <stdio.h> #include <stdlib.h> + #ifdef HAVE_STRING_H + # include <string.h> + #else + # include <strings.h> + # ifndef HAVE_STRRCHR + # define strrchr rindex + # endif + #endif + #if defined(WIN32) ! # include "SPTK.h" #else ! # include <SPTK.h> #endif |
From: Heiga Z. <hei...@us...> - 2007-10-16 02:21:31
|
Update of /cvsroot/sp-tk/SPTK/src/bin/merge In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv11613/src/bin/merge Modified Files: merge.c Log Message: Arrange spaces for macros. Wrap strrchr() by rindex() if string.h does not exist. Index: merge.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/merge/merge.c,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** merge.c 9 Oct 2007 10:07:02 -0000 1.17 --- merge.c 16 Oct 2007 02:20:55 -0000 1.18 *************** *** 82,92 **** #include <stdio.h> #include <stdlib.h> ! #include <string.h> #include <ctype.h> #if defined(WIN32) ! #include "SPTK.h" #else ! #include <SPTK.h> #endif --- 82,101 ---- #include <stdio.h> #include <stdlib.h> ! ! #ifdef HAVE_STRING_H ! # include <string.h> ! #else ! # include <strings.h> ! # ifndef HAVE_STRRCHR ! # define strrchr rindex ! # endif ! #endif ! #include <ctype.h> #if defined(WIN32) ! # include "SPTK.h" #else ! # include <SPTK.h> #endif |
From: Heiga Z. <hei...@us...> - 2007-10-16 02:21:30
|
Update of /cvsroot/sp-tk/SPTK/src/bin/excite In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv11613/src/bin/excite Modified Files: excite.c Log Message: Arrange spaces for macros. Wrap strrchr() by rindex() if string.h does not exist. Index: excite.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/excite/excite.c,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** excite.c 9 Oct 2007 10:07:01 -0000 1.16 --- excite.c 16 Oct 2007 02:20:55 -0000 1.17 *************** *** 77,87 **** #include <stdio.h> #include <stdlib.h> ! #include <string.h> #include <math.h> #if defined(WIN32) ! #include "SPTK.h" #else ! #include <SPTK.h> #endif --- 77,96 ---- #include <stdio.h> #include <stdlib.h> ! ! #ifdef HAVE_STRING_H ! # include <string.h> ! #else ! # include <strings.h> ! # ifndef HAVE_STRRCHR ! # define strrchr rindex ! # endif ! #endif ! #include <math.h> #if defined(WIN32) ! # include "SPTK.h" #else ! # include <SPTK.h> #endif |
From: Heiga Z. <hei...@us...> - 2007-10-16 02:21:29
|
Update of /cvsroot/sp-tk/SPTK/src/bin/cat2 In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv11613/src/bin/cat2 Modified Files: cat2.c Log Message: Arrange spaces for macros. Wrap strrchr() by rindex() if string.h does not exist. Index: cat2.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/cat2/cat2.c,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** cat2.c 9 Oct 2007 09:31:12 -0000 1.15 --- cat2.c 16 Oct 2007 02:20:55 -0000 1.16 *************** *** 67,76 **** #include <stdio.h> #include <stdlib.h> ! #include <string.h> #if defined(WIN32) ! #include "SPTK.h" #else ! #include <SPTK.h> #endif --- 67,85 ---- #include <stdio.h> #include <stdlib.h> ! ! #ifdef HAVE_STRING_H ! # include <string.h> ! #else ! # include <strings.h> ! # ifndef HAVE_STRRCHR ! # define strrchr rindex ! # endif ! #endif ! #if defined(WIN32) ! # include "SPTK.h" #else ! # include <SPTK.h> #endif |
From: Heiga Z. <hei...@us...> - 2007-10-16 02:21:26
|
Update of /cvsroot/sp-tk/SPTK/src/bin/frame In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv11613/src/bin/frame Modified Files: frame.c Log Message: Arrange spaces for macros. Wrap strrchr() by rindex() if string.h does not exist. Index: frame.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/frame/frame.c,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** frame.c 9 Oct 2007 10:07:10 -0000 1.15 --- frame.c 16 Oct 2007 02:21:21 -0000 1.16 *************** *** 87,96 **** #include <stdio.h> #include <stdlib.h> ! #include <string.h> #if defined(WIN32) ! #include "SPTK.h" #else ! #include <SPTK.h> #endif --- 87,105 ---- #include <stdio.h> #include <stdlib.h> ! ! #ifdef HAVE_STRING_H ! # include <string.h> ! #else ! # include <strings.h> ! # ifndef HAVE_STRRCHR ! # define strrchr rindex ! # endif ! #endif ! #if defined(WIN32) ! # include "SPTK.h" #else ! # include <SPTK.h> #endif |
From: Heiga Z. <hei...@us...> - 2007-10-16 02:21:26
|
Update of /cvsroot/sp-tk/SPTK/src/bin/lspcheck In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv11613/src/bin/lspcheck Modified Files: lspcheck.c Log Message: Arrange spaces for macros. Wrap strrchr() by rindex() if string.h does not exist. Index: lspcheck.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/lspcheck/lspcheck.c,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** lspcheck.c 9 Oct 2007 10:07:10 -0000 1.17 --- lspcheck.c 16 Oct 2007 02:21:21 -0000 1.18 *************** *** 82,91 **** #include <stdio.h> #include <stdlib.h> ! #include <string.h> #if defined(WIN32) ! #include "SPTK.h" #else ! #include <SPTK.h> #endif --- 82,100 ---- #include <stdio.h> #include <stdlib.h> ! ! #ifdef HAVE_STRING_H ! # include <string.h> ! #else ! # include <strings.h> ! # ifndef HAVE_STRRCHR ! # define strrchr rindex ! # endif ! #endif ! #if defined(WIN32) ! # include "SPTK.h" #else ! # include <SPTK.h> #endif |