📄 lspdf.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. ----------------------------------------------------------------*//************************************************************************* ** LSP Speech Synthesis Digital Filter ** ** 1996.9 K.Koishida ** ** usage: ** lspdf [ options ] [ infile ] > stdout ** options: ** -m m : order of coefficients [25] ** -p p : frame period [100] ** -i i : interpolation period [1] ** -k : filtering without gain [FALSE] ** infile: ** coefficients ** , K, f(1), ..., f(m), ** excitation sequence ** , x(0), x(1), ..., ** stdout: ** filtered sequence ** , y(0), y(1), ..., ** require: ** lspdf_even() ** lspdf_odd() ** *************************************************************************/static char *rcs_id = "$Id: lspdf.c,v 1.2 2002/12/25 05:31:18 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 lspdf_even();double lspdf_odd();/* 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 - LSP speech synthesis digital filter\n",cmnd); fprintf(stderr, "\n"); fprintf(stderr, " usage:\n"); fprintf(stderr, " %s [ options ] lspfile [ 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, " lspfile:\n"); fprintf(stderr, " LSP coefficients (float)\n"); fprintf(stderr, "\n"); exit(status);}void main(int argc, char **argv){ int m = ORDER, fprd = FPERIOD, iprd = IPERIOD, tp = TRANSPOSE, i, j, flag_odd; FILE *fp = stdin, *fpc = NULL; double *c, *inc, *cc, *d, x; Boolean 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 LSP file!\n",cmnd); exit(1); } if(m % 2 == 0) flag_odd = 0; else flag_odd = 1; c = dgetmem(5*m+4); 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(flag_odd) x = lspdf_odd(x, c, m, d); else x = lspdf_even(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 + -