?? poledf.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. ----------------------------------------------------------------*//************************************************************************* ** All Pole Digital Filter for Speech Synthesis ** ** 1996.3 K.Koishida ** ** usage: ** poledf [ options ] [ infile ] > stdout ** options: ** -m m : order of coefficients [25] ** -p p : frame period [100] ** -i i : interpolation period [1] ** -t : transpose filter [FALSE] ** -k : filtering without gain [FALSE] ** infile: ** coefficients ** , K, a(1), ..., a(m), ** excitation sequence ** , x(0), x(1), ..., ** stdout: ** filtered sequence ** , y(0), y(1), ..., ** require: ** poledf(), poledft() ** *************************************************************************/static char *rcs_id = "$Id: poledf.c,v 1.3 2002/12/25 05:32:16 sako Exp $";/* Standard C Libralies */#include <stdio.h>#include <string.h>#include <SPTK.h>typedef enum _Boolean {FA, TR} Boolean;char *BOOL[] = {"FALSE", "TRUE"};/* Required Functions */double poledf(), poledft();/* Default Values */#define ORDER 25#define FPERIOD 100#define IPERIOD 1#define TRANSPOSE FA#define NGAIN FA/* Command Name */char *cmnd;void usage(int status){ fprintf(stderr, "\n"); fprintf(stderr, " %s - all pole digital filter for speech synthesis\n",cmnd); fprintf(stderr, "\n"); fprintf(stderr, " usage:\n"); fprintf(stderr, " %s [ options ] afile [ infile ] > stdout\n", cmnd); fprintf(stderr, " options:\n"); fprintf(stderr, " -m m : order of coefficients [%d]\n", ORDER); fprintf(stderr, " -p p : frame period [%d]\n", FPERIOD); fprintf(stderr, " -i i : interpolation period [%d]\n", IPERIOD); fprintf(stderr, " -t : transpose filter [%s]\n", BOOL[TRANSPOSE]); 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, " afile:\n"); fprintf(stderr, " AR coefficients (float)\n"); fprintf(stderr, "\n"); exit(status);}void main(int argc, char **argv){ int m = ORDER, fprd = FPERIOD, iprd = IPERIOD, i, j; FILE *fp = stdin, *fpc = NULL; double *c, *inc, *cc, *d, x; Boolean tp = TRANSPOSE, ngain = NGAIN; 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 'p': fprd = atoi(*++argv); --argc; break; case 'i': iprd = atoi(*++argv); --argc; break; case 't': tp = 1 - tp; 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 coefficients file!\n",cmnd); exit(1); } if (m < 0) { fprintf(stderr, "%s : Order must be equal to or greater than zero\n", cmnd); exit(1); } c = dgetmem(m+m+m+3+m); cc = c + m + 1; inc = cc + m + 1; d = inc+ m + 1; if(freadf(c, sizeof(*c), m+1, fpc) != m+1) exit(1); for(;;){ if(freadf(cc, sizeof(*cc), m+1, fpc) != m+1) exit(0); 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]; if (m > 0) { if (! tp) x = poledf(x, c, m, d); else x = poledft(x, c, m, 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 + -