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

Linux/Unix编程

开发平台:

Visual C++

  1. /*
  2. $Log: lpc10.h,v $
  3. Revision 1.1.1.1  2002/07/28 05:23:52  freeman_yong
  4. lpc10 codec
  5.  * Revision 1.1  1996/08/19  22:47:31  jaf
  6.  * Initial revision
  7.  *
  8. */
  9. #ifndef __LPC10_H__
  10. #define __LPC10_H__
  11. #define LPC10_SAMPLES_PER_FRAME 180
  12. #define LPC10_BITS_IN_COMPRESSED_FRAME 54
  13. /*
  14.   The "#if defined"'s in this file are by no means intended to be
  15.   complete.  They are what Nautilus uses, which has been successfully
  16.   compiled under DOS with the Microsoft C compiler, and under a few
  17.   versions of Unix with the GNU C compiler.
  18.   Changed by me:-)
  19.  */
  20. typedef short INT16;
  21. typedef int INT32;
  22. /* The initial values for every member of this structure is 0, except
  23.    where noted in comments. */
  24. /* These two lines are copied from f2c.h.  There should be a more
  25.    elegant way of doing this than having the same declarations in two
  26.    files. */
  27. typedef float real;
  28. typedef INT32 integer;
  29. typedef INT32 logical;
  30. typedef INT16 shortint;
  31. struct lpc10_encoder_state {
  32.     /* State used only by function hp100 */
  33.     real z11;
  34.     real z21;
  35.     real z12;
  36.     real z22;
  37.     
  38.     /* State used by function analys */
  39.     real inbuf[540], pebuf[540];
  40.     real lpbuf[696], ivbuf[312];
  41.     real bias;
  42.     integer osbuf[10];  /* no initial value necessary */
  43.     integer osptr;     /* initial value 1 */
  44.     integer obound[3];
  45.     integer vwin[6] /* was [2][3] */;   /* initial value vwin[4] = 307; vwin[5] = 462; */
  46.     integer awin[6] /* was [2][3] */;   /* initial value awin[4] = 307; awin[5] = 462; */
  47.     integer voibuf[8] /* was [2][4] */;
  48.     real rmsbuf[3];
  49.     real rcbuf[30] /* was [10][3] */;
  50.     real zpre;
  51.     /* State used by function onset */
  52.     real n;
  53.     real d__;   /* initial value 1.f */
  54.     real fpc;   /* no initial value necessary */
  55.     real l2buf[16];
  56.     real l2sum1;
  57.     integer l2ptr1;   /* initial value 1 */
  58.     integer l2ptr2;   /* initial value 9 */
  59.     integer lasti;    /* no initial value necessary */
  60.     logical hyst;   /* initial value FALSE_ */
  61.     /* State used by function voicin */
  62.     real dither;   /* initial value 20.f */
  63.     real snr;
  64.     real maxmin;
  65.     real voice[6] /* was [2][3] */;   /* initial value is probably unnecessary */
  66.     integer lbve, lbue, fbve, fbue;
  67.     integer ofbue, sfbue;
  68.     integer olbue, slbue;
  69.     /* Initial values:
  70. lbve = 3000;
  71. fbve = 3000;
  72. fbue = 187;
  73. ofbue = 187;
  74. sfbue = 187;
  75. lbue = 93;
  76. olbue = 93;
  77. slbue = 93;
  78. snr = (real) (fbve / fbue << 6);
  79. */
  80.     /* State used by function dyptrk */
  81.     real s[60];
  82.     integer p[120] /* was [60][2] */;
  83.     integer ipoint;
  84.     real alphax;
  85.     /* State used by function chanwr */
  86.     integer isync;
  87. };
  88. struct lpc10_decoder_state {
  89.     /* State used by function decode */
  90.     integer iptold;   /* initial value 60 */
  91.     logical first;   /* initial value TRUE_ */
  92.     integer ivp2h;
  93.     integer iovoic;
  94.     integer iavgp;   /* initial value 60 */
  95.     integer erate;
  96.     integer drc[30] /* was [3][10] */;
  97.     integer dpit[3];
  98.     integer drms[3];
  99.     /* State used by function synths */
  100.     real buf[360];
  101.     integer buflen;   /* initial value 180 */
  102.     /* State used by function pitsyn */
  103.     integer ivoico;   /* no initial value necessary as long as first_pitsyn is initially TRUE_ */
  104.     integer ipito;   /* no initial value necessary as long as first_pitsyn is initially TRUE_ */
  105.     real rmso;   /* initial value 1.f */
  106.     real rco[10];   /* no initial value necessary as long as first_pitsyn is initially TRUE_ */
  107.     integer jsamp;   /* no initial value necessary as long as first_pitsyn is initially TRUE_ */
  108.     logical first_pitsyn;   /* initial value TRUE_ */
  109.     /* State used by function bsynz */
  110.     integer ipo;
  111.     real exc[166];
  112.     real exc2[166];
  113.     real lpi1;
  114.     real lpi2;
  115.     real lpi3;
  116.     real hpi1;
  117.     real hpi2;
  118.     real hpi3;
  119.     real rmso_bsynz;
  120.     /* State used by function random */
  121.     integer j;   /* initial value 2 */
  122.     integer k;   /* initial value 5 */
  123.     shortint y[5];  /* initial value { -21161,-8478,30892,-10216,16950 } */
  124.     /* State used by function deemp */
  125.     real dei1;
  126.     real dei2;
  127.     real deo1;
  128.     real deo2;
  129.     real deo3;
  130. };
  131. /*
  132.   Calling sequence:
  133.   Call create_lpc10_encoder_state(), which returns a pointer to an
  134.   already initialized lpc10_encoder_state structure.
  135.   lpc10_encode reads indices 0 through (LPC10_SAMPLES_PER_FRAME-1) of
  136.   array speech[], and writes indices 0 through
  137.   (LPC10_BITS_IN_COMPRESSED_FRAME-1) of array bits[], and both reads
  138.   and writes the lpc10_encoder_state structure contents.  The
  139.   lpc10_encoder_state structure should *not* be initialized for every
  140.   frame of encoded speech.  Once at the beginning of execution, done
  141.   automatically for you by create_lpc10_encoder_state(), is enough.
  142.   init_lpc10_encoder_state() reinitializes the lpc10_encoder_state
  143.   structure.  This might be useful if you are finished processing one
  144.   sound sample, and want to reuse the same lpc10_encoder_state
  145.   structure to process another sound sample.  There might be other
  146.   uses as well.
  147.   Note that the comments in the lpc10/lpcenc.c file imply that indices
  148.   1 through 180 of array speech[] are read.  These comments were
  149.   written for the Fortran version of the code, before it was
  150.   automatically converted to C by the conversion program f2c.  f2c
  151.   seems to use the convention that the pointers to arrays passed as
  152.   function arguments point to the first index used in the Fortran
  153.   code, whatever index that might be (usually 1), and then it modifies
  154.   the pointer inside of the function, like so:
  155.   if (speech) {
  156.       --speech;
  157.   }
  158.   So that the code can access the first value at index 1 and the last
  159.   at index 180.  This makes the translated C code "closer" to the
  160.   original Fortran code.
  161.   The calling sequence for the decoder is similar to the encoder.  The
  162.   only significant difference is that the array bits[] is read
  163.   (indices 0 through (LPC10_BITS_IN_COMPRESSED_FRAME-1)), and the
  164.   array speech[] is written (indices 0 through
  165.   (LPC10_SAMPLES_PER_FRAME-1)).
  166.   
  167.   */
  168. #ifdef __cplusplus
  169. extern "C" {
  170. #endif
  171. struct lpc10_encoder_state * create_lpc10_encoder_state ();
  172. void init_lpc10_encoder_state (struct lpc10_encoder_state *st);
  173. int lpc10_encode (real *speech, INT32 *bits, struct lpc10_encoder_state *st);
  174. struct lpc10_decoder_state * create_lpc10_decoder_state ();
  175. void init_lpc10_decoder_state (struct lpc10_decoder_state *st);
  176. int lpc10_decode (INT32 *bits, real *speech, struct lpc10_decoder_state *st);
  177. #ifdef __cplusplus
  178. }
  179. #endif
  180. #endif /* __LPC10_H__ */