?? glsadf.c
字號:
/* ---------------------------------------------------------------- Speech Signal Processing Toolkit (SPTK): version 3.0 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-2000 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 code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Any modifications must be clearly marked as such. NAGOYA INSTITUTE OF TECHNOLOGY, TOKYO INSITITUTE 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 INSITITUTE 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 TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ----------------------------------------------------------------*//************************************************************************* ** GLSA Digital Filter for Speech Synthesis ** ** 1996.3 K.Koishida ** ** usage: ** glsadf [ options ] [ infile ] > stdout ** options: ** -m m : order of generalized cepstrum [25] ** -g g : -1/gamma [1] ** -p p : frame period [100] ** -i i : interpolation period [1] ** -n : regard input as normalized [FALSE] ** generalized cepstrum ** -k : filtering without gain [FALSE] ** infile: ** generalized cepstral coefficients ** , c(0), c(1), ..., c(M), ** excitation sequence ** , x(0), x(1), ..., ** stdout: ** filtered sequence ** , y(0), y(1), ..., ** require: ** glsadf() ** *************************************************************************/static char *rcs_id = "$Id: glsadf.c,v 1.2 2002/12/25 05:30:07 sako Exp $";/* Standard C Libraries */#include <stdio.h>#include <string.h>#include <SPTK.h>typedef enum _Boolean {FA, TR} Boolean;char *BOOL[] = {"FALSE", "TRUE"};/* Required Functions */double glsadf();/* Default Values */#define ORDER 25#define STAGE 1#define FPERIOD 100#define IPERIOD 1#define NORM FA#define NGAIN FA/* Command Name */char *cmnd;void usage(int status){ fprintf(stderr, "\n"); fprintf(stderr, " %s - GLSA digital filter for speech synthesis\n",cmnd); fprintf(stderr, "\n"); fprintf(stderr, " usage:\n"); fprintf(stderr, " %s [ options ] gcfile [ infile ] > stdout\n", cmnd); fprintf(stderr, " options:\n"); fprintf(stderr, " -m m : order of generalized cepstrum [%d]\n", ORDER); fprintf(stderr, " -g g : -1 / gamma [%d]\n", STAGE); fprintf(stderr, " -p p : frame period [%d]\n", FPERIOD); fprintf(stderr, " -i i : interpolation period [%d]\n", IPERIOD); fprintf(stderr, " -n : regard input as normalized\n"); fprintf(stderr, " generalized cepstrum [%s]\n", BOOL[NORM]); fprintf(stderr, " -k : filtering without gain [%s]\n",BOOL[NGAIN]); fprintf(stderr, " -h : print this message\n"); fprintf(stderr, " infile:\n"); fprintf(stderr, " filter input (float) [stdin]\n"); fprintf(stderr, " stdout:\n"); fprintf(stderr, " filter output (float)\n"); fprintf(stderr, " gcfile:\n"); fprintf(stderr, " generalized cepstrum (float)\n"); fprintf(stderr, "\n"); exit(status);}void main(int argc, char **argv){ int m = ORDER, fprd = FPERIOD, iprd = IPERIOD, stage = STAGE, i, j; FILE *fp = stdin, *fpc = NULL; Boolean norm = NORM, ngain = NGAIN; double *c, *inc, *cc, *d, x, gamma; if ((cmnd = strrchr(argv[0], '/')) == NULL) cmnd = argv[0]; else cmnd++; while (--argc) if (**++argv == '-') { switch (*(*argv+1)) { case 'm': m = atoi(*++argv); --argc; break; case 'g': stage = atoi(*++argv); --argc; break; case 'p': fprd = atoi(*++argv); --argc; break; case 'i': iprd = atoi(*++argv); --argc; break; case 'n': norm = 1 - norm; break; case 'k': ngain = 1 - ngain; break; case 'h': usage(0); default: fprintf(stderr, "%s : Invalid option '%c' !\n", cmnd, *(*argv+1)); usage(1); } } else if (fpc == NULL) fpc = getfp(*argv, "r"); else fp = getfp(*argv, "r"); if(fpc == NULL){ fprintf(stderr,"%s : Cannot open cepstrum file!\n",cmnd); exit(1); } gamma = -1 / (double)stage; c = dgetmem(m+m+m+3+m*stage); cc = c + m + 1; inc = cc + m + 1; d = inc+ m + 1; if(freadf(c, sizeof(*c), m+1, fpc) != m+1) exit(1); if(! norm) gnorm(c, c, m, gamma); for(i=1; i<=m; i++) c[i] *= gamma; for(;;){ if(freadf(cc, sizeof(*cc), m+1, fpc) != m+1) exit(0); if(! norm) gnorm(cc, cc, m, gamma); for(i=1; i<=m; i++) cc[i] *= gamma; for(i=0; i<=m; i++) inc[i] = (cc[i] - c[i])*iprd / fprd; for(j=fprd, i=(iprd+1)/2; j--;){ if (freadf(&x, sizeof(x), 1, fp) != 1) exit(0); if (!ngain) x *= c[0]; x = glsadf(x, c, m, stage, d); fwritef(&x, sizeof(x), 1, stdout); if (!--i){ for (i=0; i<=m; i++) c[i] += inc[i]; i = iprd; } } movem(cc, c, sizeof(*cc), m+1); } exit(0);}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -