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: Shikano M. <sh...@us...> - 2016-01-15 06:49:27
|
Update of /cvsroot/sp-tk/SPTK/src/bin/zcross In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv14753 Modified Files: _zcross.c Log Message: Change of function Index: _zcross.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/zcross/_zcross.c,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** _zcross.c 14 Dec 2015 01:14:25 -0000 1.17 --- _zcross.c 15 Jan 2016 06:49:25 -0000 1.18 *************** *** 79,83 **** for (i = 0; i < fl; i++) ! z += abs(sgn(x[i + 1]) - sgn(x[i])); if (n) z /= fl; --- 79,83 ---- for (i = 0; i < fl; i++) ! z += fabs(sgn(x[i + 1]) - sgn(x[i])); if (n) z /= fl; |
From: fujishita t. <fjs...@us...> - 2016-01-15 04:27:11
|
Update of /cvsroot/sp-tk/SPTK/src/script In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv8732 Modified Files: glogsp.in grlogsp.in gseries.in gwave.in mgc2mgclsp.in mgclsp2mgc.in raw2wav.in wav2raw.in Log Message: modify uid settings Index: gwave.in =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/script/gwave.in,v retrieving revision 1.24 retrieving revision 1.25 diff -C2 -d -r1.24 -r1.25 *** gwave.in 14 Dec 2015 05:45:40 -0000 1.24 --- gwave.in 15 Jan 2016 04:27:09 -0000 1.25 *************** *** 77,80 **** --- 77,89 ---- set flagy = 0 + if ($?uid) then + else + if ($?UID) then + set uid = $UID + else + set uid + endif + endif + @ i = 0 while ($i < $#argv) Index: raw2wav.in =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/script/raw2wav.in,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** raw2wav.in 14 Dec 2015 05:45:40 -0000 1.19 --- raw2wav.in 15 Jan 2016 04:27:09 -0000 1.20 *************** *** 78,81 **** --- 78,90 ---- set index + if ($?uid) then + else + if ($?UID) then + set uid = $UID + else + set uid + endif + endif + @ i = 0 while ($i < $#argv) Index: grlogsp.in =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/script/grlogsp.in,v retrieving revision 1.24 retrieving revision 1.25 diff -C2 -d -r1.24 -r1.25 *** grlogsp.in 14 Dec 2015 05:45:40 -0000 1.24 --- grlogsp.in 15 Jan 2016 04:27:09 -0000 1.25 *************** *** 175,178 **** --- 175,187 ---- set on_x = (25 60 95 130 165 200 235 270 305 340) + if ($?uid) then + else + if ($?UID) then + set uid = $UID + else + set uid + endif + endif + @ i = 0 while ($i < $#argv) Index: wav2raw.in =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/script/wav2raw.in,v retrieving revision 1.23 retrieving revision 1.24 diff -C2 -d -r1.23 -r1.24 *** wav2raw.in 14 Dec 2015 05:45:40 -0000 1.23 --- wav2raw.in 15 Jan 2016 04:27:09 -0000 1.24 *************** *** 82,85 **** --- 82,94 ---- set index + if ($?uid) then + else + if ($?UID) then + set uid = $UID + else + set uid + endif + endif + @ i = 0 while ($i < $#argv) Index: mgclsp2mgc.in =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/script/mgclsp2mgc.in,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** mgclsp2mgc.in 14 Dec 2015 05:45:40 -0000 1.11 --- mgclsp2mgc.in 15 Jan 2016 04:27:09 -0000 1.12 *************** *** 67,70 **** --- 67,79 ---- set file + if ($?uid) then + else + if ($?UID) then + set uid = $UID + else + set uid + endif + endif + @ i = 0 while ($i < $#argv) Index: glogsp.in =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/script/glogsp.in,v retrieving revision 1.24 retrieving revision 1.25 diff -C2 -d -r1.24 -r1.25 *** glogsp.in 14 Dec 2015 05:45:40 -0000 1.24 --- glogsp.in 15 Jan 2016 04:27:09 -0000 1.25 *************** *** 165,168 **** --- 165,177 ---- set on_y = (205 205 120 120 35 35) + if ($?uid) then + else + if ($?UID) then + set uid = $UID + else + set uid + endif + endif + @ i = 0 while ($i < $#argv) Index: mgc2mgclsp.in =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/script/mgc2mgclsp.in,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** mgc2mgclsp.in 14 Dec 2015 05:45:40 -0000 1.12 --- mgc2mgclsp.in 15 Jan 2016 04:27:09 -0000 1.13 *************** *** 71,74 **** --- 71,83 ---- set file + if ($?uid) then + else + if ($?UID) then + set uid = $UID + else + set uid + endif + endif + @ i = 0 while ($i < $#argv) Index: gseries.in =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/script/gseries.in,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** gseries.in 14 Dec 2015 05:45:40 -0000 1.9 --- gseries.in 15 Jan 2016 04:27:09 -0000 1.10 *************** *** 84,87 **** --- 84,96 ---- set MAGIC_count = 0 + if ($?uid) then + else + if ($?UID) then + set uid = $UID + else + set uid + endif + endif + @ i = 0 while ($i < $#argv) |
From: Takenori Y. <tak...@us...> - 2015-12-28 12:51:53
|
Update of /cvsroot/sp-tk/SPTK4/src In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv13155 Modified Files: fast_fourier_transform.cc fast_fourier_transform.h fft.cc frequency_transform.h sptk_utils.cc Added Files: ifft.cc Log Message: add ifft command Index: fast_fourier_transform.h =================================================================== RCS file: /cvsroot/sp-tk/SPTK4/src/fast_fourier_transform.h,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** fast_fourier_transform.h 17 Nov 2015 10:15:37 -0000 1.3 --- fast_fourier_transform.h 28 Dec 2015 12:51:50 -0000 1.4 *************** *** 53,57 **** public: // ! FastFourierTransform() : num_dimension_(0) {} // --- 53,57 ---- public: // ! FastFourierTransform() : num_dimension_(0), inverse_(false) {} // *************** *** 62,65 **** --- 62,70 ---- // + void SetInverseFlag(bool inverse) { + inverse_ = inverse; + } + + // int GetNumDimension() const { return num_dimension_; *************** *** 67,70 **** --- 72,80 ---- // + bool GetInverseFlag() const { + return inverse_; + } + + // bool Run(const std::vector<double>& real_part_input, const std::vector<double>& imaginary_part_input, *************** *** 83,86 **** --- 93,99 ---- // + bool inverse_; + + // std::vector<double> sine_table_; }; Index: fast_fourier_transform.cc =================================================================== RCS file: /cvsroot/sp-tk/SPTK4/src/fast_fourier_transform.cc,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** fast_fourier_transform.cc 25 Nov 2015 11:35:26 -0000 1.4 --- fast_fourier_transform.cc 28 Dec 2015 12:51:50 -0000 1.5 *************** *** 106,115 **** 0.0); ! double* x(&((*real_part_output)[0])); ! double* y(&((*imaginary_part_output)[0])); // set values const int half_num_dimension(num_dimension_ / 2); const int dec_num_dimension(num_dimension_ - 1); int lix(num_dimension_); --- 106,123 ---- 0.0); ! double* x; ! double* y; ! if (inverse_) { ! x = &((*imaginary_part_output)[0]); ! y = &((*real_part_output)[0]); ! } else { ! x = &((*real_part_output)[0]); ! y = &((*imaginary_part_output)[0]); ! } // set values const int half_num_dimension(num_dimension_ / 2); const int dec_num_dimension(num_dimension_ - 1); + const double inverse_num_dimension(1.0 / num_dimension_); int lix(num_dimension_); *************** *** 153,163 **** } - // bit reversal xp = x; yp = y; - int j(0); ! for (int lmx(0); lmx < dec_num_dimension; ++lmx) { ! int lmxj(lmx - j); if (lmxj < 0) { const double t1(*(xp)); --- 161,170 ---- } xp = x; yp = y; ! // bit reversal ! for (int lmx(0), j(0); lmx < dec_num_dimension; ++lmx) { ! const int lmxj(lmx - j); if (lmxj < 0) { const double t1(*(xp)); *************** *** 179,182 **** --- 186,199 ---- } + // normalize + if (inverse_) { + xp = x; + yp = y; + for (int i(0); i < num_dimension_; ++i) { + *(xp + i) *= inverse_num_dimension; + *(yp + i) *= inverse_num_dimension; + } + } + return true; } Index: sptk_utils.cc =================================================================== RCS file: /cvsroot/sp-tk/SPTK4/src/sptk_utils.cc,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** sptk_utils.cc 14 Dec 2015 11:56:42 -0000 1.4 --- sptk_utils.cc 28 Dec 2015 12:51:50 -0000 1.5 *************** *** 55,59 **** std::vector<double>* sequence_to_read, std::istream* input_stream) { ! if (1 > read_size || NULL == sequence_to_read || NULL == input_stream) --- 55,59 ---- std::vector<double>* sequence_to_read, std::istream* input_stream) { ! if (0 >= read_size || NULL == sequence_to_read || NULL == input_stream) *************** *** 79,83 **** const int num_zeros(std::ceil( static_cast<double>(num_bytes - gcount) / type_byte)); ! if (num_zeros < 0) return false; // Something wrong! --- 79,83 ---- const int num_zeros(std::ceil( static_cast<double>(num_bytes - gcount) / type_byte)); ! if (0 > num_zeros) return false; // Something wrong! *************** *** 93,97 **** const std::vector<double>& sequence_to_write, std::ostream* output_stream) { ! if (1 > write_size || NULL == output_stream) return false; --- 93,97 ---- const std::vector<double>& sequence_to_write, std::ostream* output_stream) { ! if (0 >= write_size || NULL == output_stream) return false; Index: fft.cc =================================================================== RCS file: /cvsroot/sp-tk/SPTK4/src/fft.cc,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** fft.cc 25 Nov 2015 11:35:26 -0000 1.3 --- fft.cc 28 Dec 2015 12:51:50 -0000 1.4 *************** *** 45,49 **** #include <unistd.h> #include <cmath> - #include <cstdlib> #include <fstream> #include <iostream> --- 45,48 ---- *************** *** 65,69 **** }; ! const int kDefaultFFTSize(256); void PrintUsage() { --- 64,68 ---- }; ! const int kDefaultFftSize(256); void PrintUsage() { *************** *** 74,80 **** std::cout << " fft [ options ] [ infile ] > stdout" << std::endl; std::cout << " options:" << std::endl; ! std::cout << " -l l : FFT size [" << kDefaultFFTSize << "]" << std::endl; // NOLINT std::cout << " -m m : order of sequence [l-1]" << std::endl; // NOLINT ! std::cout << " -o : output format [0]" << std::endl; // NOLINT std::cout << " 0 (real and imaginary parts)" << std::endl; std::cout << " 1 (real part)" << std::endl; --- 73,79 ---- std::cout << " fft [ options ] [ infile ] > stdout" << std::endl; std::cout << " options:" << std::endl; ! std::cout << " -l l : FFT size [" << kDefaultFftSize << "]" << std::endl; // NOLINT std::cout << " -m m : order of sequence [l-1]" << std::endl; // NOLINT ! std::cout << " -o : output format [0]" << std::endl; // NOLINT std::cout << " 0 (real and imaginary parts)" << std::endl; std::cout << " 1 (real part)" << std::endl; *************** *** 95,99 **** int main(int argc, char* argv[]) { ! int fft_size(kDefaultFFTSize); int order(0); bool order_is_specified(false); --- 94,98 ---- int main(int argc, char* argv[]) { ! int fft_size(kDefaultFftSize); int order(0); bool order_is_specified(false); *************** *** 165,168 **** --- 164,168 ---- return 1; } + fft.SetInverseFlag(false); // check order Index: frequency_transform.h =================================================================== RCS file: /cvsroot/sp-tk/SPTK4/src/frequency_transform.h,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** frequency_transform.h 25 Nov 2015 11:35:26 -0000 1.4 --- frequency_transform.h 28 Dec 2015 12:51:50 -0000 1.5 *************** *** 74,80 **** // num_output_order must be not negative bool SetNumOutputOrder(int num_output_order) { ! if (num_output_order < 0) { ! return false; ! } num_output_order_ = num_output_order; return true; --- 74,78 ---- // num_output_order must be not negative bool SetNumOutputOrder(int num_output_order) { ! if (0 > num_output_order) return false; num_output_order_ = num_output_order; return true; --- NEW FILE: ifft.cc --- // ----------------------------------------------------------------- // // The Speech Signal Processing Toolkit (SPTK) // // developed by SPTK Working Group // // http://sp-tk.sourceforge.net/ // // ----------------------------------------------------------------- // // // // Copyright (c) 1984-2007 Tokyo Institute of Technology // // Interdisciplinary Graduate School of // // Science and Engineering // // // // 1996-2015 Nagoya Institute of Technology // // Department of Computer Science // // // // All rights reserved. // // // // Redistribution and use in source and binary forms, with or // // without modification, are permitted provided that the following // // conditions are met: // // // // - Redistributions of source code must retain the above copyright // // notice, this list of conditions and the following disclaimer. // // - Redistributions in binary form must reproduce the above // // copyright notice, this list of conditions and the following // // disclaimer in the documentation and/or other materials provided // // with the distribution. // // - Neither the name of the SPTK working group nor the names of its // // contributors may be used to endorse or promote products derived // // from this software without specific prior written permission. // // // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND // // CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, // // INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF // // MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE // // DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS // // BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, // // EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED // // TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON // // ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, // // OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY // // OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE // // POSSIBILITY OF SUCH DAMAGE. // // ----------------------------------------------------------------- // #include <unistd.h> #include <fstream> #include <iostream> #include <sstream> #include <vector> #include "fast_fourier_transform.h" #include "sptk_utils.h" namespace { enum OutputFormats { kOutputRealAndImaginaryParts = 0, kOutputRealPart, kOutputImaginaryPart, kNumOutputFormats }; const int kDefaultFftSize(256); void PrintUsage() { std::cout << std::endl; std::cout << " ifft - inverse FFT for complex sequence" << std::endl; std::cout << std::endl; std::cout << " usage:" << std::endl; std::cout << " ifft [ options ] [ infile ] > stdout" << std::endl; std::cout << " options:" << std::endl; std::cout << " -l l : FFT size [" << kDefaultFftSize << "]" << std::endl; // NOLINT std::cout << " -o : output format [0]" << std::endl; // NOLINT std::cout << " 0 (real and imaginary parts)" << std::endl; std::cout << " 1 (real part)" << std::endl; std::cout << " 2 (imaginary part)" << std::endl; std::cout << " -h : print this message" << std::endl; std::cout << " infile:" << std::endl; std::cout << " data sequence (double) [stdin]" << std::endl; // NOLINT std::cout << " stdout:" << std::endl; std::cout << " inverse FFT sequence (double)" << std::endl; std::cout << std::endl; std::cout << " SPTK: version " << sptk::kVersion << std::endl; std::cout << std::endl; } } // namespace int main(int argc, char* argv[]) { int fft_size(kDefaultFftSize); OutputFormats output_format(kOutputRealAndImaginaryParts); while (true) { const char option_char(getopt(argc, argv, "l:o:h")); if (-1 == option_char) break; switch (option_char) { case 'l': { if (!sptk::ConvertStringToInteger(optarg, &fft_size)) { std::ostringstream error_message; error_message << "The argument for the -l option must be an integer"; sptk::PrintErrorMessage("ifft", error_message); return 1; } break; } case 'o': { int output_format_integer; if (!sptk::ConvertStringToInteger(optarg, &output_format_integer)) { std::ostringstream error_message; error_message << "The argument for the -o option must be an integer"; sptk::PrintErrorMessage("ifft", error_message); return 1; } const int min(0); const int max(static_cast<int>(kNumOutputFormats) - 1); if (!sptk::IsInRange(output_format_integer, min, max)) { std::ostringstream error_message; error_message << "The argument for the -o option must be in range" << " (" << min << " .. " << max << ")"; sptk::PrintErrorMessage("ifft", error_message); return 1; } output_format = static_cast<OutputFormats>(output_format_integer); break; } case 'h': { PrintUsage(); return 0; } default: { PrintUsage(); return 1; } } } // check FFT size sptk::FastFourierTransform fft; if (!fft.SetNumDimension(fft_size)) { std::ostringstream error_message; error_message << "The FFT size must be an power of 2 and greater than 2"; sptk::PrintErrorMessage("ifft", error_message); return 1; } fft.SetInverseFlag(true); // get input file const char* input_file((optind < argc) ? argv[argc - 1] : NULL); // open stream std::ifstream ifs; ifs.open(input_file, std::ios::in | std::ios::binary); if (ifs.fail() && NULL != input_file) { std::ostringstream error_message; error_message << "Cannot open file " << input_file; sptk::PrintErrorMessage("ifft", error_message); return 1; } std::istream& input_stream(ifs.fail() ? std::cin : ifs); std::vector<double> input_x(fft_size); std::vector<double> input_y(fft_size); std::vector<double> output_x(fft_size); std::vector<double> output_y(fft_size); while (!input_stream.eof()) { // get input if (!sptk::ReadStream(false, fft_size, &input_x, &input_stream)) break; if (!sptk::ReadStream(false, fft_size, &input_y, &input_stream)) break; if (!fft.Run(input_x, input_y, &output_x, &output_y)) { std::ostringstream error_message; error_message << "Failed to run the inverse fast Fourier transform"; sptk::PrintErrorMessage("ifft", error_message); return 1; } if (kOutputImaginaryPart != output_format && !sptk::WriteStream(fft_size, output_x, &std::cout)) { std::ostringstream error_message; error_message << "Failed to write output sequence"; sptk::PrintErrorMessage("ifft", error_message); return 1; } if ((kOutputRealAndImaginaryParts == output_format || kOutputImaginaryPart == output_format) && !sptk::WriteStream(fft_size, output_y, &std::cout)) { std::ostringstream error_message; error_message << "Failed to write output sequence"; sptk::PrintErrorMessage("ifft", error_message); return 1; } } return 0; } |
From: Shikano M. <sh...@us...> - 2015-12-28 05:25:53
|
Update of /cvsroot/sp-tk/SPTK/src/bin/fftcep In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv28805 Modified Files: _fftcep.c Log Message: Modification of the type Index: _fftcep.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/fftcep/_fftcep.c,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** _fftcep.c 16 Dec 2015 07:05:06 -0000 1.18 --- _fftcep.c 28 Dec 2015 05:25:50 -0000 1.19 *************** *** 74,78 **** double temp; static double *x = NULL, *y; ! static double size; int k; --- 74,78 ---- double temp; static double *x = NULL, *y; ! static int size; int k; |
From: Keiichiro O. <ur...@us...> - 2015-12-25 07:23:40
|
Update of /cvsroot/sp-tk/SPTK/src/bin/xgr/tills In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv23672/bin/xgr/tills Modified Files: till0.dat till1.dat till10.dat till11.dat till12.dat till13.dat till14.dat till15.dat till16.dat till2.dat till3.dat till4.dat till5.dat till6.dat till7.dat till8.dat till9.dat Log Message: update copyright Index: till11.dat =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/xgr/tills/till11.dat,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** till11.dat 12 Sep 2007 08:37:13 -0000 1.3 --- till11.dat 25 Dec 2015 07:23:38 -0000 1.4 *************** *** 1,50 **** ! /* ! --------------------------------------------------------------- ! Speech Signal Processing Toolkit (SPTK) ! ! SPTK Working Group ! ! Department of Computer Science ! Nagoya Institute of Technology ! and ! Interdisciplinary Graduate School of Science and Engineering ! Tokyo Institute of Technology ! ! Copyright (c) 1984-2007 ! All Rights Reserved. ! ! Permission is hereby granted, free of charge, to use and ! distribute this software and its documentation without ! restriction, including without limitation the rights to use, ! copy, modify, merge, publish, distribute, sublicense, and/or ! sell copies of this work, and to permit persons to whom this ! work is furnished to do so, subject to the following conditions: ! ! 1. The source code must retain the above copyright notice, ! this list of conditions and the following disclaimer. ! ! 2. Any modifications to the source code must be clearly ! marked as such. ! ! 3. Redistributions in binary form must reproduce the above ! copyright notice, this list of conditions and the ! following disclaimer in the documentation and/or other ! materials provided with the distribution. Otherwise, one ! must contact the SPTK working group. ! ! NAGOYA INSTITUTE OF TECHNOLOGY, TOKYO INSTITUTE OF TECHNOLOGY, ! SPTK WORKING GROUP, AND THE CONTRIBUTORS TO THIS WORK DISCLAIM ! ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL ! IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT ! SHALL NAGOYA INSTITUTE OF TECHNOLOGY, TOKYO INSTITUTE OF ! TECHNOLOGY, SPTK WORKING GROUP, NOR THE CONTRIBUTORS BE LIABLE ! FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY ! DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, ! WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTUOUS ! ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ! ! --------------------------------------------------------------- ! */ #define till11_width 4 --- 1,45 ---- ! /* ----------------------------------------------------------------- */ ! /* The Speech Signal Processing Toolkit (SPTK) */ ! /* developed by SPTK Working Group */ ! /* http://sp-tk.sourceforge.net/ */ ! /* ----------------------------------------------------------------- */ ! /* */ ! /* Copyright (c) 1984-2007 Tokyo Institute of Technology */ ! /* Interdisciplinary Graduate School of */ ! /* Science and Engineering */ ! /* */ ! /* 1996-2015 Nagoya Institute of Technology */ ! /* Department of Computer Science */ ! /* */ ! /* All rights reserved. */ ! /* */ ! /* Redistribution and use in source and binary forms, with or */ ! /* without modification, are permitted provided that the following */ ! /* conditions are met: */ ! /* */ ! /* - Redistributions of source code must retain the above copyright */ ! /* notice, this list of conditions and the following disclaimer. */ ! /* - Redistributions in binary form must reproduce the above */ ! /* copyright notice, this list of conditions and the following */ ! /* disclaimer in the documentation and/or other materials provided */ ! /* with the distribution. */ ! /* - Neither the name of the SPTK working group nor the names of its */ ! /* contributors may be used to endorse or promote products derived */ ! /* from this software without specific prior written permission. */ ! /* */ ! /* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND */ ! /* CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, */ ! /* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF */ ! /* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE */ ! /* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS */ ! /* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, */ ! /* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED */ ! /* TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, */ ! /* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON */ ! /* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, */ ! /* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY */ ! /* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE */ ! /* POSSIBILITY OF SUCH DAMAGE. */ ! /* ----------------------------------------------------------------- */ #define till11_width 4 Index: till16.dat =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/xgr/tills/till16.dat,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** till16.dat 12 Sep 2007 08:37:14 -0000 1.3 --- till16.dat 25 Dec 2015 07:23:38 -0000 1.4 *************** *** 1,50 **** ! /* ! --------------------------------------------------------------- ! Speech Signal Processing Toolkit (SPTK) ! ! SPTK Working Group ! ! Department of Computer Science ! Nagoya Institute of Technology ! and ! Interdisciplinary Graduate School of Science and Engineering ! Tokyo Institute of Technology ! ! Copyright (c) 1984-2007 ! All Rights Reserved. ! ! Permission is hereby granted, free of charge, to use and ! distribute this software and its documentation without ! restriction, including without limitation the rights to use, ! copy, modify, merge, publish, distribute, sublicense, and/or ! sell copies of this work, and to permit persons to whom this ! work is furnished to do so, subject to the following conditions: ! ! 1. The source code must retain the above copyright notice, ! this list of conditions and the following disclaimer. ! ! 2. Any modifications to the source code must be clearly ! marked as such. ! ! 3. Redistributions in binary form must reproduce the above ! copyright notice, this list of conditions and the ! following disclaimer in the documentation and/or other ! materials provided with the distribution. Otherwise, one ! must contact the SPTK working group. ! ! NAGOYA INSTITUTE OF TECHNOLOGY, TOKYO INSTITUTE OF TECHNOLOGY, ! SPTK WORKING GROUP, AND THE CONTRIBUTORS TO THIS WORK DISCLAIM ! ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL ! IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT ! SHALL NAGOYA INSTITUTE OF TECHNOLOGY, TOKYO INSTITUTE OF ! TECHNOLOGY, SPTK WORKING GROUP, NOR THE CONTRIBUTORS BE LIABLE ! FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY ! DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, ! WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTUOUS ! ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ! ! --------------------------------------------------------------- ! */ #define till16_width 4 --- 1,45 ---- ! /* ----------------------------------------------------------------- */ ! /* The Speech Signal Processing Toolkit (SPTK) */ ! /* developed by SPTK Working Group */ ! /* http://sp-tk.sourceforge.net/ */ ! /* ----------------------------------------------------------------- */ ! /* */ ! /* Copyright (c) 1984-2007 Tokyo Institute of Technology */ ! /* Interdisciplinary Graduate School of */ ! /* Science and Engineering */ ! /* */ ! /* 1996-2015 Nagoya Institute of Technology */ ! /* Department of Computer Science */ ! /* */ ! /* All rights reserved. */ ! /* */ ! /* Redistribution and use in source and binary forms, with or */ ! /* without modification, are permitted provided that the following */ ! /* conditions are met: */ ! /* */ ! /* - Redistributions of source code must retain the above copyright */ ! /* notice, this list of conditions and the following disclaimer. */ ! /* - Redistributions in binary form must reproduce the above */ ! /* copyright notice, this list of conditions and the following */ ! /* disclaimer in the documentation and/or other materials provided */ ! /* with the distribution. */ ! /* - Neither the name of the SPTK working group nor the names of its */ ! /* contributors may be used to endorse or promote products derived */ ! /* from this software without specific prior written permission. */ ! /* */ ! /* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND */ ! /* CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, */ ! /* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF */ ! /* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE */ ! /* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS */ ! /* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, */ ! /* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED */ ! /* TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, */ ! /* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON */ ! /* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, */ ! /* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY */ ! /* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE */ ! /* POSSIBILITY OF SUCH DAMAGE. */ ! /* ----------------------------------------------------------------- */ #define till16_width 4 Index: till7.dat =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/xgr/tills/till7.dat,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** till7.dat 12 Sep 2007 08:37:13 -0000 1.3 --- till7.dat 25 Dec 2015 07:23:38 -0000 1.4 *************** *** 1,50 **** ! /* ! --------------------------------------------------------------- ! Speech Signal Processing Toolkit (SPTK) ! ! SPTK Working Group ! ! Department of Computer Science ! Nagoya Institute of Technology ! and ! Interdisciplinary Graduate School of Science and Engineering ! Tokyo Institute of Technology ! ! Copyright (c) 1984-2007 ! All Rights Reserved. ! ! Permission is hereby granted, free of charge, to use and ! distribute this software and its documentation without ! restriction, including without limitation the rights to use, ! copy, modify, merge, publish, distribute, sublicense, and/or ! sell copies of this work, and to permit persons to whom this ! work is furnished to do so, subject to the following conditions: ! ! 1. The source code must retain the above copyright notice, ! this list of conditions and the following disclaimer. ! ! 2. Any modifications to the source code must be clearly ! marked as such. ! ! 3. Redistributions in binary form must reproduce the above ! copyright notice, this list of conditions and the ! following disclaimer in the documentation and/or other ! materials provided with the distribution. Otherwise, one ! must contact the SPTK working group. ! ! NAGOYA INSTITUTE OF TECHNOLOGY, TOKYO INSTITUTE OF TECHNOLOGY, ! SPTK WORKING GROUP, AND THE CONTRIBUTORS TO THIS WORK DISCLAIM ! ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL ! IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT ! SHALL NAGOYA INSTITUTE OF TECHNOLOGY, TOKYO INSTITUTE OF ! TECHNOLOGY, SPTK WORKING GROUP, NOR THE CONTRIBUTORS BE LIABLE ! FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY ! DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, ! WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTUOUS ! ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ! ! --------------------------------------------------------------- ! */ #define till7_width 4 --- 1,45 ---- ! /* ----------------------------------------------------------------- */ ! /* The Speech Signal Processing Toolkit (SPTK) */ ! /* developed by SPTK Working Group */ ! /* http://sp-tk.sourceforge.net/ */ ! /* ----------------------------------------------------------------- */ ! /* */ ! /* Copyright (c) 1984-2007 Tokyo Institute of Technology */ ! /* Interdisciplinary Graduate School of */ ! /* Science and Engineering */ ! /* */ ! /* 1996-2015 Nagoya Institute of Technology */ ! /* Department of Computer Science */ ! /* */ ! /* All rights reserved. */ ! /* */ ! /* Redistribution and use in source and binary forms, with or */ ! /* without modification, are permitted provided that the following */ ! /* conditions are met: */ ! /* */ ! /* - Redistributions of source code must retain the above copyright */ ! /* notice, this list of conditions and the following disclaimer. */ ! /* - Redistributions in binary form must reproduce the above */ ! /* copyright notice, this list of conditions and the following */ ! /* disclaimer in the documentation and/or other materials provided */ ! /* with the distribution. */ ! /* - Neither the name of the SPTK working group nor the names of its */ ! /* contributors may be used to endorse or promote products derived */ ! /* from this software without specific prior written permission. */ ! /* */ ! /* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND */ ! /* CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, */ ! /* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF */ ! /* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE */ ! /* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS */ ! /* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, */ ! /* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED */ ! /* TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, */ ! /* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON */ ! /* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, */ ! /* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY */ ! /* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE */ ! /* POSSIBILITY OF SUCH DAMAGE. */ ! /* ----------------------------------------------------------------- */ #define till7_width 4 Index: till14.dat =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/xgr/tills/till14.dat,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** till14.dat 12 Sep 2007 08:37:13 -0000 1.3 --- till14.dat 25 Dec 2015 07:23:38 -0000 1.4 *************** *** 1,50 **** ! /* ! --------------------------------------------------------------- ! Speech Signal Processing Toolkit (SPTK) ! ! SPTK Working Group ! ! Department of Computer Science ! Nagoya Institute of Technology ! and ! Interdisciplinary Graduate School of Science and Engineering ! Tokyo Institute of Technology ! ! Copyright (c) 1984-2007 ! All Rights Reserved. ! ! Permission is hereby granted, free of charge, to use and ! distribute this software and its documentation without ! restriction, including without limitation the rights to use, ! copy, modify, merge, publish, distribute, sublicense, and/or ! sell copies of this work, and to permit persons to whom this ! work is furnished to do so, subject to the following conditions: ! ! 1. The source code must retain the above copyright notice, ! this list of conditions and the following disclaimer. ! ! 2. Any modifications to the source code must be clearly ! marked as such. ! ! 3. Redistributions in binary form must reproduce the above ! copyright notice, this list of conditions and the ! following disclaimer in the documentation and/or other ! materials provided with the distribution. Otherwise, one ! must contact the SPTK working group. ! ! NAGOYA INSTITUTE OF TECHNOLOGY, TOKYO INSTITUTE OF TECHNOLOGY, ! SPTK WORKING GROUP, AND THE CONTRIBUTORS TO THIS WORK DISCLAIM ! ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL ! IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT ! SHALL NAGOYA INSTITUTE OF TECHNOLOGY, TOKYO INSTITUTE OF ! TECHNOLOGY, SPTK WORKING GROUP, NOR THE CONTRIBUTORS BE LIABLE ! FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY ! DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, ! WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTUOUS ! ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ! ! --------------------------------------------------------------- ! */ #define till14_width 4 --- 1,45 ---- ! /* ----------------------------------------------------------------- */ ! /* The Speech Signal Processing Toolkit (SPTK) */ ! /* developed by SPTK Working Group */ ! /* http://sp-tk.sourceforge.net/ */ ! /* ----------------------------------------------------------------- */ ! /* */ ! /* Copyright (c) 1984-2007 Tokyo Institute of Technology */ ! /* Interdisciplinary Graduate School of */ ! /* Science and Engineering */ ! /* */ ! /* 1996-2015 Nagoya Institute of Technology */ ! /* Department of Computer Science */ ! /* */ ! /* All rights reserved. */ ! /* */ ! /* Redistribution and use in source and binary forms, with or */ ! /* without modification, are permitted provided that the following */ ! /* conditions are met: */ ! /* */ ! /* - Redistributions of source code must retain the above copyright */ ! /* notice, this list of conditions and the following disclaimer. */ ! /* - Redistributions in binary form must reproduce the above */ ! /* copyright notice, this list of conditions and the following */ ! /* disclaimer in the documentation and/or other materials provided */ ! /* with the distribution. */ ! /* - Neither the name of the SPTK working group nor the names of its */ ! /* contributors may be used to endorse or promote products derived */ ! /* from this software without specific prior written permission. */ ! /* */ ! /* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND */ ! /* CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, */ ! /* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF */ ! /* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE */ ! /* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS */ ! /* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, */ ! /* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED */ ! /* TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, */ ! /* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON */ ! /* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, */ ! /* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY */ ! /* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE */ ! /* POSSIBILITY OF SUCH DAMAGE. */ ! /* ----------------------------------------------------------------- */ #define till14_width 4 Index: till8.dat =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/xgr/tills/till8.dat,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** till8.dat 12 Sep 2007 08:37:13 -0000 1.3 --- till8.dat 25 Dec 2015 07:23:38 -0000 1.4 *************** *** 1,50 **** ! /* ! --------------------------------------------------------------- ! Speech Signal Processing Toolkit (SPTK) ! ! SPTK Working Group ! ! Department of Computer Science ! Nagoya Institute of Technology ! and ! Interdisciplinary Graduate School of Science and Engineering ! Tokyo Institute of Technology ! ! Copyright (c) 1984-2007 ! All Rights Reserved. ! ! Permission is hereby granted, free of charge, to use and ! distribute this software and its documentation without ! restriction, including without limitation the rights to use, ! copy, modify, merge, publish, distribute, sublicense, and/or ! sell copies of this work, and to permit persons to whom this ! work is furnished to do so, subject to the following conditions: ! ! 1. The source code must retain the above copyright notice, ! this list of conditions and the following disclaimer. ! ! 2. Any modifications to the source code must be clearly ! marked as such. ! ! 3. Redistributions in binary form must reproduce the above ! copyright notice, this list of conditions and the ! following disclaimer in the documentation and/or other ! materials provided with the distribution. Otherwise, one ! must contact the SPTK working group. ! ! NAGOYA INSTITUTE OF TECHNOLOGY, TOKYO INSTITUTE OF TECHNOLOGY, ! SPTK WORKING GROUP, AND THE CONTRIBUTORS TO THIS WORK DISCLAIM ! ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL ! IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT ! SHALL NAGOYA INSTITUTE OF TECHNOLOGY, TOKYO INSTITUTE OF ! TECHNOLOGY, SPTK WORKING GROUP, NOR THE CONTRIBUTORS BE LIABLE ! FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY ! DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, ! WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTUOUS ! ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ! ! --------------------------------------------------------------- ! */ #define till8_width 4 --- 1,45 ---- ! /* ----------------------------------------------------------------- */ ! /* The Speech Signal Processing Toolkit (SPTK) */ ! /* developed by SPTK Working Group */ ! /* http://sp-tk.sourceforge.net/ */ ! /* ----------------------------------------------------------------- */ ! /* */ ! /* Copyright (c) 1984-2007 Tokyo Institute of Technology */ ! /* Interdisciplinary Graduate School of */ ! /* Science and Engineering */ ! /* */ ! /* 1996-2015 Nagoya Institute of Technology */ ! /* Department of Computer Science */ ! /* */ ! /* All rights reserved. */ ! /* */ ! /* Redistribution and use in source and binary forms, with or */ ! /* without modification, are permitted provided that the following */ ! /* conditions are met: */ ! /* */ ! /* - Redistributions of source code must retain the above copyright */ ! /* notice, this list of conditions and the following disclaimer. */ ! /* - Redistributions in binary form must reproduce the above */ ! /* copyright notice, this list of conditions and the following */ ! /* disclaimer in the documentation and/or other materials provided */ ! /* with the distribution. */ ! /* - Neither the name of the SPTK working group nor the names of its */ ! /* contributors may be used to endorse or promote products derived */ ! /* from this software without specific prior written permission. */ ! /* */ ! /* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND */ ! /* CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, */ ! /* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF */ ! /* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE */ ! /* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS */ ! /* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, */ ! /* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED */ ! /* TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, */ ! /* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON */ ! /* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, */ ! /* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY */ ! /* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE */ ! /* POSSIBILITY OF SUCH DAMAGE. */ ! /* ----------------------------------------------------------------- */ #define till8_width 4 Index: till2.dat =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/xgr/tills/till2.dat,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** till2.dat 12 Sep 2007 08:37:13 -0000 1.3 --- till2.dat 25 Dec 2015 07:23:38 -0000 1.4 *************** *** 1,50 **** ! /* ! --------------------------------------------------------------- ! Speech Signal Processing Toolkit (SPTK) ! ! SPTK Working Group ! ! Department of Computer Science ! Nagoya Institute of Technology ! and ! Interdisciplinary Graduate School of Science and Engineering ! Tokyo Institute of Technology ! ! Copyright (c) 1984-2007 ! All Rights Reserved. ! ! Permission is hereby granted, free of charge, to use and ! distribute this software and its documentation without ! restriction, including without limitation the rights to use, ! copy, modify, merge, publish, distribute, sublicense, and/or ! sell copies of this work, and to permit persons to whom this ! work is furnished to do so, subject to the following conditions: ! ! 1. The source code must retain the above copyright notice, ! this list of conditions and the following disclaimer. ! ! 2. Any modifications to the source code must be clearly ! marked as such. ! ! 3. Redistributions in binary form must reproduce the above ! copyright notice, this list of conditions and the ! following disclaimer in the documentation and/or other ! materials provided with the distribution. Otherwise, one ! must contact the SPTK working group. ! ! NAGOYA INSTITUTE OF TECHNOLOGY, TOKYO INSTITUTE OF TECHNOLOGY, ! SPTK WORKING GROUP, AND THE CONTRIBUTORS TO THIS WORK DISCLAIM ! ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL ! IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT ! SHALL NAGOYA INSTITUTE OF TECHNOLOGY, TOKYO INSTITUTE OF ! TECHNOLOGY, SPTK WORKING GROUP, NOR THE CONTRIBUTORS BE LIABLE ! FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY ! DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, ! WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTUOUS ! ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ! ! --------------------------------------------------------------- ! */ #define till2_width 4 --- 1,45 ---- ! /* ----------------------------------------------------------------- */ ! /* The Speech Signal Processing Toolkit (SPTK) */ ! /* developed by SPTK Working Group */ ! /* http://sp-tk.sourceforge.net/ */ ! /* ----------------------------------------------------------------- */ ! /* */ ! /* Copyright (c) 1984-2007 Tokyo Institute of Technology */ ! /* Interdisciplinary Graduate School of */ ! /* Science and Engineering */ ! /* */ ! /* 1996-2015 Nagoya Institute of Technology */ ! /* Department of Computer Science */ ! /* */ ! /* All rights reserved. */ ! /* */ ! /* Redistribution and use in source and binary forms, with or */ ! /* without modification, are permitted provided that the following */ ! /* conditions are met: */ ! /* */ ! /* - Redistributions of source code must retain the above copyright */ ! /* notice, this list of conditions and the following disclaimer. */ ! /* - Redistributions in binary form must reproduce the above */ ! /* copyright notice, this list of conditions and the following */ ! /* disclaimer in the documentation and/or other materials provided */ ! /* with the distribution. */ ! /* - Neither the name of the SPTK working group nor the names of its */ ! /* contributors may be used to endorse or promote products derived */ ! /* from this software without specific prior written permission. */ ! /* */ ! /* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND */ ! /* CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, */ ! /* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF */ ! /* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE */ ! /* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS */ ! /* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, */ ! /* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED */ ! /* TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, */ ! /* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON */ ! /* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, */ ! /* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY */ ! /* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE */ ! /* POSSIBILITY OF SUCH DAMAGE. */ ! /* ----------------------------------------------------------------- */ #define till2_width 4 Index: till5.dat =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/xgr/tills/till5.dat,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** till5.dat 12 Sep 2007 08:37:13 -0000 1.3 --- till5.dat 25 Dec 2015 07:23:38 -0000 1.4 *************** *** 1,50 **** ! /* ! --------------------------------------------------------------- ! Speech Signal Processing Toolkit (SPTK) ! ! SPTK Working Group ! ! Department of Computer Science ! Nagoya Institute of Technology ! and ! Interdisciplinary Graduate School of Science and Engineering ! Tokyo Institute of Technology ! ! Copyright (c) 1984-2007 ! All Rights Reserved. ! ! Permission is hereby granted, free of charge, to use and ! distribute this software and its documentation without ! restriction, including without limitation the rights to use, ! copy, modify, merge, publish, distribute, sublicense, and/or ! sell copies of this work, and to permit persons to whom this ! work is furnished to do so, subject to the following conditions: ! ! 1. The source code must retain the above copyright notice, ! this list of conditions and the following disclaimer. ! ! 2. Any modifications to the source code must be clearly ! marked as such. ! ! 3. Redistributions in binary form must reproduce the above ! copyright notice, this list of conditions and the ! following disclaimer in the documentation and/or other ! materials provided with the distribution. Otherwise, one ! must contact the SPTK working group. ! ! NAGOYA INSTITUTE OF TECHNOLOGY, TOKYO INSTITUTE OF TECHNOLOGY, ! SPTK WORKING GROUP, AND THE CONTRIBUTORS TO THIS WORK DISCLAIM ! ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL ! IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT ! SHALL NAGOYA INSTITUTE OF TECHNOLOGY, TOKYO INSTITUTE OF ! TECHNOLOGY, SPTK WORKING GROUP, NOR THE CONTRIBUTORS BE LIABLE ! FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY ! DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, ! WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTUOUS ! ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ! ! --------------------------------------------------------------- ! */ #define till5_width 4 --- 1,45 ---- ! /* ----------------------------------------------------------------- */ ! /* The Speech Signal Processing Toolkit (SPTK) */ ! /* developed by SPTK Working Group */ ! /* http://sp-tk.sourceforge.net/ */ ! /* ----------------------------------------------------------------- */ ! /* */ ! /* Copyright (c) 1984-2007 Tokyo Institute of Technology */ ! /* Interdisciplinary Graduate School of */ ! /* Science and Engineering */ ! /* */ ! /* 1996-2015 Nagoya Institute of Technology */ ! /* Department of Computer Science */ ! /* */ ! /* All rights reserved. */ ! /* */ ! /* Redistribution and use in source and binary forms, with or */ ! /* without modification, are permitted provided that the following */ ! /* conditions are met: */ ! /* */ ! /* - Redistributions of source code must retain the above copyright */ ! /* notice, this list of conditions and the following disclaimer. */ ! /* - Redistributions in binary form must reproduce the above */ ! /* copyright notice, this list of conditions and the following */ ! /* disclaimer in the documentation and/or other materials provided */ ! /* with the distribution. */ ! /* - Neither the name of the SPTK working group nor the names of its */ ! /* contributors may be used to endorse or promote products derived */ ! /* from this software without specific prior written permission. */ ! /* */ ! /* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND */ ! /* CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, */ ! /* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF */ ! /* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE */ ! /* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS */ ! /* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, */ ! /* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED */ ! /* TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, */ ! /* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON */ ! /* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, */ ! /* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY */ ! /* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE */ ! /* POSSIBILITY OF SUCH DAMAGE. */ ! /* ----------------------------------------------------------------- */ #define till5_width 4 Index: till6.dat =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/xgr/tills/till6.dat,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** till6.dat 12 Sep 2007 08:37:13 -0000 1.3 --- till6.dat 25 Dec 2015 07:23:38 -0000 1.4 *************** *** 1,50 **** ! /* ! --------------------------------------------------------------- ! Speech Signal Processing Toolkit (SPTK) ! ! SPTK Working Group ! ! Department of Computer Science ! Nagoya Institute of Technology ! and ! Interdisciplinary Graduate School of Science and Engineering ! Tokyo Institute of Technology ! ! Copyright (c) 1984-2007 ! All Rights Reserved. ! ! Permission is hereby granted, free of charge, to use and ! distribute this software and its documentation without ! restriction, including without limitation the rights to use, ! copy, modify, merge, publish, distribute, sublicense, and/or ! sell copies of this work, and to permit persons to whom this ! work is furnished to do so, subject to the following conditions: ! ! 1. The source code must retain the above copyright notice, ! this list of conditions and the following disclaimer. ! ! 2. Any modifications to the source code must be clearly ! marked as such. ! ! 3. Redistributions in binary form must reproduce the above ! copyright notice, this list of conditions and the ! following disclaimer in the documentation and/or other ! materials provided with the distribution. Otherwise, one ! must contact the SPTK working group. ! ! NAGOYA INSTITUTE OF TECHNOLOGY, TOKYO INSTITUTE OF TECHNOLOGY, ! SPTK WORKING GROUP, AND THE CONTRIBUTORS TO THIS WORK DISCLAIM ! ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL ! IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT ! SHALL NAGOYA INSTITUTE OF TECHNOLOGY, TOKYO INSTITUTE OF ! TECHNOLOGY, SPTK WORKING GROUP, NOR THE CONTRIBUTORS BE LIABLE ! FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY ! DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, ! WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTUOUS ! ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ! ! --------------------------------------------------------------- ! */ #define till6_width 4 --- 1,45 ---- ! /* ----------------------------------------------------------------- */ ! /* The Speech Signal Processing Toolkit (SPTK) */ ! /* developed by SPTK Working Group */ ! /* http://sp-tk.sourceforge.net/ */ ! /* ----------------------------------------------------------------- */ ! /* */ ! /* Copyright (c) 1984-2007 Tokyo Institute of Technology */ ! /* Interdisciplinary Graduate School of */ ! /* Science and Engineering */ ! /* */ ! /* 1996-2015 Nagoya Institute of Technology */ ! /* Department of Computer Science */ ! /* */ ! /* All rights reserved. */ ! /* */ ! /* Redistribution and use in source and binary forms, with or */ ! /* without modification, are permitted provided that the following */ ! /* conditions are met: */ ! /* */ ! /* - Redistributions of source code must retain the above copyright */ ! /* notice, this list of conditions and the following disclaimer. */ ! /* - Redistributions in binary form must reproduce the above */ ! /* copyright notice, this list of conditions and the following */ ! /* disclaimer in the documentation and/or other materials provided */ ! /* with the distribution. */ ! /* - Neither the name of the SPTK working group nor the names of its */ ! /* contributors may be used to endorse or promote products derived */ ! /* from this software without specific prior written permission. */ ! /* */ ! /* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND */ ! /* CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, */ ! /* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF */ ! /* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE */ ! /* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS */ ! /* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, */ ! /* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED */ ! /* TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, */ ! /* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON */ ! /* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, */ ! /* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY */ ! /* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE */ ! /* POSSIBILITY OF SUCH DAMAGE. */ ! /* ----------------------------------------------------------------- */ #define till6_width 4 Index: till9.dat =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/xgr/tills/till9.dat,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** till9.dat 12 Sep 2007 08:37:14 -0000 1.3 --- till9.dat 25 Dec 2015 07:23:38 -0000 1.4 *************** *** 1,50 **** ! /* ! --------------------------------------------------------------- ! Speech Signal Processing Toolkit (SPTK) ! ! SPTK Working Group ! ! Department of Computer Science ! Nagoya Institute of Technology ! and ! Interdisciplinary Graduate School of Science and Engineering ! Tokyo Institute of Technology ! ! Copyright (c) 1984-2007 ! All Rights Reserved. ! ! Permission is hereby granted, free of charge, to use and ! distribute this software and its documentation without ! restriction, including without limitation the rights to use, ! copy, modify, merge, publish, distribute, sublicense, and/or ! sell copies of this work, and to permit persons to whom this ! work is furnished to do so, subject to the following conditions: ! ! 1. The source code must retain the above copyright notice, ! this list of conditions and the following disclaimer. ! ! 2. Any modifications to the source code must be clearly ! marked as such. ! ! 3. Redistributions in binary form must reproduce the above ! copyright notice, this list of conditions and the ! following disclaimer in the documentation and/or other ! materials provided with the distribution. Otherwise, one ! must contact the SPTK working group. ! ! NAGOYA INSTITUTE OF TECHNOLOGY, TOKYO INSTITUTE OF TECHNOLOGY, ! SPTK WORKING GROUP, AND THE CONTRIBUTORS TO THIS WORK DISCLAIM ! ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL ! IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT ! SHALL NAGOYA INSTITUTE OF TECHNOLOGY, TOKYO INSTITUTE OF ! TECHNOLOGY, SPTK WORKING GROUP, NOR THE CONTRIBUTORS BE LIABLE ! FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY ! DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, ! WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTUOUS ! ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ! ! --------------------------------------------------------------- ! */ #define till9_width 4 --- 1,45 ---- ! /* ----------------------------------------------------------------- */ ! /* The Speech Signal Processing Toolkit (SPTK) */ ! /* developed by SPTK Working Group */ ! /* http://sp-tk.sourceforge.net/ */ ! /* ----------------------------------------------------------------- */ ! /* */ ! /* Copyright (c) 1984-2007 Tokyo Institute of Technology */ ! /* Interdisciplinary Graduate School of */ ! /* Science and Engineering */ ! /* */ ! /* 1996-2015 Nagoya Institute of Technology */ ! /* Department of Computer Science */ ! /* */ ! /* All rights reserved. */ ! /* */ ! /* Redistribution and use in source and binary forms, with or */ ! /* without modification, are permitted provided that the following */ ! /* conditions are met: */ ! /* */ ! /* - Redistributions of source code must retain the above copyright */ ! /* notice, this list of conditions and the following disclaimer. */ ! /* - Redistributions in binary form must reproduce the above */ ! /* copyright notice, this list of conditions and the following */ ! /* disclaimer in the documentation and/or other materials provided */ ! /* with the distribution. */ ! /* - Neither the name of the SPTK working group nor the names of its */ ! /* contributors may be used to endorse or promote products derived */ ! /* from this software without specific prior written permission. */ ! /* */ ! /* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND */ ! /* CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, */ ! /* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF */ ! /* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE */ ! /* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS */ ! /* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, */ ! /* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED */ ! /* TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, */ ! /* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON */ ! /* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, */ ! /* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) A... [truncated message content] |
From: Keiichiro O. <ur...@us...> - 2015-12-25 07:23:39
|
Update of /cvsroot/sp-tk/SPTK/src/bin/pitch/snack In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv23672/bin/pitch/snack Modified Files: COPYING Log Message: update copyright Index: COPYING =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/pitch/snack/COPYING,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** COPYING 11 Dec 2014 08:30:43 -0000 1.5 --- COPYING 25 Dec 2015 07:23:37 -0000 1.6 *************** *** 37,41 **** /* Science and Engineering */ /* */ ! /* 1996-2014 Nagoya Institute of Technology */ /* Department of Computer Science */ /* */ --- 37,41 ---- /* Science and Engineering */ /* */ ! /* 1996-2015 Nagoya Institute of Technology */ /* Department of Computer Science */ /* */ |
From: Keiichiro O. <ur...@us...> - 2015-12-25 07:02:07
|
Update of /cvsroot/sp-tk/SPTK/examples/doc In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv22839 Modified Files: examples.tex Log Message: update examples.pdf Index: examples.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/examples/doc/examples.tex,v retrieving revision 1.29 retrieving revision 1.30 diff -C2 -d -r1.29 -r1.30 *** examples.tex 18 Dec 2015 09:33:56 -0000 1.29 --- examples.tex 25 Dec 2015 07:02:05 -0000 1.30 *************** *** 60,64 **** \title{ Examples for Using Speech Signal Processing Toolkit\\ ! Ver. 3.8} \author{SPTK working group} --- 60,64 ---- \title{ Examples for Using Speech Signal Processing Toolkit\\ ! Ver. 3.9} \author{SPTK working group} *************** *** 986,990 **** The state sequence is determined according to the state duration densities of the HMMs. The algorithm is not included ! in SPTK-3.2. \end{description} --- 986,990 ---- The state sequence is determined according to the state duration densities of the HMMs. The algorithm is not included ! in SPTK. \end{description} *************** *** 1029,1033 **** frequency warping parameter: $\alpha = 0.42$ \item[Note:] ! The pitch pattern generation algorithm is not included in SPTK-3.2. \end{description} --- 1029,1033 ---- frequency warping parameter: $\alpha = 0.42$ \item[Note:] ! The pitch pattern generation algorithm is not included in SPTK. \end{description} |
From: Keiichiro O. <ur...@us...> - 2015-12-25 06:55:59
|
Update of /cvsroot/sp-tk/SPTK/doc/ref_e In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv22496 Modified Files: configure configure.ac Log Message: update configure to 3.9 Index: configure.ac =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/configure.ac,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** configure.ac 18 Dec 2015 07:53:25 -0000 1.12 --- configure.ac 25 Dec 2015 06:55:56 -0000 1.13 *************** *** 46,52 **** AC_PREREQ(2.59) ! AC_INIT(SPTK-Reference-Manual, 3.8, http://sourceforge.net/projects/sp-tk/) AC_COPYRIGHT(Copyright 1984-2007 Tokyo Institute of Technology) ! AC_COPYRIGHT(Copyright 1996-2014 Nagoya Institute of Technology) # Checks for programs. --- 46,52 ---- AC_PREREQ(2.59) ! AC_INIT(SPTK-Reference-Manual, 3.9, http://sourceforge.net/projects/sp-tk/) AC_COPYRIGHT(Copyright 1984-2007 Tokyo Institute of Technology) ! AC_COPYRIGHT(Copyright 1996-2015 Nagoya Institute of Technology) # Checks for programs. Index: configure =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/configure,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** configure 12 Dec 2014 03:01:59 -0000 1.11 --- configure 25 Dec 2015 06:55:56 -0000 1.12 *************** *** 1,5 **** #! /bin/sh # Guess values for system-dependent variables and create Makefiles. ! # Generated by GNU Autoconf 2.69 for SPTK-Reference-Manual 3.8. # # Report bugs to <http://sourceforge.net/projects/sp-tk/>. --- 1,5 ---- #! /bin/sh # Guess values for system-dependent variables and create Makefiles. ! # Generated by GNU Autoconf 2.69 for SPTK-Reference-Manual 3.9. # # Report bugs to <http://sourceforge.net/projects/sp-tk/>. *************** *** 14,18 **** # Copyright 1984-2007 Tokyo Institute of Technology # ! # Copyright 1996-2014 Nagoya Institute of Technology ## -------------------- ## ## M4sh Initialization. ## --- 14,18 ---- # Copyright 1984-2007 Tokyo Institute of Technology # ! # Copyright 1996-2015 Nagoya Institute of Technology ## -------------------- ## ## M4sh Initialization. ## *************** *** 584,589 **** PACKAGE_NAME='SPTK-Reference-Manual' PACKAGE_TARNAME='sptk-reference-manual' ! PACKAGE_VERSION='3.8' ! PACKAGE_STRING='SPTK-Reference-Manual 3.8' PACKAGE_BUGREPORT='http://sourceforge.net/projects/sp-tk/' PACKAGE_URL='' --- 584,589 ---- PACKAGE_NAME='SPTK-Reference-Manual' PACKAGE_TARNAME='sptk-reference-manual' ! PACKAGE_VERSION='3.9' ! PACKAGE_STRING='SPTK-Reference-Manual 3.9' PACKAGE_BUGREPORT='http://sourceforge.net/projects/sp-tk/' PACKAGE_URL='' *************** *** 1181,1185 **** # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF ! \`configure' configures SPTK-Reference-Manual 3.8 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... --- 1181,1185 ---- # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF ! \`configure' configures SPTK-Reference-Manual 3.9 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... *************** *** 1243,1247 **** if test -n "$ac_init_help"; then case $ac_init_help in ! short | recursive ) echo "Configuration of SPTK-Reference-Manual 3.8:";; esac cat <<\_ACEOF --- 1243,1247 ---- if test -n "$ac_init_help"; then case $ac_init_help in ! short | recursive ) echo "Configuration of SPTK-Reference-Manual 3.9:";; esac cat <<\_ACEOF *************** *** 1310,1314 **** if $ac_init_version; then cat <<\_ACEOF ! SPTK-Reference-Manual configure 3.8 generated by GNU Autoconf 2.69 --- 1310,1314 ---- if $ac_init_version; then cat <<\_ACEOF ! SPTK-Reference-Manual configure 3.9 generated by GNU Autoconf 2.69 *************** *** 1319,1323 **** Copyright 1984-2007 Tokyo Institute of Technology ! Copyright 1996-2014 Nagoya Institute of Technology _ACEOF exit --- 1319,1323 ---- Copyright 1984-2007 Tokyo Institute of Technology ! Copyright 1996-2015 Nagoya Institute of Technology _ACEOF exit *************** *** 1331,1335 **** running configure, to aid debugging if configure makes a mistake. ! It was created by SPTK-Reference-Manual $as_me 3.8, which was generated by GNU Autoconf 2.69. Invocation command line was --- 1331,1335 ---- running configure, to aid debugging if configure makes a mistake. ! It was created by SPTK-Reference-Manual $as_me 3.9, which was generated by GNU Autoconf 2.69. Invocation command line was *************** *** 2478,2482 **** # values after options handling. ac_log=" ! This file was extended by SPTK-Reference-Manual $as_me 3.8, which was generated by GNU Autoconf 2.69. Invocation command line was --- 2478,2482 ---- # values after options handling. ac_log=" ! This file was extended by SPTK-Reference-Manual $as_me 3.9, which was generated by GNU Autoconf 2.69. Invocation command line was *************** *** 2531,2535 **** ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ ! SPTK-Reference-Manual config.status 3.8 configured by $0, generated by GNU Autoconf 2.69, with options \\"\$ac_cs_config\\" --- 2531,2535 ---- ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ ! SPTK-Reference-Manual config.status 3.9 configured by $0, generated by GNU Autoconf 2.69, with options \\"\$ac_cs_config\\" |
From: Keiichiro O. <ur...@us...> - 2015-12-25 06:42:52
|
Update of /cvsroot/sp-tk/SPTK/src In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv22036 Modified Files: COPYING NEWS README configure.ac Log Message: update documents Index: README =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/README,v retrieving revision 1.29 retrieving revision 1.30 diff -C2 -d -r1.29 -r1.30 *** README 11 Dec 2014 08:30:28 -0000 1.29 --- README 25 Dec 2015 06:42:49 -0000 1.30 *************** *** 1,5 **** =============================================================================== ! Speech Signal Processing Toolkit (SPTK) version 3.8 ! release December 25, 2014 --- 1,5 ---- =============================================================================== ! Speech Signal Processing Toolkit (SPTK) version 3.9 ! release December 25, 2015 *************** *** 30,34 **** /* Science and Engineering */ /* */ ! /* 1996-2014 Nagoya Institute of Technology */ /* Department of Computer Science */ /* */ --- 30,34 ---- /* Science and Engineering */ /* */ ! /* 1996-2015 Nagoya Institute of Technology */ /* Department of Computer Science */ /* */ Index: NEWS =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/NEWS,v retrieving revision 1.22 retrieving revision 1.23 diff -C2 -d -r1.22 -r1.23 *** NEWS 11 Dec 2014 09:51:45 -0000 1.22 --- NEWS 25 Dec 2015 06:42:49 -0000 1.23 *************** *** 1,2 **** --- 1,8 ---- + Version 3.9: + * support full covariance for 'gmmp' command. + * add -B, -c1 and -c2 option to 'gmmp' command to specify block size and structure of covariance matrix. + * change temporary file path for csh. + * bug fixes. + Version 3.8: * add 'c2ndps' command for transform from cepstrum to negative derivative of phrase spectrum. Index: configure.ac =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/configure.ac,v retrieving revision 1.52 retrieving revision 1.53 diff -C2 -d -r1.52 -r1.53 *** configure.ac 11 Dec 2014 09:51:45 -0000 1.52 --- configure.ac 25 Dec 2015 06:42:50 -0000 1.53 *************** *** 2,9 **** # Process this file with autoconf to produce a configure script. AC_PREREQ(2.59) ! AC_INIT(SPTK, 3.8, http://sourceforge.net/projects/sp-tk/, SPTK) AC_CONFIG_AUX_DIR([config]) AC_COPYRIGHT(Copyright 1984-2007 Tokyo Institute of Technology) ! AC_COPYRIGHT(Copyright 1996-2014 Nagoya Institute of Technology) AM_INIT_AUTOMAKE([nostdinc subdir-objects]) AC_SUBST(PACKAGE_NAME) --- 2,9 ---- # Process this file with autoconf to produce a configure script. AC_PREREQ(2.59) ! AC_INIT(SPTK, 3.9, http://sourceforge.net/projects/sp-tk/, SPTK) AC_CONFIG_AUX_DIR([config]) AC_COPYRIGHT(Copyright 1984-2007 Tokyo Institute of Technology) ! AC_COPYRIGHT(Copyright 1996-2015 Nagoya Institute of Technology) AM_INIT_AUTOMAKE([nostdinc subdir-objects]) AC_SUBST(PACKAGE_NAME) Index: COPYING =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/COPYING,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** COPYING 11 Dec 2014 08:30:28 -0000 1.8 --- COPYING 25 Dec 2015 06:42:49 -0000 1.9 *************** *** 9,13 **** /* Science and Engineering */ /* */ ! /* 1996-2014 Nagoya Institute of Technology */ /* Department of Computer Science */ /* */ --- 9,13 ---- /* Science and Engineering */ /* */ ! /* 1996-2015 Nagoya Institute of Technology */ /* Department of Computer Science */ /* */ |
From: Keiichiro O. <ur...@us...> - 2015-12-25 06:24:10
|
Update of /cvsroot/sp-tk/SPTK/src/bin/vc/hts_engine_API In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv21368/bin/vc/hts_engine_API Modified Files: COPYING HTS_engine.h HTS_hidden.h HTS_pstream.c HTS_sstream.c Log Message: update hts_engine API to latest version Index: HTS_engine.h =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/vc/hts_engine_API/HTS_engine.h,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** HTS_engine.h 14 Dec 2015 05:45:40 -0000 1.5 --- HTS_engine.h 25 Dec 2015 06:24:07 -0000 1.6 *************** *** 76,80 **** /* copyright ------------------------------------------------------- */ ! #define HTS_COPYRIGHT "The HMM-Based Speech Synthesis Engine \"hts_engine API\"\nVersion 1.09 (http://hts-engine.sourceforge.net/)\nCopyright (C) 2001-2014 Nagoya Institute of Technology\n 2001-2008 Tokyo Institute of Technology\nAll rights reserved.\n" /* audio ----------------------------------------------------------- */ --- 76,80 ---- /* copyright ------------------------------------------------------- */ ! #define HTS_COPYRIGHT "The HMM-Based Speech Synthesis Engine \"hts_engine API\"\nVersion 1.10 (http://hts-engine.sourceforge.net/)\nCopyright (C) 2001-2015 Nagoya Institute of Technology\n 2001-2008 Tokyo Institute of Technology\nAll rights reserved.\n" /* audio ----------------------------------------------------------- */ Index: HTS_pstream.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/vc/hts_engine_API/HTS_pstream.c,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** HTS_pstream.c 14 Dec 2015 05:45:40 -0000 1.5 --- HTS_pstream.c 25 Dec 2015 06:24:07 -0000 1.6 *************** *** 237,242 **** step *= STEPINC; } ! for (t = 0; t < pst->length; t++) ! pst->par[t][m] += step * pst->sm.g[t]; prev = obj; } --- 237,244 ---- step *= STEPINC; } ! for (t = 0; t < pst->length; t++) { ! if (pst->gv_switch[t]) ! pst->par[t][m] += step * pst->sm.g[t]; ! } prev = obj; } *************** *** 293,297 **** for (i = 0; i < pss->nstream; i++) { pst = &pss->pstream[i]; ! if (HTS_SStreamSet_is_msd(sss, i)) { /* for MSD */ pst->length = 0; for (state = 0; state < HTS_SStreamSet_get_total_state(sss); state++) --- 295,299 ---- for (i = 0; i < pss->nstream; i++) { pst = &pss->pstream[i]; ! if (HTS_SStreamSet_is_msd(sss, i) == TRUE) { /* for MSD */ pst->length = 0; for (state = 0; state < HTS_SStreamSet_get_total_state(sss); state++) *************** *** 299,312 **** pst->length += HTS_SStreamSet_get_duration(sss, state); pst->msd_flag = (HTS_Boolean *) HTS_calloc(pss->total_frame, sizeof(HTS_Boolean)); ! for (state = 0, frame = 0; state < HTS_SStreamSet_get_total_state(sss); state++) ! if (HTS_SStreamSet_get_msd(sss, i, state) > msd_threshold[i]) for (j = 0; j < HTS_SStreamSet_get_duration(sss, state); j++) { pst->msd_flag[frame] = TRUE; frame++; ! } else for (j = 0; j < HTS_SStreamSet_get_duration(sss, state); j++) { pst->msd_flag[frame] = FALSE; frame++; } } else { /* for non MSD */ pst->length = pss->total_frame; --- 301,317 ---- pst->length += HTS_SStreamSet_get_duration(sss, state); pst->msd_flag = (HTS_Boolean *) HTS_calloc(pss->total_frame, sizeof(HTS_Boolean)); ! for (state = 0, frame = 0; state < HTS_SStreamSet_get_total_state(sss); state++) { ! if (HTS_SStreamSet_get_msd(sss, i, state) > msd_threshold[i]) { for (j = 0; j < HTS_SStreamSet_get_duration(sss, state); j++) { pst->msd_flag[frame] = TRUE; frame++; ! } ! } else { for (j = 0; j < HTS_SStreamSet_get_duration(sss, state); j++) { pst->msd_flag[frame] = FALSE; frame++; } + } + } } else { /* for non MSD */ pst->length = pss->total_frame; *************** *** 350,357 **** } pst->gv_switch = (HTS_Boolean *) HTS_calloc(pst->length, sizeof(HTS_Boolean)); ! if (HTS_SStreamSet_is_msd(sss, i)) { /* for MSD */ for (state = 0, frame = 0, msd_frame = 0; state < HTS_SStreamSet_get_total_state(sss); state++) for (j = 0; j < HTS_SStreamSet_get_duration(sss, state); j++, frame++) ! if (pst->msd_flag[frame]) pst->gv_switch[msd_frame++] = HTS_SStreamSet_get_gv_switch(sss, i, state); } else { /* for non MSD */ --- 355,362 ---- } pst->gv_switch = (HTS_Boolean *) HTS_calloc(pst->length, sizeof(HTS_Boolean)); ! if (HTS_SStreamSet_is_msd(sss, i) == TRUE) { /* for MSD */ for (state = 0, frame = 0, msd_frame = 0; state < HTS_SStreamSet_get_total_state(sss); state++) for (j = 0; j < HTS_SStreamSet_get_duration(sss, state); j++, frame++) ! if (pst->msd_flag[frame] == TRUE) pst->gv_switch[msd_frame++] = HTS_SStreamSet_get_gv_switch(sss, i, state); } else { /* for non MSD */ *************** *** 370,382 **** } /* copy pdfs */ ! if (HTS_SStreamSet_is_msd(sss, i)) { /* for MSD */ for (state = 0, frame = 0, msd_frame = 0; state < HTS_SStreamSet_get_total_state(sss); state++) { for (j = 0; j < HTS_SStreamSet_get_duration(sss, state); j++) { ! if (pst->msd_flag[frame]) { /* check current frame is MSD boundary or not */ for (k = 0; k < pst->win_size; k++) { not_bound = TRUE; for (shift = pst->win_l_width[k]; shift <= pst->win_r_width[k]; shift++) ! if ((int) frame + shift < 0 || (int) pss->total_frame <= (int) frame + shift || !pst->msd_flag[frame + shift]) { not_bound = FALSE; break; --- 375,387 ---- } /* copy pdfs */ ! if (HTS_SStreamSet_is_msd(sss, i) == TRUE) { /* for MSD */ for (state = 0, frame = 0, msd_frame = 0; state < HTS_SStreamSet_get_total_state(sss); state++) { for (j = 0; j < HTS_SStreamSet_get_duration(sss, state); j++) { ! if (pst->msd_flag[frame] == TRUE) { /* check current frame is MSD boundary or not */ for (k = 0; k < pst->win_size; k++) { not_bound = TRUE; for (shift = pst->win_l_width[k]; shift <= pst->win_r_width[k]; shift++) ! if ((int) frame + shift < 0 || (int) pss->total_frame <= (int) frame + shift || pst->msd_flag[frame + shift] != TRUE) { not_bound = FALSE; break; Index: HTS_hidden.h =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/vc/hts_engine_API/HTS_hidden.h,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** HTS_hidden.h 14 Dec 2015 05:45:40 -0000 1.5 --- HTS_hidden.h 25 Dec 2015 06:24:07 -0000 1.6 *************** *** 236,245 **** /* HTS_ModelSet_get_parameter: get parameter using interpolation weight */ ! void HTS_ModelSet_get_parameter(HTS_ModelSet * ms, size_t stream_index, size_t state_index, const char *string, const double *iw, double *mean, double *vari, double *msd); void HTS_ModelSet_get_gv_index(HTS_ModelSet * ms, size_t voice_index, size_t stream_index, const char *string, size_t * tree_index, size_t * pdf_index); /* HTS_ModelSet_get_gv: get GV using interpolation weight */ ! void HTS_ModelSet_get_gv(HTS_ModelSet * ms, size_t stream_index, const char *string, const double *iw, double *mean, double *vari); /* HTS_ModelSet_clear: free model set */ --- 236,245 ---- /* HTS_ModelSet_get_parameter: get parameter using interpolation weight */ ! void HTS_ModelSet_get_parameter(HTS_ModelSet * ms, size_t stream_index, size_t state_index, const char *string, const double *const *iw, double *mean, double *vari, double *msd); void HTS_ModelSet_get_gv_index(HTS_ModelSet * ms, size_t voice_index, size_t stream_index, const char *string, size_t * tree_index, size_t * pdf_index); /* HTS_ModelSet_get_gv: get GV using interpolation weight */ ! void HTS_ModelSet_get_gv(HTS_ModelSet * ms, size_t stream_index, const char *string, const double *const *iw, double *mean, double *vari); /* HTS_ModelSet_clear: free model set */ Index: HTS_sstream.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/vc/hts_engine_API/HTS_sstream.c,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** HTS_sstream.c 14 Dec 2015 05:45:40 -0000 1.6 --- HTS_sstream.c 25 Dec 2015 06:24:07 -0000 1.7 *************** *** 229,232 **** --- 229,235 ---- size_t next_state; + if (HTS_Label_get_size(label) == 0) + return FALSE; + /* check interpolation weights */ for (i = 0, temp = 0.0; i < HTS_ModelSet_get_nvoices(ms); i++) *************** *** 242,262 **** for (i = 0; i < HTS_ModelSet_get_nstream(ms); i++) { for (j = 0, temp = 0.0; j < HTS_ModelSet_get_nvoices(ms); j++) ! temp += parameter_iw[i][j]; if (temp == 0.0) { return FALSE; } else if (temp != 1.0) { for (j = 0; j < HTS_ModelSet_get_nvoices(ms); j++) ! if (parameter_iw[i][j] != 0.0) ! parameter_iw[i][j] /= temp; } if (HTS_ModelSet_use_gv(ms, i)) { for (j = 0, temp = 0.0; j < HTS_ModelSet_get_nvoices(ms); j++) ! temp += gv_iw[i][j]; if (temp == 0.0) return FALSE; else if (temp != 1.0) for (j = 0; j < HTS_ModelSet_get_nvoices(ms); j++) ! if (gv_iw[i][j] != 0.0) ! gv_iw[i][j] /= temp; } } --- 245,265 ---- for (i = 0; i < HTS_ModelSet_get_nstream(ms); i++) { for (j = 0, temp = 0.0; j < HTS_ModelSet_get_nvoices(ms); j++) ! temp += parameter_iw[j][i]; if (temp == 0.0) { return FALSE; } else if (temp != 1.0) { for (j = 0; j < HTS_ModelSet_get_nvoices(ms); j++) ! if (parameter_iw[j][i] != 0.0) ! parameter_iw[j][i] /= temp; } if (HTS_ModelSet_use_gv(ms, i)) { for (j = 0, temp = 0.0; j < HTS_ModelSet_get_nvoices(ms); j++) ! temp += gv_iw[j][i]; if (temp == 0.0) return FALSE; else if (temp != 1.0) for (j = 0; j < HTS_ModelSet_get_nvoices(ms); j++) ! if (gv_iw[j][i] != 0.0) ! gv_iw[j][i] /= temp; } } *************** *** 335,341 **** sst = &sss->sstream[k]; if (sst->msd) ! HTS_ModelSet_get_parameter(ms, k, j, HTS_Label_get_string(label, i), parameter_iw[k], sst->mean[state], sst->vari[state], &sst->msd[state]); else ! HTS_ModelSet_get_parameter(ms, k, j, HTS_Label_get_string(label, i), parameter_iw[k], sst->mean[state], sst->vari[state], NULL); } state++; --- 338,344 ---- sst = &sss->sstream[k]; if (sst->msd) ! HTS_ModelSet_get_parameter(ms, k, j, HTS_Label_get_string(label, i), (const double *const *) parameter_iw, sst->mean[state], sst->vari[state], &sst->msd[state]); else ! HTS_ModelSet_get_parameter(ms, k, j, HTS_Label_get_string(label, i), (const double *const *) parameter_iw, sst->mean[state], sst->vari[state], NULL); } state++; *************** *** 370,374 **** sst->gv_mean = (double *) HTS_calloc(sst->vector_length, sizeof(double)); sst->gv_vari = (double *) HTS_calloc(sst->vector_length, sizeof(double)); ! HTS_ModelSet_get_gv(ms, i, HTS_Label_get_string(label, 0), gv_iw[i], sst->gv_mean, sst->gv_vari); } else { sst->gv_mean = NULL; --- 373,377 ---- sst->gv_mean = (double *) HTS_calloc(sst->vector_length, sizeof(double)); sst->gv_vari = (double *) HTS_calloc(sst->vector_length, sizeof(double)); ! HTS_ModelSet_get_gv(ms, i, HTS_Label_get_string(label, 0), (const double *const *) gv_iw, sst->gv_mean, sst->gv_vari); } else { sst->gv_mean = NULL; Index: COPYING =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/vc/hts_engine_API/COPYING,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** COPYING 11 Dec 2014 08:27:57 -0000 1.3 --- COPYING 25 Dec 2015 06:24:07 -0000 1.4 *************** *** 5,9 **** /* ----------------------------------------------------------------- */ /* */ ! /* Copyright (c) 2001-2014 Nagoya Institute of Technology */ /* Department of Computer Science */ /* */ --- 5,9 ---- /* ----------------------------------------------------------------- */ /* */ ! /* Copyright (c) 2001-2015 Nagoya Institute of Technology */ /* Department of Computer Science */ /* */ |
From: Keiichiro O. <ur...@us...> - 2015-12-18 09:33:59
|
Update of /cvsroot/sp-tk/SPTK/examples/doc In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv19837 Modified Files: examples.tex Log Message: update copyright to 3.9 Index: examples.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/examples/doc/examples.tex,v retrieving revision 1.28 retrieving revision 1.29 diff -C2 -d -r1.28 -r1.29 *** examples.tex 25 Dec 2014 03:09:59 -0000 1.28 --- examples.tex 18 Dec 2015 09:33:56 -0000 1.29 *************** *** 10,14 **** % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % --- 10,14 ---- % Science and Engineering % % % ! % 1996-2015 Nagoya Institute of Technology % % Department of Computer Science % % % *************** *** 49,53 **** bookmarkstype=toc, pdfauthor={SPTK working group}, ! pdftitle={Examples for using SPTK ver. 3.8}] {hyperref} \usepackage[dvipdfm]{graphicx,color,movie15} --- 49,53 ---- bookmarkstype=toc, pdfauthor={SPTK working group}, ! pdftitle={Examples for using SPTK ver. 3.9}] {hyperref} \usepackage[dvipdfm]{graphicx,color,movie15} *************** *** 64,68 **** \author{SPTK working group} ! \date{December 25, 2014} \begin{document} --- 64,68 ---- \author{SPTK working group} ! \date{December 25, 2015} \begin{document} |
Update of /cvsroot/sp-tk/SPTK/doc/ref_e In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv16367 Modified Files: Makefile.in acep.tex acorr.tex agcep.tex amcep.tex average.tex b2mc.tex bcp.tex bcut.tex bell.tex bmdefines.tex c2acr.tex c2ir.tex c2ndps.tex c2sp.tex cat2.tex cdist.tex clip.tex cmndref.sty configure.ac da.tex dawrite.tex dct.tex decimate.tex delay.tex delta.tex df2.tex dfs.tex dmp.tex ds.tex dtw.tex echo2.tex excite.tex extract.tex fd.tex fdrw.tex fft.tex fft2.tex fftcep.tex fftr.tex fftr2.tex fig.tex frame.tex freqt.tex gc2gc.tex gcep.tex glogsp.tex glsadf.tex gmm.tex gmmp.tex gnorm.tex grlogsp.tex grpdelay.tex gseries.tex gwave.tex histogram.tex idct.tex ifft.tex ifft2.tex ifftr.tex ignorm.tex impulse.tex imsvq.tex interpolate.tex ivq.tex lbg.tex levdur.tex linear_intpl.tex lmadf.tex lpc.tex lpc2c.tex lpc2lsp.tex lpc2par.tex lsp2lpc.tex lsp2sp.tex lspcheck.tex lspdf.tex ltcdf.tex main.tex mc2b.tex mcep.tex merge.tex mfcc.tex mgc2mgc.tex mgc2mgclsp.tex mgc2sp.tex mgcep.tex mgclsp2mgc.tex mgclsp2sp.tex mglsadf.tex minmax.tex mlpg.tex mlsacheck.tex mlsadf.tex msvq.tex nan.tex ndps2c.tex norm0.tex nrand.tex par2lpc.tex pca.tex pcas.tex phase.tex pitch.tex poledf.tex psgr.tex ramp.tex raw2wav.tex ref.tex reverse.tex rmse.tex root_pol.tex sin.tex smcep.tex snr.tex sopr.tex spec.tex step.tex swab.tex symmetrize.tex train.tex transpose.tex uels.tex ulaw.tex us.tex us16.tex uscd.tex vc.tex vopr.tex vq.tex vstat.tex vsum.tex wav2raw.tex wavjoin.tex wavsplit.tex window.tex x2x.tex xgr.tex zcross.tex zerodf.tex Log Message: update copyright to 3.9 Index: msvq.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/msvq.tex,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** msvq.tex 12 Dec 2014 03:02:00 -0000 1.17 --- msvq.tex 18 Dec 2015 07:53:26 -0000 1.18 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2015 Nagoya Institute of Technology % % Department of Computer Science % % % Index: vc.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/vc.tex,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** vc.tex 5 Mar 2015 02:55:30 -0000 1.11 --- vc.tex 18 Dec 2015 07:53:26 -0000 1.12 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2015 Nagoya Institute of Technology % % Department of Computer Science % % % Index: impulse.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/impulse.tex,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** impulse.tex 12 Dec 2014 03:02:00 -0000 1.17 --- impulse.tex 18 Dec 2015 07:53:25 -0000 1.18 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2015 Nagoya Institute of Technology % % Department of Computer Science % % % Index: snr.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/snr.tex,v retrieving revision 1.21 retrieving revision 1.22 diff -C2 -d -r1.21 -r1.22 *** snr.tex 12 Dec 2014 03:02:00 -0000 1.21 --- snr.tex 18 Dec 2015 07:53:26 -0000 1.22 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2015 Nagoya Institute of Technology % % Department of Computer Science % % % Index: ulaw.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/ulaw.tex,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** ulaw.tex 12 Dec 2014 03:02:00 -0000 1.16 --- ulaw.tex 18 Dec 2015 07:53:26 -0000 1.17 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2015 Nagoya Institute of Technology % % Department of Computer Science % % % Index: zcross.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/zcross.tex,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** zcross.tex 12 Dec 2014 03:02:00 -0000 1.15 --- zcross.tex 18 Dec 2015 07:53:26 -0000 1.16 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2015 Nagoya Institute of Technology % % Department of Computer Science % % % Index: linear_intpl.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/linear_intpl.tex,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** linear_intpl.tex 12 Dec 2014 03:02:00 -0000 1.15 --- linear_intpl.tex 18 Dec 2015 07:53:25 -0000 1.16 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2015 Nagoya Institute of Technology % % Department of Computer Science % % % Index: swab.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/swab.tex,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** swab.tex 12 Dec 2014 03:02:00 -0000 1.18 --- swab.tex 18 Dec 2015 07:53:26 -0000 1.19 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2015 Nagoya Institute of Technology % % Department of Computer Science % % % Index: lsp2sp.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/lsp2sp.tex,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** lsp2sp.tex 12 Dec 2014 03:02:00 -0000 1.4 --- lsp2sp.tex 18 Dec 2015 07:53:26 -0000 1.5 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2015 Nagoya Institute of Technology % % Department of Computer Science % % % Index: da.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/da.tex,v retrieving revision 1.25 retrieving revision 1.26 diff -C2 -d -r1.25 -r1.26 *** da.tex 12 Dec 2014 03:01:59 -0000 1.25 --- da.tex 18 Dec 2015 07:53:25 -0000 1.26 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2015 Nagoya Institute of Technology % % Department of Computer Science % % % Index: excite.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/excite.tex,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** excite.tex 12 Dec 2014 03:01:59 -0000 1.18 --- excite.tex 18 Dec 2015 07:53:25 -0000 1.19 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2015 Nagoya Institute of Technology % % Department of Computer Science % % % Index: ifft.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/ifft.tex,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** ifft.tex 12 Dec 2014 03:02:00 -0000 1.16 --- ifft.tex 18 Dec 2015 07:53:25 -0000 1.17 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2015 Nagoya Institute of Technology % % Department of Computer Science % % % Index: step.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/step.tex,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** step.tex 12 Dec 2014 03:02:00 -0000 1.19 --- step.tex 18 Dec 2015 07:53:26 -0000 1.20 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2015 Nagoya Institute of Technology % % Department of Computer Science % % % Index: cdist.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/cdist.tex,v retrieving revision 1.21 retrieving revision 1.22 diff -C2 -d -r1.21 -r1.22 *** cdist.tex 26 Oct 2015 08:33:00 -0000 1.21 --- cdist.tex 18 Dec 2015 07:53:25 -0000 1.22 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2015 Nagoya Institute of Technology % % Department of Computer Science % % % Index: smcep.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/smcep.tex,v retrieving revision 1.30 retrieving revision 1.31 diff -C2 -d -r1.30 -r1.31 *** smcep.tex 12 Dec 2014 03:02:00 -0000 1.30 --- smcep.tex 18 Dec 2015 07:53:26 -0000 1.31 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2015 Nagoya Institute of Technology % % Department of Computer Science % % % Index: fft.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/fft.tex,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** fft.tex 12 Dec 2014 03:01:59 -0000 1.17 --- fft.tex 18 Dec 2015 07:53:25 -0000 1.18 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2015 Nagoya Institute of Technology % % Department of Computer Science % % % Index: lsp2lpc.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/lsp2lpc.tex,v retrieving revision 1.21 retrieving revision 1.22 diff -C2 -d -r1.21 -r1.22 *** lsp2lpc.tex 12 Dec 2014 03:02:00 -0000 1.21 --- lsp2lpc.tex 18 Dec 2015 07:53:26 -0000 1.22 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2015 Nagoya Institute of Technology % % Department of Computer Science % % % Index: fft2.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/fft2.tex,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** fft2.tex 12 Dec 2014 03:01:59 -0000 1.16 --- fft2.tex 18 Dec 2015 07:53:25 -0000 1.17 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2015 Nagoya Institute of Technology % % Department of Computer Science % % % Index: agcep.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/agcep.tex,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** agcep.tex 12 Dec 2014 03:01:59 -0000 1.19 --- agcep.tex 18 Dec 2015 07:53:25 -0000 1.20 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2015 Nagoya Institute of Technology % % Department of Computer Science % % % Index: mgc2sp.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/mgc2sp.tex,v retrieving revision 1.24 retrieving revision 1.25 diff -C2 -d -r1.24 -r1.25 *** mgc2sp.tex 12 Dec 2014 03:02:00 -0000 1.24 --- mgc2sp.tex 18 Dec 2015 07:53:26 -0000 1.25 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2015 Nagoya Institute of Technology % % Department of Computer Science % % % Index: lspcheck.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/lspcheck.tex,v retrieving revision 1.23 retrieving revision 1.24 diff -C2 -d -r1.23 -r1.24 *** lspcheck.tex 12 Dec 2014 03:02:00 -0000 1.23 --- lspcheck.tex 18 Dec 2015 07:53:26 -0000 1.24 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2015 Nagoya Institute of Technology % % Department of Computer Science % % % Index: cat2.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/cat2.tex,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** cat2.tex 12 Dec 2014 03:01:59 -0000 1.6 --- cat2.tex 18 Dec 2015 07:53:25 -0000 1.7 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2015 Nagoya Institute of Technology % % Department of Computer Science % % % Index: gmmp.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/gmmp.tex,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** gmmp.tex 8 Nov 2015 08:34:01 -0000 1.11 --- gmmp.tex 18 Dec 2015 07:53:25 -0000 1.12 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2015 Nagoya Institute of Technology % % Department of Computer Science % % % Index: zerodf.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/zerodf.tex,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** zerodf.tex 12 Dec 2014 03:02:00 -0000 1.18 --- zerodf.tex 18 Dec 2015 07:53:26 -0000 1.19 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2015 Nagoya Institute of Technology % % Department of Computer Science % % % Index: glogsp.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/glogsp.tex,v retrieving revision 1.21 retrieving revision 1.22 diff -C2 -d -r1.21 -r1.22 *** glogsp.tex 12 Dec 2014 03:02:00 -0000 1.21 --- glogsp.tex 18 Dec 2015 07:53:25 -0000 1.22 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2015 Nagoya Institute of Technology % % Department of Computer Science % % % Index: ivq.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/ivq.tex,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** ivq.tex 12 Dec 2014 03:02:00 -0000 1.18 --- ivq.tex 18 Dec 2015 07:53:25 -0000 1.19 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2015 Nagoya Institute of Technology % % Department of Computer Science % % % Index: minmax.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/minmax.tex,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** minmax.tex 12 Dec 2014 03:02:00 -0000 1.18 --- minmax.tex 18 Dec 2015 07:53:26 -0000 1.19 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2015 Nagoya Institute of Technology % % Department of Computer Science % % % Index: vsum.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/vsum.tex,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** vsum.tex 12 Dec 2014 03:02:00 -0000 1.20 --- vsum.tex 18 Dec 2015 07:53:26 -0000 1.21 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2015 Nagoya Institute of Technology % % Department of Computer Science % % % Index: mgcep.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/mgcep.tex,v retrieving revision 1.33 retrieving revision 1.34 diff -C2 -d -r1.33 -r1.34 *** mgcep.tex 12 Dec 2014 03:02:00 -0000 1.33 --- mgcep.tex 18 Dec 2015 07:53:26 -0000 1.34 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2015 Nagoya Institute of Technology % % Department of Computer Science % % % Index: dtw.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/dtw.tex,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** dtw.tex 12 Dec 2014 03:01:59 -0000 1.9 --- dtw.tex 18 Dec 2015 07:53:25 -0000 1.10 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2015 Nagoya Institute of Technology % % Department of Computer Science % % % Index: mgclsp2sp.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/mgclsp2sp.tex,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** mgclsp2sp.tex 16 Dec 2015 07:31:22 -0000 1.2 --- mgclsp2sp.tex 18 Dec 2015 07:53:26 -0000 1.3 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2015 Nagoya Institute of Technology % % Department of Computer Science % % % Index: uels.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/uels.tex,v retrieving revision 1.25 retrieving revision 1.26 diff -C2 -d -r1.25 -r1.26 *** uels.tex 12 Dec 2014 03:02:00 -0000 1.25 --- uels.tex 18 Dec 2015 07:53:26 -0000 1.26 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2015 Nagoya Institute of Technology % % Department of Computer Science % % % Index: bell.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/bell.tex,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** bell.tex 12 Dec 2014 03:01:59 -0000 1.13 --- bell.tex 18 Dec 2015 07:53:25 -0000 1.14 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2015 Nagoya Institute of Technology % % Department of Computer Science % % % Index: bmdefines.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/bmdefines.tex,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** bmdefines.tex 12 Dec 2014 03:01:59 -0000 1.9 --- bmdefines.tex 18 Dec 2015 07:53:25 -0000 1.10 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2015 Nagoya Institute of Technology % % Department of Computer Science % % % Index: df2.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/df2.tex,v retrieving revision 1.23 retrieving revision 1.24 diff -C2 -d -r1.23 -r1.24 *** df2.tex 12 Dec 2014 03:01:59 -0000 1.23 --- df2.tex 18 Dec 2015 07:53:25 -0000 1.24 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2015 Nagoya Institute of Technology % % Department of Computer Science % % % Index: us.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/us.tex,v retrieving revision 1.25 retrieving revision 1.26 diff -C2 -d -r1.25 -r1.26 *** us.tex 12 Dec 2014 03:02:00 -0000 1.25 --- us.tex 18 Dec 2015 07:53:26 -0000 1.26 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2015 Nagoya Institute of Technology % % Department of Computer Science % % % Index: gcep.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/gcep.tex,v retrieving revision 1.32 retrieving revision 1.33 diff -C2 -d -r1.32 -r1.33 *** gcep.tex 12 Dec 2014 03:02:00 -0000 1.32 --- gcep.tex 18 Dec 2015 07:53:25 -0000 1.33 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2015 Nagoya Institute of Technology % % Department of Computer Science % % % Index: transpose.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/transpose.tex,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** transpose.tex 12 Dec 2014 03:02:00 -0000 1.4 --- transpose.tex 18 Dec 2015 07:53:26 -0000 1.5 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2015 Nagoya Institute of Technology % % Department of Computer Science % % % Index: interpolate.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/interpolate.tex,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** interpolate.tex 12 Dec 2014 03:02:00 -0000 1.17 --- interpolate.tex 18 Dec 2015 07:53:25 -0000 1.18 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2015 Nagoya Institute of Technology % % Department of Computer Science % % % Index: xgr.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/xgr.tex,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** xgr.tex 12 Dec 2014 03:02:00 -0000 1.19 --- xgr.tex 18 Dec 2015 07:53:26 -0000 1.20 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2015 Nagoya Institute of Technology % % Department of Computer Science % % % Index: dct.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/dct.tex,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** dct.tex 12 Dec 2014 03:01:59 -0000 1.11 --- dct.tex 18 Dec 2015 07:53:25 -0000 1.12 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2015 Nagoya Institute of Technology % % Department of Computer Science % % % Index: train.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/train.tex,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** train.tex 12 Dec 2014 03:02:00 -0000 1.16 --- train.tex 18 Dec 2015 07:53:26 -0000 1.17 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2015 Nagoya Institute of Technology % % Department of Computer Science % % % Index: main.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/main.tex,v retrieving revision 1.52 retrieving revision 1.53 diff -C2 -d -r1.52 -r1.53 *** main.tex 12 Dec 2014 03:02:00 -0000 1.52 --- main.tex 18 Dec 2015 07:53:26 -0000 1.53 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2015 Nagoya Institute of Technology % % Department of Computer Science % % % *************** *** 54,58 **** debug=true, pdfauthor={SPTK working group}, ! pdftitle={SPTK-3.8 Reference Manual}] {hyperref} \usepackage{times} --- 54,58 ---- debug=true, pdfauthor={SPTK working group}, ! pdftitle={SPTK-3.9 Reference Manual}] {hyperref} \usepackage{times} *************** *** 102,107 **** \LARGE {\rm REFERENCE MANUAL for} \\ ! {\sl Speech Signal Processing Toolkit} Ver. 3.8 \\[10mm] ! {\rm December 25, 2014} \end{center} \vspace*{\fill} --- 102,107 ---- \LARGE {\rm REFERENCE MANUAL for} \\ ! {\sl Speech Signal Processing Toolkit} Ver. 3.9 \\[10mm] ! {\rm December 25, 2015} \end{center} \vspace*{\fill} Index: c2ir.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/c2ir.tex,v retrieving revision 1.22 retrieving revision 1.23 diff -C2 -d -r1.22 -r1.23 *** c2ir.tex 12 Dec 2014 03:01:59 -0000 1.22 --- c2ir.tex 18 Dec 2015 07:53:25 -0000 1.23 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2015 Nagoya Institute of Technology % % Department of Computer Science % % % Index: dmp.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/dmp.tex,v retrieving revision 1.21 retrieving revision 1.22 diff -C2 -d -r1.21 -r1.22 *** dmp.tex 12 Dec 2014 03:01:59 -0000 1.21 --- dmp.tex 18 Dec 2015 07:53:25 -0000 1.22 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2015 Nagoya Institute of Technology % % Department of Computer Science % % % Index: wavsplit.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/wavsplit.tex,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** wavsplit.tex 12 Dec 2014 03:02:00 -0000 1.2 --- wavsplit.tex 18 Dec 2015 07:53:26 -0000 1.3 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2015 Nagoya Institute of Technology % % Department of Computer Science % % % Index: lmadf.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/lmadf.tex,v retrieving revision 1.24 retrieving revision 1.25 diff -C2 -d -r1.24 -r1.25 *** lmadf.tex 12 Dec 2014 03:02:00 -0000 1.24 --- lmadf.tex 18 Dec 2015 07:53:25 -0000 1.25 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2015 Nagoya Institute of Technology % % Department of Computer Science % % % Index: symmetrize.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/symmetrize.tex,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** symmetrize.tex 12 Dec 2014 03:02:00 -0000 1.5 --- symmetrize.tex 18 Dec 2015 07:53:26 -0000 1.6 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2015 Nagoya Institute of Technology % % Department of Computer Science % % % Index: ds.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/ds.tex,v retrieving revision 1.21 retrieving revision 1.22 diff -C2 -d -r1.21 -r1.22 *** ds.tex 12 Dec 2014 03:01:59 -0000 1.21 --- ds.tex 18 Dec 2015 07:53:25 -0000 1.22 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2015 Nagoya Institute of Technology % % Department of Computer Science % % % Index: poledf.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/poledf.tex,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** poledf.tex 12 Dec 2014 03:02:00 -0000 1.18 --- poledf.tex 18 Dec 2015 07:53:26 -0000 1.19 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2015 Nagoya Institute of Technology % % Department of Computer Science % % % Index: amcep.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/amcep.tex,v retrieving revision 1.22 retrieving revision 1.23 diff -C2 -d -r1.22 -r1.23 *** amcep.tex 12 Dec 2014 03:01:59 -0000 1.22 --- amcep.tex 18 Dec 2015 07:53:25 -0000 1.23 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2015 Nagoya Institute of Technology % % Department of Computer Science % % % Index: c2sp.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/c2sp.tex,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** c2sp.tex 12 Dec 2014 03:01:59 -0000 1.17 --- c2sp.tex 18 Dec 2015 07:53:25 -0000 1.18 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2015 Nagoya Institute of Technology % % Department of Computer Science % % % Index: root_pol.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/root_pol.tex,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** root_pol.tex 12 Dec 2014 03:02:00 -0000 1.16 --- root_pol.tex 18 Dec 2015 07:53:26 -0000 1.17 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2015 Nagoya Institute of Technology % % Department of Computer Science % % % Index: mgclsp2mgc.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/mgclsp2mgc.tex,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** mgclsp2mgc.tex 12 Dec 2014 03:02:00 -0000 1.9 --- mgclsp2mgc.tex 18 Dec 2015 07:53:26 -0000 1.10 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2015 Nagoya Institute of Technology % % Department of Computer Science % % % Index: lpc.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/lpc.tex,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** lpc.tex 12 Dec 2014 03:02:00 -0000 1.20 --- lpc.tex 18 Dec 2015 07:53:25 -0000 1.21 *************** *** 9,13 **** % Science and Engineering % % % ! % 1... [truncated message content] |
From: fujishita t. <fjs...@us...> - 2015-12-18 07:42:31
|
Update of /cvsroot/sp-tk/SPTK/src/bin/rawtowav In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv15982 Modified Files: rawtowav.c Log Message: modify parameter Index: rawtowav.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/rawtowav/rawtowav.c,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** rawtowav.c 14 Dec 2015 01:14:21 -0000 1.15 --- rawtowav.c 18 Dec 2015 07:42:29 -0000 1.16 *************** *** 73,77 **** char data_chunk[] = "data"; int file_size, rawfile_size; ! int chunk_size = BIT; int data_speed; short formatID = 1; --- 73,77 ---- char data_chunk[] = "data"; int file_size, rawfile_size; ! int chunk_size = 16; int data_speed; short formatID = 1; |
From: Shikano M. <sh...@us...> - 2015-12-16 07:32:48
|
Update of /cvsroot/sp-tk/SPTK/doc/ref_e In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv28962 Modified Files: vq.tex Log Message: Change the definitional equation Index: vq.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/vq.tex,v retrieving revision 1.22 retrieving revision 1.23 diff -C2 -d -r1.22 -r1.23 *** vq.tex 12 Dec 2014 03:02:00 -0000 1.22 --- vq.tex 16 Dec 2015 07:32:45 -0000 1.23 *************** *** 62,66 **** that minimizes the Euclidean distance \begin{displaymath} ! d_i = \frac{1}{L}\sum_{m=0}^{L-1} (x(m)-c_i(m))^2. \end{displaymath} --- 62,66 ---- that minimizes the Euclidean distance \begin{displaymath} ! d_i = \sum_{m=0}^{L-1} (x(m)-c_i(m))^2. \end{displaymath} |
From: Shikano M. <sh...@us...> - 2015-12-16 07:31:24
|
Update of /cvsroot/sp-tk/SPTK/doc/ref_e In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv28917 Modified Files: mgclsp2sp.tex Log Message: Notice the range of gamma Index: mgclsp2sp.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/mgclsp2sp.tex,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** mgclsp2sp.tex 24 Apr 2014 04:26:24 -0000 1.1 --- mgclsp2sp.tex 16 Dec 2015 07:31:22 -0000 1.2 *************** *** 129,132 **** --- 129,138 ---- \end{qsection} + \begin{qsection}{NOTICE} + \begin{itemize} + Value of $\gamma$ must be $-1 \leq \gamma < 0$. + \end{itemize} + \end{qsection} + \begin{qsection}{SEE ALSO} \hyperlink{lsp2lpc}{lsp2lpc}, |
From: Shikano M. <sh...@us...> - 2015-12-16 07:27:42
|
Update of /cvsroot/sp-tk/SPTK/src/bin/gmm In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv28688 Modified Files: gmm.c Log Message: Changing of check value and variable Index: gmm.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/gmm/gmm.c,v retrieving revision 1.27 retrieving revision 1.28 diff -C2 -d -r1.27 -r1.28 *** gmm.c 14 Dec 2015 01:14:15 -0000 1.27 --- gmm.c 16 Dec 2015 07:27:40 -0000 1.28 *************** *** 543,547 **** for (m = 0; m < M; m++) { gmm.gauss[m].gconst = cal_gconstf(gmm.gauss[m].cov, L); ! if (gmm.gauss[m].gconst == 0) { fprintf(stderr, "ERROR : Can't caluculate covdet\n"); exit(EXIT_FAILURE); --- 543,547 ---- for (m = 0; m < M; m++) { gmm.gauss[m].gconst = cal_gconstf(gmm.gauss[m].cov, L); ! if (gmm.gauss[m].gconst == LZERO) { fprintf(stderr, "ERROR : Can't caluculate covdet\n"); exit(EXIT_FAILURE); *************** *** 583,587 **** /* Output average log likelihood at each iteration */ ave_logp1 /= (double) T; ! if (i == 1 && m == 1) ave_logp0 = ave_logp1; --- 583,587 ---- /* Output average log likelihood at each iteration */ ave_logp1 /= (double) T; ! if (i == 1 && M == 1) ave_logp0 = ave_logp1; |
From: Shikano M. <sh...@us...> - 2015-12-16 07:24:05
|
Update of /cvsroot/sp-tk/SPTK/src/bin/gmm In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv28430 Modified Files: _gmm.c Log Message: Change the function name and output Index: _gmm.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/gmm/_gmm.c,v retrieving revision 1.24 retrieving revision 1.25 diff -C2 -d -r1.24 -r1.25 *** _gmm.c 14 Dec 2015 01:14:15 -0000 1.24 --- _gmm.c 16 Dec 2015 07:24:03 -0000 1.25 *************** *** 63,67 **** int choleski(double **cov, double **S, const int L); ! double cal_det(double **var, const int D) { int i, j, l; --- 63,67 ---- int choleski(double **cov, double **S, const int L); ! double cal_ldet(double **var, const int D) { int i, j, l; *************** *** 92,96 **** free(tri); ! return 0; } } --- 92,96 ---- free(tri); ! return LZERO; } } *************** *** 112,119 **** double gconst, tmp; ! tmp = cal_det(var, D); ! if (tmp == 0) { fprintf(stderr, "WARNING : det is 0!\n"); ! return 0; } gconst = D * log(M_2PI); --- 112,119 ---- double gconst, tmp; ! tmp = cal_ldet(var, D); ! if (tmp == LZERO) { fprintf(stderr, "WARNING : det is 0!\n"); ! return LZERO; } gconst = D * log(M_2PI); *************** *** 451,455 **** gmm->gauss[m].gconst = cal_gconstf(gmm->gauss[m].cov, gmm->dim); } ! if (gmm->gauss[m].gconst == 0) { return -1; } --- 451,455 ---- gmm->gauss[m].gconst = cal_gconstf(gmm->gauss[m].cov, gmm->dim); } ! if (gmm->gauss[m].gconst == LZERO) { return -1; } |
From: Shikano M. <sh...@us...> - 2015-12-16 07:18:04
|
Update of /cvsroot/sp-tk/SPTK/src/bin/vq In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv28176 Modified Files: _vq.c Log Message: Change the definitional equation Index: _vq.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/vq/_vq.c,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** _vq.c 14 Dec 2015 01:14:24 -0000 1.17 --- _vq.c 16 Dec 2015 07:18:02 -0000 1.18 *************** *** 94,97 **** } ! return (dist / (double) m); } --- 94,97 ---- } ! return (dist); } |
From: Shikano M. <sh...@us...> - 2015-12-16 07:09:40
|
Update of /cvsroot/sp-tk/SPTK/src/bin/mgclsp2sp In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv27877 Modified Files: mgclsp2sp.c Log Message: Notice the range of gamma Index: mgclsp2sp.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/mgclsp2sp/mgclsp2sp.c,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** mgclsp2sp.c 14 Dec 2015 01:14:19 -0000 1.3 --- mgclsp2sp.c 16 Dec 2015 07:09:37 -0000 1.4 *************** *** 161,164 **** --- 161,166 ---- fprintf(stderr, " stdout:\n"); fprintf(stderr, " spectrum (%s)\n", FORMAT); + fprintf(stderr, " notice:\n"); + fprintf(stderr, " Value of gamma must be -1 <= gamma < 0\n"); #ifdef PACKAGE_VERSION fprintf(stderr, "\n"); |
From: Shikano M. <sh...@us...> - 2015-12-16 07:05:09
|
Update of /cvsroot/sp-tk/SPTK/src/bin/fftcep In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv27731 Modified Files: _fftcep.c Log Message: change of storage class Index: _fftcep.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/fftcep/_fftcep.c,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** _fftcep.c 14 Dec 2015 01:14:14 -0000 1.17 --- _fftcep.c 16 Dec 2015 07:05:06 -0000 1.18 *************** *** 74,78 **** double temp; static double *x = NULL, *y; ! int k, size = flng; if (x == NULL) { --- 74,79 ---- double temp; static double *x = NULL, *y; ! static double size; ! int k; if (x == NULL) { |
From: Takenori Y. <tak...@us...> - 2015-12-14 11:56:44
|
Update of /cvsroot/sp-tk/SPTK4/src In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv18467 Modified Files: sptk_utils.cc sptk_utils.h Log Message: modify io functions Index: sptk_utils.cc =================================================================== RCS file: /cvsroot/sp-tk/SPTK4/src/sptk_utils.cc,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** sptk_utils.cc 25 Nov 2015 11:35:26 -0000 1.3 --- sptk_utils.cc 14 Dec 2015 11:56:42 -0000 1.4 *************** *** 47,58 **** #include <algorithm> #include <cerrno> #include <cstdlib> namespace sptk { ! bool ReadStream(const bool& zero_padding, const int& size, std::vector<double>* sequence_to_read, std::istream* input_stream) { ! if (1 > size || NULL == sequence_to_read || NULL == input_stream) --- 47,59 ---- #include <algorithm> #include <cerrno> + #include <cmath> #include <cstdlib> namespace sptk { ! bool ReadStream(const bool& zero_padding, const int& read_size, std::vector<double>* sequence_to_read, std::istream* input_stream) { ! if (1 > read_size || NULL == sequence_to_read || NULL == input_stream) *************** *** 62,69 **** return false; ! if (static_cast<std::size_t>(size) > sequence_to_read->size()) ! sequence_to_read->resize(size); ! const int num_bytes(sizeof((*sequence_to_read)[0]) * size); input_stream->read(reinterpret_cast<char*>(&((*sequence_to_read)[0])), num_bytes); --- 63,71 ---- return false; ! if (static_cast<std::size_t>(read_size) > sequence_to_read->size()) ! sequence_to_read->resize(read_size); ! const int type_byte(sizeof((*sequence_to_read)[0])); ! const int num_bytes(type_byte * read_size); input_stream->read(reinterpret_cast<char*>(&((*sequence_to_read)[0])), num_bytes); *************** *** 73,78 **** return !input_stream->fail(); } else if (zero_padding && 0 < gcount) { ! std::fill(sequence_to_read->end() - ! (num_bytes - gcount) / sizeof((*sequence_to_read)[0]), sequence_to_read->end(), 0.0); return !input_stream->bad(); --- 75,86 ---- return !input_stream->fail(); } else if (zero_padding && 0 < gcount) { ! // Use std::ceil to zero the last incomplete data ! // as gcount may not be a multiple of sizeof(double). ! const int num_zeros(std::ceil( ! static_cast<double>(num_bytes - gcount) / type_byte)); ! if (num_zeros < 0) ! return false; // Something wrong! ! ! std::fill(sequence_to_read->end() - num_zeros, sequence_to_read->end(), 0.0); return !input_stream->bad(); *************** *** 82,97 **** } ! bool WriteStream(const int& size, const std::vector<double>& sequence_to_write, std::ostream* output_stream) { ! if (1 > size || NULL == output_stream) return false; ! if (static_cast<std::size_t>(size) > sequence_to_write.size()) return false; output_stream->write(reinterpret_cast<const char*>(&(sequence_to_write[0])), ! sizeof(sequence_to_write[0]) * size); return !output_stream->fail(); --- 90,105 ---- } ! bool WriteStream(const int& write_size, const std::vector<double>& sequence_to_write, std::ostream* output_stream) { ! if (1 > write_size || NULL == output_stream) return false; ! if (static_cast<std::size_t>(write_size) > sequence_to_write.size()) return false; output_stream->write(reinterpret_cast<const char*>(&(sequence_to_write[0])), ! sizeof(sequence_to_write[0]) * write_size); return !output_stream->fail(); Index: sptk_utils.h =================================================================== RCS file: /cvsroot/sp-tk/SPTK4/src/sptk_utils.h,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** sptk_utils.h 25 Nov 2015 11:35:26 -0000 1.3 --- sptk_utils.h 14 Dec 2015 11:56:42 -0000 1.4 *************** *** 55,62 **** static const char* const kVersion("4.0"); ! bool ReadStream(const bool& zero_padding, const int& size, std::vector<double>* sequence_to_read, std::istream* input_stream); ! bool WriteStream(const int& size, const std::vector<double>& sequence_to_write, std::ostream* output_stream); --- 55,62 ---- static const char* const kVersion("4.0"); ! bool ReadStream(const bool& zero_padding, const int& read_size, std::vector<double>* sequence_to_read, std::istream* input_stream); ! bool WriteStream(const int& write_size, const std::vector<double>& sequence_to_write, std::ostream* output_stream); |
From: Keiichiro O. <ur...@us...> - 2015-12-14 05:45:42
|
Update of /cvsroot/sp-tk/SPTK/src/bin/pitch/snack In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv1036/src/bin/pitch/snack Modified Files: jkGetF0.c jkGetF0.h sigproc.c Log Message: update comments to 3.9 Index: jkGetF0.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/pitch/snack/jkGetF0.c,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** jkGetF0.c 11 Dec 2014 08:30:43 -0000 1.14 --- jkGetF0.c 14 Dec 2015 05:45:39 -0000 1.15 *************** *** 25,29 **** /* Science and Engineering */ /* */ ! /* 1996-2014 Nagoya Institute of Technology */ /* Department of Computer Science */ /* */ --- 25,29 ---- /* Science and Engineering */ /* */ ! /* 1996-2015 Nagoya Institute of Technology */ /* Department of Computer Science */ /* */ Index: jkGetF0.h =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/pitch/snack/jkGetF0.h,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** jkGetF0.h 11 Dec 2014 08:30:43 -0000 1.6 --- jkGetF0.h 14 Dec 2015 05:45:39 -0000 1.7 *************** *** 24,28 **** /* Science and Engineering */ /* */ ! /* 1996-2014 Nagoya Institute of Technology */ /* Department of Computer Science */ /* */ --- 24,28 ---- /* Science and Engineering */ /* */ ! /* 1996-2015 Nagoya Institute of Technology */ /* Department of Computer Science */ /* */ Index: sigproc.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/pitch/snack/sigproc.c,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** sigproc.c 11 Dec 2014 08:30:43 -0000 1.6 --- sigproc.c 14 Dec 2015 05:45:39 -0000 1.7 *************** *** 26,30 **** /* Science and Engineering */ /* */ ! /* 1996-2014 Nagoya Institute of Technology */ /* Department of Computer Science */ /* */ --- 26,30 ---- /* Science and Engineering */ /* */ ! /* 1996-2015 Nagoya Institute of Technology */ /* Department of Computer Science */ /* */ |
From: Keiichiro O. <ur...@us...> - 2015-12-14 05:45:41
|
Update of /cvsroot/sp-tk/SPTK/src/bin/da In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv1036/src/bin/da Modified Files: da.in Log Message: update comments to 3.9 Index: da.in =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/da/da.in,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** da.in 11 Dec 2014 08:30:32 -0000 1.17 --- da.in 14 Dec 2015 05:45:39 -0000 1.18 *************** *** 10,14 **** # Science and Engineering # # # ! # 1996-2014 Nagoya Institute of Technology # # Department of Computer Science # # # --- 10,14 ---- # Science and Engineering # # # ! # 1996-2015 Nagoya Institute of Technology # # Department of Computer Science # # # |
From: Keiichiro O. <ur...@us...> - 2015-12-14 05:34:37
|
Update of /cvsroot/sp-tk/SPTK/src/bin/lspdf In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv524/src/bin/lspdf Modified Files: _lspdf.c Log Message: remove unused vailables. Index: _lspdf.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/lspdf/_lspdf.c,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** _lspdf.c 14 Dec 2015 01:14:18 -0000 1.18 --- _lspdf.c 14 Dec 2015 05:34:35 -0000 1.19 *************** *** 104,112 **** { int i; ! int mh1, mh2; double *d1, *d2, *lsp, x1, x2; mh1 = (m + 1) / 2; - mh2 = (m - 1) / 2; d1 = d + 1; --- 104,111 ---- { int i; ! int mh1; double *d1, *d2, *lsp, x1, x2; mh1 = (m + 1) / 2; d1 = d + 1; |
From: Keiichiro O. <ur...@us...> - 2015-12-14 05:34:36
|
Update of /cvsroot/sp-tk/SPTK/src/bin/extract In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv524/src/bin/extract Modified Files: extract.c Log Message: remove unused vailables. Index: extract.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/extract/extract.c,v retrieving revision 1.26 retrieving revision 1.27 diff -C2 -d -r1.26 -r1.27 *** extract.c 14 Dec 2015 01:14:13 -0000 1.26 --- extract.c 14 Dec 2015 05:34:34 -0000 1.27 *************** *** 91,95 **** #define LENG 10 #define INDEX 0 - #define SIZE 256 /* Command Name */ --- 91,94 ---- *************** *** 126,130 **** int main(int argc, char **argv) { ! int l = LENG, index = INDEX, size = SIZE, i; FILE *fp = stdin, *fpi = NULL; double *x; --- 125,129 ---- int main(int argc, char **argv) { ! int l = LENG, index = INDEX, i; FILE *fp = stdin, *fpi = NULL; double *x; *************** *** 145,152 **** --argc; break; - case 's': - size = atoi(*++argv); - --argc; - break; case 'h': usage(0); --- 144,147 ---- |