analys.c
上传用户:zslianheng
上传日期:2013-04-03
资源大小:946k
文件大小:23k
源码类别:

Linux/Unix编程

开发平台:

Visual C++

  1. /*
  2. $Log: analys.c,v $
  3. Revision 1.1.1.1  2002/07/28 05:23:15  freeman_yong
  4. lpc10 codec
  5.  * Revision 1.2  1996/08/20  20:16:01  jaf
  6.  * Removed all static local variables that were SAVE'd in the Fortran
  7.  * code, and put them in struct lpc10_encoder_state that is passed as an
  8.  * argument.
  9.  *
  10.  * Removed init function, since all initialization is now done in
  11.  * init_lpc10_encoder_state().
  12.  *
  13.  * Revision 1.1  1996/08/19  22:29:08  jaf
  14.  * Initial revision
  15.  *
  16. */
  17. #ifdef P_R_O_T_O_T_Y_P_E_S
  18. extern int analys_(real *speech, integer *voice, integer *pitch, real *rms, real *rc, struct lpc10_encoder_state *st);
  19. /* comlen contrl_ 12 */
  20. /*:ref: preemp_ 14 5 6 6 4 6 6 */
  21. /*:ref: onset_ 14 7 6 4 4 4 4 4 4 */
  22. /*:ref: placev_ 14 11 4 4 4 4 4 4 4 4 4 4 4 */
  23. /*:ref: lpfilt_ 14 4 6 6 4 4 */
  24. /*:ref: ivfilt_ 14 5 6 6 4 4 6 */
  25. /*:ref: tbdm_ 14 8 6 4 4 4 6 4 4 4 */
  26. /*:ref: voicin_ 14 12 4 6 6 4 4 6 6 4 6 4 4 4 */
  27. /*:ref: dyptrk_ 14 6 6 4 4 4 4 4 */
  28. /*:ref: placea_ 14 9 4 4 4 4 4 4 4 4 4 */
  29. /*:ref: dcbias_ 14 3 4 6 6 */
  30. /*:ref: energy_ 14 3 4 6 6 */
  31. /*:ref: mload_ 14 6 4 4 4 6 6 6 */
  32. /*:ref: invert_ 14 4 4 6 6 6 */
  33. /*:ref: rcchk_ 14 3 4 6 6 */
  34. /*:ref: initonset_ 14 0 */
  35. /*:ref: initvoicin_ 14 0 */
  36. /*:ref: initdyptrk_ 14 0 */
  37. /* Rerunning f2c -P may change prototypes or declarations. */
  38. #endif
  39. /*  -- translated by f2c (version 19951025).
  40.    You must link the resulting object file with the libraries:
  41. -lf2c -lm   (in that order)
  42. */
  43. #include "f2c.h"
  44. /* Common Block Declarations */
  45. extern struct {
  46.     integer order, lframe;
  47.     logical corrp;
  48. } contrl_;
  49. #define contrl_1 contrl_
  50. /* Table of constant values */
  51. static integer c__10 = 10;
  52. static integer c__181 = 181;
  53. static integer c__720 = 720;
  54. static integer c__3 = 3;
  55. static integer c__90 = 90;
  56. static integer c__156 = 156;
  57. static integer c__307 = 307;
  58. static integer c__462 = 462;
  59. static integer c__312 = 312;
  60. static integer c__60 = 60;
  61. static integer c__1 = 1;
  62. /* ****************************************************************** */
  63. /*  ANALYS Version 55 */
  64. /* $Log: analys.c,v $
  65. /* Revision 1.1.1.1  2002/07/28 05:23:15  freeman_yong
  66. /* lpc10 codec
  67. /*
  68.  * Revision 1.2  1996/08/20  20:16:01  jaf
  69.  * Removed all static local variables that were SAVE'd in the Fortran
  70.  * code, and put them in struct lpc10_encoder_state that is passed as an
  71.  * argument.
  72.  *
  73.  * Removed init function, since all initialization is now done in
  74.  * init_lpc10_encoder_state().
  75.  *
  76.  * Revision 1.1  1996/08/19  22:29:08  jaf
  77.  * Initial revision
  78.  * */
  79. /* Revision 1.9  1996/05/23  19:41:07  jaf */
  80. /* Commented out some unnecessary lines that were reading uninitialized */
  81. /* values. */
  82. /* Revision 1.8  1996/03/27  23:57:55  jaf */
  83. /* Added some comments about which indices of the local buffers INBUF, */
  84. /* LPBUF, etc., get read or modified by some of the subroutine calls.  I */
  85. /* just did this while trying to figure out the discrepancy between the */
  86. /* embedded code compiled with all local variables implicitly saved, and */
  87. /* without. */
  88. /* I added some debugging write statements in hopes of finding a problem. */
  89. /* None of them ever printed anything while running with the long input */
  90. /* speech file dam9.spd provided in the distribution. */
  91. /* Revision 1.7  1996/03/27  18:06:20  jaf */
  92. /* Commented out access to MAXOSP, which is just a debugging variable */
  93. /* that was defined in the COMMON block CONTRL in contrl.fh. */
  94. /* Revision 1.6  1996/03/26  19:31:33  jaf */
  95. /* Commented out trace statements. */
  96. /* Revision 1.5  1996/03/21  15:19:35  jaf */
  97. /* Added comments for ENTRY PITDEC. */
  98. /* Revision 1.4  1996/03/19  20:54:27  jaf */
  99. /* Added a line to INITANALYS.  See comments there. */
  100. /* Revision 1.3  1996/03/19  20:52:49  jaf */
  101. /* Rearranged the order of the local variables quite a bit, to separate */
  102. /* them into groups of "constants", "locals that don't need to be saved */
  103. /* from one call to the next", and "local that do need to be saved from */
  104. /* one call to the next". */
  105. /* Several locals in the last set should have been given initial values, */
  106. /* but weren't.  I gave them all initial values of 0. */
  107. /* Added a separate ENTRY INITANALYS that initializes all local state */
  108. /* that should be, and also calls the corresponding entries of the */
  109. /* subroutines called by ANALYS that also have local state. */
  110. /* There used to be DATA statements in ANALYS.  I got rid of most of */
  111. /* them, and added a local logical variable FIRST that calls the entry */
  112. /* INITANALYS on the first call to ANALYS.  This is just so that one need */
  113. /* not remember to call INITANALYS first in order for the state to be */
  114. /* initialized. */
  115. /* Revision 1.2  1996/03/11  23:29:32  jaf */
  116. /* Added several comments with my own personal questions about the */
  117. /* Fortran 77 meaning of the parameters passed to the subroutine PREEMP. */
  118. /* Revision 1.1  1996/02/07  14:42:29  jaf */
  119. /* Initial revision */
  120. /* ****************************************************************** */
  121. /* SUBROUTINE ANALYS */
  122. /* Input: */
  123. /*  SPEECH */
  124. /*       Indices 1 through LFRAME read. */
  125. /* Output: */
  126. /*  VOICE */
  127. /*       Indices 1 through 2 written. */
  128. /*  PITCH */
  129. /*       Written in subroutine DYPTRK, and then perhaps read and written */
  130. /*       some more. */
  131. /*  RMS */
  132. /*       Written. */
  133. /*  RC */
  134. /*       Indices 1 through ORDER written (ORDER defined in contrl.fh). */
  135. /* This subroutine maintains local state from one call to the next.  If */
  136. /* you want to switch to using a new audio stream for this filter, or */
  137. /* reinitialize its state for any other reason, call the ENTRY */
  138. /* INITANALYS. */
  139. /* ENTRY PITDEC */
  140. /* Input: */
  141. /*  PITCH   - Encoded pitch index */
  142. /* Output: */
  143. /*  PTAU    - Decoded pitch period */
  144. /* This entry has no local state.  It accesses a "constant" array */
  145. /* declared in ANALYS. */
  146. /* Subroutine */ int analys_(real *speech, integer *voice, integer 
  147. *pitch, real *rms, real *rc, struct lpc10_encoder_state *st)
  148. {
  149.     /* Initialized data */
  150.     static integer tau[60] = { 20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,
  151.     35,36,37,38,39,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,
  152.     74,76,78,80,84,88,92,96,100,104,108,112,116,120,124,128,132,136,
  153.     140,144,148,152,156 };
  154.     static integer buflim[4] = { 181,720,25,720 };
  155.     static real precoef = .9375f;
  156.     /* System generated locals */
  157.     integer i__1;
  158.     /* Local variables */
  159.     real amdf[60];
  160.     integer half;
  161.     real abuf[156];
  162.     real *bias;
  163.     extern /* Subroutine */ int tbdm_(real *, integer *, integer *, integer *,
  164.      real *, integer *, integer *, integer *);
  165.     integer *awin;
  166.     integer midx, ewin[6] /* was [2][3] */;
  167.     real ivrc[2], temp;
  168.     real *zpre;
  169.     integer *vwin;
  170.     integer i__, j, lanal;
  171.     extern /* Subroutine */ int rcchk_(integer *, real *, real *), mload_(
  172.     integer *, integer *, integer *, real *, real *, real *);
  173.     real *inbuf, *pebuf;
  174.     real *lpbuf, *ivbuf;
  175.     real *rcbuf;
  176.     integer *osbuf;
  177.     extern /* Subroutine */ int onset_(real *, integer *, integer *, integer *
  178.     , integer *, integer *, integer *, struct lpc10_encoder_state *);
  179.     integer *osptr;
  180.     extern /* Subroutine */ placea_(integer *, integer *
  181.     , integer *, integer *, integer *, integer *, integer *, integer *
  182.     , integer *), dcbias_(integer *, real *, real *), placev_(integer 
  183.     *, integer *, integer *, integer *, integer *, integer *, integer 
  184.     *, integer *, integer *, integer *, integer *);
  185.     integer ipitch;
  186.     integer *obound;
  187.     extern /* Subroutine */ int preemp_(real *, real *, integer *, real *, 
  188.     real *), voicin_(integer *, real *, real *, integer *, integer *, 
  189.     real *, real *, integer *, real *, integer *, integer *, integer *,
  190.     struct lpc10_encoder_state *);
  191.     integer *voibuf;
  192.     integer mintau;
  193.     real *rmsbuf;
  194.     extern /* Subroutine */ int lpfilt_(real *, real *, integer *, integer *),
  195.      ivfilt_(real *, real *, integer *, integer *, real *), energy_(
  196.     integer *, real *, real *), invert_(integer *, real *, real *, 
  197.     real *);
  198.     integer minptr, maxptr;
  199.     extern /* Subroutine */ int dyptrk_(real *, integer *, integer *, integer 
  200.     *, integer *, integer *, struct lpc10_encoder_state *);
  201.     real phi[100] /* was [10][10] */, psi[10];
  202. /* $Log: analys.c,v $
  203. /* Revision 1.1.1.1  2002/07/28 05:23:15  freeman_yong
  204. /* lpc10 codec
  205. /*
  206.  * Revision 1.2  1996/08/20  20:16:01  jaf
  207.  * Removed all static local variables that were SAVE'd in the Fortran
  208.  * code, and put them in struct lpc10_encoder_state that is passed as an
  209.  * argument.
  210.  *
  211.  * Removed init function, since all initialization is now done in
  212.  * init_lpc10_encoder_state().
  213.  *
  214.  * Revision 1.1  1996/08/19  22:29:08  jaf
  215.  * Initial revision
  216.  * */
  217. /* Revision 1.3  1996/03/29  22:03:47  jaf */
  218. /* Removed definitions for any constants that were no longer used. */
  219. /* Revision 1.2  1996/03/26  19:34:33  jaf */
  220. /* Added comments indicating which constants are not needed in an */
  221. /* application that uses the LPC-10 coder. */
  222. /* Revision 1.1  1996/02/07  14:43:51  jaf */
  223. /* Initial revision */
  224. /*   LPC Configuration parameters: */
  225. /* Frame size, Prediction order, Pitch period */
  226. /*       Arguments to ANALYS */
  227. /* $Log: analys.c,v $
  228. /* Revision 1.1.1.1  2002/07/28 05:23:15  freeman_yong
  229. /* lpc10 codec
  230. /*
  231.  * Revision 1.2  1996/08/20  20:16:01  jaf
  232.  * Removed all static local variables that were SAVE'd in the Fortran
  233.  * code, and put them in struct lpc10_encoder_state that is passed as an
  234.  * argument.
  235.  *
  236.  * Removed init function, since all initialization is now done in
  237.  * init_lpc10_encoder_state().
  238.  *
  239.  * Revision 1.1  1996/08/19  22:29:08  jaf
  240.  * Initial revision
  241.  * */
  242. /* Revision 1.3  1996/03/29  22:05:55  jaf */
  243. /* Commented out the common block variables that are not needed by the */
  244. /* embedded version. */
  245. /* Revision 1.2  1996/03/26  19:34:50  jaf */
  246. /* Added comments indicating which constants are not needed in an */
  247. /* application that uses the LPC-10 coder. */
  248. /* Revision 1.1  1996/02/07  14:44:09  jaf */
  249. /* Initial revision */
  250. /*   LPC Processing control variables: */
  251. /* *** Read-only: initialized in setup */
  252. /*  Files for Speech, Parameter, and Bitstream Input & Output, */
  253. /*    and message and debug outputs. */
  254. /* Here are the only files which use these variables: */
  255. /* lpcsim.f setup.f trans.f error.f vqsetup.f */
  256. /* Many files which use fdebug are not listed, since it is only used in */
  257. /* those other files conditionally, to print trace statements. */
  258. /*  integer fsi, fso, fpi, fpo, fbi, fbo, pbin, fmsg, fdebug */
  259. /*  LPC order, Frame size, Quantization rate, Bits per frame, */
  260. /*    Error correction */
  261. /* Subroutine SETUP is the only place where order is assigned a value, */
  262. /* and that value is 10.  It could increase efficiency 1% or so to */
  263. /* declare order as a constant (i.e., a Fortran PARAMETER) instead of as 
  264. */
  265. /* a variable in a COMMON block, since it is used in many places in the */
  266. /* core of the coding and decoding routines.  Actually, I take that back. 
  267. */
  268. /* At least when compiling with f2c, the upper bound of DO loops is */
  269. /* stored in a local variable before the DO loop begins, and then that is 
  270. */
  271. /* compared against on each iteration. */
  272. /* Similarly for lframe, which is given a value of MAXFRM in SETUP. */
  273. /* Similarly for quant, which is given a value of 2400 in SETUP.  quant */
  274. /* is used in only a few places, and never in the core coding and */
  275. /* decoding routines, so it could be eliminated entirely. */
  276. /* nbits is similar to quant, and is given a value of 54 in SETUP. */
  277. /* corrp is given a value of .TRUE. in SETUP, and is only used in the */
  278. /* subroutines ENCODE and DECODE.  It doesn't affect the speed of the */
  279. /* coder significantly whether it is .TRUE. or .FALSE., or whether it is 
  280. */
  281. /* a constant or a variable, since it is only examined once per frame. */
  282. /* Leaving it as a variable that is set to .TRUE.  seems like a good */
  283. /* idea, since it does enable some error-correction capability for */
  284. /* unvoiced frames, with no change in the coding rate, and no noticeable 
  285. */
  286. /* quality difference in the decoded speech. */
  287. /*  integer quant, nbits */
  288. /* *** Read/write: variables for debugging, not needed for LPC algorithm 
  289. */
  290. /*  Current frame, Unstable frames, Output clip count, Max onset buffer, 
  291. */
  292. /*    Debug listing detail level, Line count on listing page */
  293. /* nframe is not needed for an embedded LPC10 at all. */
  294. /* nunsfm is initialized to 0 in SETUP, and incremented in subroutine */
  295. /* ERROR, which is only called from RCCHK.  When LPC10 is embedded into */
  296. /* an application, I would recommend removing the call to ERROR in RCCHK, 
  297. */
  298. /* and remove ERROR and nunsfm completely. */
  299. /* iclip is initialized to 0 in SETUP, and incremented in entry SWRITE in 
  300. */
  301. /* sread.f.  When LPC10 is embedded into an application, one might want */
  302. /* to cause it to be incremented in a routine that takes the output of */
  303. /* SYNTHS and sends it to an audio device.  It could be optionally */
  304. /* displayed, for those that might want to know what it is. */
  305. /* maxosp is never initialized to 0 in SETUP, although it probably should 
  306. */
  307. /* be, and it is updated in subroutine ANALYS.  I doubt that its value */
  308. /* would be of much interest to an application in which LPC10 is */
  309. /* embedded. */
  310. /* listl and lincnt are not needed for an embedded LPC10 at all. */
  311. /*  integer nframe, nunsfm, iclip, maxosp, listl, lincnt */
  312. /*  common /contrl/ fsi, fso, fpi, fpo, fbi, fbo, pbin, fmsg, fdebug */
  313. /*  common /contrl/ quant, nbits */
  314. /*  common /contrl/ nframe, nunsfm, iclip, maxosp, listl, lincnt */
  315. /*       Arguments to entry PITDEC (below) */
  316. /*  Parameters/constants */
  317. /*  Constants */
  318. /*    NF =     Number of frames */
  319. /*    AF =     Frame in which analysis is done */
  320. /*    OSLEN =  Length of the onset buffer */
  321. /*    LTAU =   Number of pitch lags */
  322. /*    SBUFL, SBUFH =   Start and end index of speech buffers */
  323. /*    LBUFL, LBUFH =   Start and end index of LPF speech buffer */
  324. /*   MINWIN, MAXWIN = Min and Max length of voicing (and analysis) windows
  325. */
  326. /*    PWLEN, PWINH, PWINL = Length, upper and lower limits of pitch window
  327.  */
  328. /*    DVWINL, DVWINH = Default lower and upper limits of voicing window */
  329. /*       The tables TAU and BUFLIM, and the variable PRECOEF, are not */
  330. /*       Fortran PARAMETER's, but they are initialized with DATA */
  331. /*       statements, and never modified.  Thus, they need not have SAVE */
  332. /*       statements for them to keep their values from one invocation to 
  333. */
  334. /*       the next. */
  335. /*       Local variables that need not be saved */
  336. /*       Local state */
  337. /*  Data Buffers */
  338. /*    INBUF Raw speech (with DC bias removed each frame) */
  339. /*    PEBUF Preemphasized speech */
  340. /*    LPBUF Low pass speech buffer */
  341. /*    IVBUF Inverse filtered speech */
  342. /*    OSBUF Indexes of onsets in speech buffers */
  343. /*    VWIN Voicing window indices */
  344. /*    AWIN Analysis window indices */
  345. /*    EWIN Energy window indices */
  346. /*    VOIBUF Voicing decisions on windows in VWIN */
  347. /*    RMSBUF RMS energy */
  348. /*    RCBUF Reflection Coefficients */
  349. /*  Pitch is handled separately from the above parameters. */
  350. /*  The following variables deal with pitch: */
  351. /*    MIDX Encoded initial pitch estimate for analysis frame */
  352. /*    IPITCH Initial pitch computed for frame AF (decoded from MIDX) */
  353. /*    PITCH  The encoded pitch value (index into TAU) for the present */
  354. /*  frame (delayed and smoothed by Dyptrack) */
  355.     /* Parameter adjustments */
  356.     if (speech) {
  357. --speech;
  358. }
  359.     if (voice) {
  360. --voice;
  361. }
  362.     if (rc) {
  363. --rc;
  364. }
  365.     /* Function Body */
  366. /*   Calculations are done on future frame due to requirements */
  367. /*   of the pitch tracker.  Delay RMS and RC's 2 frames to give */
  368. /*   current frame parameters on return. */
  369. /*   Update all buffers */
  370.     inbuf = &(st->inbuf[0]);
  371.     pebuf = &(st->pebuf[0]);
  372.     lpbuf = &(st->lpbuf[0]);
  373.     ivbuf = &(st->ivbuf[0]);
  374.     bias = &(st->bias);
  375.     osbuf = &(st->osbuf[0]);
  376.     osptr = &(st->osptr);
  377.     obound = &(st->obound[0]);
  378.     vwin = &(st->vwin[0]);
  379.     awin = &(st->awin[0]);
  380.     voibuf = &(st->voibuf[0]);
  381.     rmsbuf = &(st->rmsbuf[0]);
  382.     rcbuf = &(st->rcbuf[0]);
  383.     zpre = &(st->zpre);
  384.     i__1 = 720 - contrl_1.lframe;
  385.     for (i__ = 181; i__ <= i__1; ++i__) {
  386. inbuf[i__ - 181] = inbuf[contrl_1.lframe + i__ - 181];
  387. pebuf[i__ - 181] = pebuf[contrl_1.lframe + i__ - 181];
  388.     }
  389.     i__1 = 540 - contrl_1.lframe;
  390.     for (i__ = 229; i__ <= i__1; ++i__) {
  391. ivbuf[i__ - 229] = ivbuf[contrl_1.lframe + i__ - 229];
  392.     }
  393.     i__1 = 720 - contrl_1.lframe;
  394.     for (i__ = 25; i__ <= i__1; ++i__) {
  395. lpbuf[i__ - 25] = lpbuf[contrl_1.lframe + i__ - 25];
  396.     }
  397.     j = 1;
  398.     i__1 = (*osptr) - 1;
  399.     for (i__ = 1; i__ <= i__1; ++i__) {
  400. if (osbuf[i__ - 1] > contrl_1.lframe) {
  401.     osbuf[j - 1] = osbuf[i__ - 1] - contrl_1.lframe;
  402.     ++j;
  403. }
  404.     }
  405.     *osptr = j;
  406.     voibuf[0] = voibuf[2];
  407.     voibuf[1] = voibuf[3];
  408.     for (i__ = 1; i__ <= 2; ++i__) {
  409. vwin[(i__ << 1) - 2] = vwin[(i__ + 1 << 1) - 2] - contrl_1.lframe;
  410. vwin[(i__ << 1) - 1] = vwin[(i__ + 1 << 1) - 1] - contrl_1.lframe;
  411. awin[(i__ << 1) - 2] = awin[(i__ + 1 << 1) - 2] - contrl_1.lframe;
  412. awin[(i__ << 1) - 1] = awin[(i__ + 1 << 1) - 1] - contrl_1.lframe;
  413. /*       EWIN(*,J) is unused for J .NE. AF, so the following shift is 
  414. */
  415. /*       unnecessary.  It also causes error messages when the C versio
  416. n */
  417. /*       of the code created from this by f2c is run with Purify.  It 
  418. */
  419. /*       correctly complains that uninitialized memory is being read. 
  420. */
  421. /*     EWIN(1,I) = EWIN(1,I+1) - LFRAME */
  422. /*     EWIN(2,I) = EWIN(2,I+1) - LFRAME */
  423. obound[i__ - 1] = obound[i__];
  424. voibuf[i__ * 2] = voibuf[(i__ + 1) * 2];
  425. voibuf[(i__ << 1) + 1] = voibuf[(i__ + 1 << 1) + 1];
  426. rmsbuf[i__ - 1] = rmsbuf[i__];
  427. i__1 = contrl_1.order;
  428. for (j = 1; j <= i__1; ++j) {
  429.     rcbuf[j + i__ * 10 - 11] = rcbuf[j + (i__ + 1) * 10 - 11];
  430. }
  431.     }
  432. /*   Copy input speech, scale to sign+12 bit integers */
  433. /*   Remove long term DC bias. */
  434. /*       If the average value in the frame was over 1/4096 (after current 
  435. */
  436. /*       BIAS correction), then subtract that much more from samples in */
  437. /*       next frame.  If the average value in the frame was under */
  438. /*       -1/4096, add 1/4096 more to samples in next frame.  In all other 
  439. */
  440. /*       cases, keep BIAS the same. */
  441.     temp = 0.f;
  442.     i__1 = contrl_1.lframe;
  443.     for (i__ = 1; i__ <= i__1; ++i__) {
  444. inbuf[720 - contrl_1.lframe + i__ - 181] = speech[i__] * 4096.f - 
  445. (*bias);
  446. temp += inbuf[720 - contrl_1.lframe + i__ - 181];
  447.     }
  448.     if (temp > (real) contrl_1.lframe) {
  449. *bias += 1;
  450.     }
  451.     if (temp < (real) (-contrl_1.lframe)) {
  452. *bias += -1;
  453.     }
  454. /*   Place Voicing Window */
  455.     i__ = 721 - contrl_1.lframe;
  456.     preemp_(&inbuf[i__ - 181], &pebuf[i__ - 181], &contrl_1.lframe, &precoef, 
  457.     zpre);
  458.     onset_(pebuf, osbuf, osptr, &c__10, &c__181, &c__720, &contrl_1.lframe, st);
  459. /*       MAXOSP is just a debugging variable. */
  460. /*  MAXOSP = MAX( MAXOSP, OSPTR ) */
  461.     placev_(osbuf, osptr, &c__10, &obound[2], vwin, &c__3, &contrl_1.lframe, 
  462.     &c__90, &c__156, &c__307, &c__462);
  463. /*        The Pitch Extraction algorithm estimates the pitch for a frame 
  464. */
  465. /*   of speech by locating the minimum of the average magnitude difference
  466.  */
  467. /*   function (AMDF).  The AMDF operates on low-pass, inverse filtered */
  468. /*   speech.  (The low-pass filter is an 800 Hz, 19 tap, equiripple, FIR 
  469. */
  470. /*   filter and the inverse filter is a 2nd-order LPC filter.)  The pitch 
  471. */
  472. /*   estimate is later refined by dynamic programming (DYPTRK).  However, 
  473. */
  474. /*   since some of DYPTRK's parameters are a function of the voicing */
  475. /*  decisions, a voicing decision must precede the final pitch estimation.
  476. */
  477. /*   See subroutines LPFILT, IVFILT, and TBDM. */
  478. /*       LPFILT reads indices LBUFH-LFRAME-29 = 511 through LBUFH = 720 */
  479. /*       of INBUF, and writes indices LBUFH+1-LFRAME = 541 through LBUFH 
  480. */
  481. /*       = 720 of LPBUF. */
  482.     lpfilt_(&inbuf[228], &lpbuf[384], &c__312, &contrl_1.lframe);
  483. /*       IVFILT reads indices (PWINH-LFRAME-7) = 353 through PWINH = 540 
  484. */
  485. /*       of LPBUF, and writes indices (PWINH-LFRAME+1) = 361 through */
  486. /*       PWINH = 540 of IVBUF. */
  487.     ivfilt_(&lpbuf[204], ivbuf, &c__312, &contrl_1.lframe, ivrc);
  488. /*       TBDM reads indices PWINL = 229 through */
  489. /*       (PWINL-1)+MAXWIN+(TAU(LTAU)-TAU(1))/2 = 452 of IVBUF, and writes 
  490. */
  491. /*       indices 1 through LTAU = 60 of AMDF. */
  492.     tbdm_(ivbuf, &c__156, tau, &c__60, amdf, &minptr, &maxptr, &mintau);
  493. /*        Voicing decisions are made for each half frame of input speech. 
  494. */
  495. /*   An initial voicing classification is made for each half of the */
  496. /*   analysis frame, and the voicing decisions for the present frame */
  497. /*   are finalized.  See subroutine VOICIN. */
  498. /*        The voicing detector (VOICIN) classifies the input signal as */
  499. /*   unvoiced (including silence) or voiced using the AMDF windowed */
  500. /*   maximum-to-minimum ratio, the zero crossing rate, energy measures, */
  501. /*   reflection coefficients, and prediction gains. */
  502. /*        The pitch and voicing rules apply smoothing and isolated */
  503. /*   corrections to the pitch and voicing estimates and, in the process, 
  504. */
  505. /*   introduce two frames of delay into the corrected pitch estimates and 
  506. */
  507. /*   voicing decisions. */
  508.     for (half = 1; half <= 2; ++half) {
  509. voicin_(&vwin[4], inbuf, lpbuf, buflim, &half, &amdf[minptr - 1], &
  510. amdf[maxptr - 1], &mintau, ivrc, obound, voibuf, &c__3, st);
  511.     }
  512. /*   Find the minimum cost pitch decision over several frames */
  513. /*   given the current voicing decision and the AMDF array */
  514.     dyptrk_(amdf, &c__60, &minptr, &voibuf[7], pitch, &midx, st);
  515.     ipitch = tau[midx - 1];
  516. /*   Place spectrum analysis and energy windows */
  517.     placea_(&ipitch, voibuf, &obound[2], &c__3, vwin, awin, ewin, &
  518.     contrl_1.lframe, &c__156);
  519. /*  Remove short term DC bias over the analysis window, Put result in ABUF
  520. */
  521.     lanal = awin[5] + 1 - awin[4];
  522.     dcbias_(&lanal, &pebuf[awin[4] - 181], abuf);
  523. /*       ABUF(1:LANAL) is now defined.  It is equal to */
  524. /*       PEBUF(AWIN(1,AF):AWIN(2,AF)) corrected for short term DC bias. */
  525. /*   Compute RMS over integer number of pitch periods within the */
  526. /*   analysis window. */
  527. /*   Note that in a hardware implementation this computation may be */
  528. /*   simplified by using diagonal elements of PHI computed by MLOAD. */
  529.     i__1 = ewin[5] - ewin[4] + 1;
  530.     energy_(&i__1, &abuf[ewin[4] - awin[4]], &rmsbuf[2]);
  531. /*   Matrix load and invert, check RC's for stability */
  532.     mload_(&contrl_1.order, &c__1, &lanal, abuf, phi, psi);
  533.     invert_(&contrl_1.order, phi, psi, &rcbuf[20]);
  534.     rcchk_(&contrl_1.order, &rcbuf[10], &rcbuf[20]);
  535. /*   Set return parameters */
  536.     voice[1] = voibuf[2];
  537.     voice[2] = voibuf[3];
  538.     *rms = rmsbuf[0];
  539.     i__1 = contrl_1.order;
  540.     for (i__ = 1; i__ <= i__1; ++i__) {
  541. rc[i__] = rcbuf[i__ - 1];
  542.     }
  543.     return 0;
  544. } /* analys_ */