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:25
|
Update of /cvsroot/sp-tk/SPTK/src/bin/decimate In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv11613/src/bin/decimate Modified Files: decimate.c Log Message: Arrange spaces for macros. Wrap strrchr() by rindex() if string.h does not exist. Index: decimate.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/decimate/decimate.c,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** decimate.c 9 Oct 2007 10:07:12 -0000 1.15 --- decimate.c 16 Oct 2007 02:21:21 -0000 1.16 *************** *** 74,83 **** #include <stdio.h> #include <stdlib.h> ! #include <string.h> #if defined(WIN32) ! #include "SPTK.h" #else ! #include <SPTK.h> #endif --- 74,92 ---- #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:25
|
Update of /cvsroot/sp-tk/SPTK/src/bin/delay In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv11613/src/bin/delay Modified Files: delay.c Log Message: Arrange spaces for macros. Wrap strrchr() by rindex() if string.h does not exist. Index: delay.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/delay/delay.c,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** delay.c 9 Oct 2007 10:07:14 -0000 1.20 --- delay.c 16 Oct 2007 02:21:21 -0000 1.21 *************** *** 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:24
|
Update of /cvsroot/sp-tk/SPTK/src/bin/fftcep In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv11613/src/bin/fftcep Modified Files: _fftcep.c fftcep.c Log Message: Arrange spaces for macros. Wrap strrchr() by rindex() if string.h does not exist. Index: _fftcep.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/fftcep/_fftcep.c,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** _fftcep.c 8 Oct 2007 16:49:35 -0000 1.8 --- _fftcep.c 16 Oct 2007 02:21:20 -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: fftcep.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/fftcep/fftcep.c,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** fftcep.c 9 Oct 2007 10:07:09 -0000 1.20 --- fftcep.c 16 Oct 2007 02:21:20 -0000 1.21 *************** *** 83,93 **** #include <stdio.h> #include <stdlib.h> ! #include <string.h> #include <math.h> #if defined(WIN32) ! #include "SPTK.h" #else ! #include <SPTK.h> #endif --- 83,102 ---- #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:24
|
Update of /cvsroot/sp-tk/SPTK/src/bin/da In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv11613/src/bin/da Modified Files: da.h dawrite.c Log Message: Arrange spaces for macros. Wrap strrchr() by rindex() if string.h does not exist. Index: dawrite.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/da/dawrite.c,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** dawrite.c 9 Oct 2007 09:06:21 -0000 1.20 --- dawrite.c 16 Oct 2007 02:21:20 -0000 1.21 *************** *** 79,91 **** #include <stdio.h> #include <stdlib.h> ! #include <string.h> ! #ifndef WIN32 ! #include <unistd.h> #endif - #include <SPTK.h> - #include "da.h" ! #ifdef WIN32 ! #include "winplay.h" #endif --- 79,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 ! #ifndef WIN32 ! # include <unistd.h> ! # include <SPTK.h> ! # include "da.h" ! #else ! # include "SPTK.h" ! # include "da.h" ! # include "winplay.h" #endif Index: da.h =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/da/da.h,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** da.h 9 Oct 2007 09:06:21 -0000 1.10 --- da.h 16 Oct 2007 02:21:20 -0000 1.11 *************** *** 57,90 **** #if defined(LINUX) || defined(FreeBSD) ! #include <sys/soundcard.h> ! #define AUDIO_DEV "/dev/dsp" ! #define MIXER_DEV "/dev/mixer" ! #define MAXAMPGAIN 100 ! #define AVAILABLE_FREQ "8,11.025,22.05,44.1" ! #define DEFAULT_FREQ 11 #endif /* LINUX or FreeBSD */ #ifdef SUNOS ! #define SPARC ! #include <sun/audioio.h> #endif /* SUNOS */ #ifdef SOLARIS ! #define SPARC ! #include <sys/audioio.h> #endif /* SOLARIS */ #ifdef SPARC ! #define AUDIO_DEV "/dev/audio" ! #define AUDIO_CTLDEV "/dev/audioctl" ! #define MAXAMPGAIN 255 ! #define AVAILABLE_FREQ "8,11.025,16,22.05,32,44.1,48" ! #define DEFAULT_FREQ 16 #endif /* SPARC */ #ifdef WIN32 ! #define AVAILABLE_FREQ "8,11.025,22.05,44.1" ! #define MAXAMPGAIN 65535 ! #define DEFAULT_FREQ 16 #endif --- 57,90 ---- #if defined(LINUX) || defined(FreeBSD) ! # include <sys/soundcard.h> ! # define AUDIO_DEV "/dev/dsp" ! # define MIXER_DEV "/dev/mixer" ! # define MAXAMPGAIN 100 ! # define AVAILABLE_FREQ "8,11.025,22.05,44.1" ! # define DEFAULT_FREQ 11 #endif /* LINUX or FreeBSD */ #ifdef SUNOS ! # define SPARC ! # include <sun/audioio.h> #endif /* SUNOS */ #ifdef SOLARIS ! # define SPARC ! # include <sys/audioio.h> #endif /* SOLARIS */ #ifdef SPARC ! # define AUDIO_DEV "/dev/audio" ! # define AUDIO_CTLDEV "/dev/audioctl" ! # define MAXAMPGAIN 255 ! # define AVAILABLE_FREQ "8,11.025,16,22.05,32,44.1,48" ! # define DEFAULT_FREQ 16 #endif /* SPARC */ #ifdef WIN32 ! # define AVAILABLE_FREQ "8,11.025,22.05,44.1" ! # define MAXAMPGAIN 65535 ! # define DEFAULT_FREQ 16 #endif |
From: Heiga Z. <hei...@us...> - 2007-10-16 02:21:24
|
Update of /cvsroot/sp-tk/SPTK/src/bin/iglsadf In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv11613/src/bin/iglsadf Modified Files: _iglsadf.c iglsadf.c Log Message: Arrange spaces for macros. Wrap strrchr() by rindex() if string.h does not exist. Index: _iglsadf.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/iglsadf/_iglsadf.c,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** _iglsadf.c 8 Oct 2007 16:49:35 -0000 1.8 --- _iglsadf.c 16 Oct 2007 02:21:20 -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: iglsadf.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/iglsadf/iglsadf.c,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** iglsadf.c 9 Oct 2007 10:07:12 -0000 1.19 --- iglsadf.c 16 Oct 2007 02:21:20 -0000 1.20 *************** *** 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:24
|
Update of /cvsroot/sp-tk/SPTK/src/bin/extract In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv11613/src/bin/extract Modified Files: extract.c Log Message: Arrange spaces for macros. Wrap strrchr() by rindex() if string.h does not exist. Index: extract.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/extract/extract.c,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** extract.c 9 Oct 2007 10:07:08 -0000 1.16 --- extract.c 16 Oct 2007 02:21:20 -0000 1.17 *************** *** 76,85 **** #include <stdio.h> #include <stdlib.h> ! #include <string.h> #if defined(WIN32) ! #include "SPTK.h" #else ! #include <SPTK.h> #endif --- 76,94 ---- #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:23
|
Update of /cvsroot/sp-tk/SPTK/src/bin/c2ir In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv11613/src/bin/c2ir Modified Files: c2ir.c Log Message: Arrange spaces for macros. Wrap strrchr() by rindex() if string.h does not exist. Index: c2ir.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/c2ir/c2ir.c,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** c2ir.c 9 Oct 2007 10:07:08 -0000 1.19 --- c2ir.c 16 Oct 2007 02:21:20 -0000 1.20 *************** *** 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:23
|
Update of /cvsroot/sp-tk/SPTK/src/bin/bcp In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv11613/src/bin/bcp Modified Files: bcp.c Log Message: Arrange spaces for macros. Wrap strrchr() by rindex() if string.h does not exist. Index: bcp.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/bcp/bcp.c,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** bcp.c 9 Oct 2007 10:07:08 -0000 1.15 --- bcp.c 16 Oct 2007 02:21:19 -0000 1.16 *************** *** 86,97 **** /* 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 --- 86,106 ---- /* 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:19:31
|
Update of /cvsroot/sp-tk/SPTK/src/bin/sp2mc In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv11191/src/bin/sp2mc Added Files: .cvsignore Log Message: Add .cvsignore. --- NEW FILE: .cvsignore --- .deps sp2mc mgc.eps Makefile mc.eps Makefile.in |
From: Heiga Z. <hei...@us...> - 2007-10-16 02:17:38
|
Update of /cvsroot/sp-tk/SPTK/src In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv10434/src Modified Files: configure.ac Log Message: Add sp2mc. Index: configure.ac =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/configure.ac,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** configure.ac 1 Oct 2007 07:13:18 -0000 1.13 --- configure.ac 16 Oct 2007 02:17:34 -0000 1.14 *************** *** 224,227 **** --- 224,228 ---- bin/snr/Makefile bin/sopr/Makefile + bin/sp2mc/Makefile bin/sp2mgc/Makefile bin/spec/Makefile |
From: Mailing l. f. S. C. c. mails.
<sp-...@li...> - 2007-10-14 18:52:13
|
Update of /cvsroot/sp-tk/CVSROOT In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv20453 Added Files: .cvsignore Log Message: Add .cvsignore. --- NEW FILE: .cvsignore --- .project |