g72x_priv.h
上传用户:shw771010
上传日期:2022-01-05
资源大小:991k
文件大小:4k
源码类别:

Audio

开发平台:

Unix_Linux

  1. /*
  2.  * This source code is a product of Sun Microsystems, Inc. and is provided
  3.  * for unrestricted use.  Users may copy or modify this source code without
  4.  * charge.
  5.  *
  6.  * SUN SOURCE CODE IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING
  7.  * THE WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR
  8.  * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE.
  9.  *
  10.  * Sun source code is provided with no support and without any obligation on
  11.  * the part of Sun Microsystems, Inc. to assist in its use, correction,
  12.  * modification or enhancement.
  13.  *
  14.  * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE
  15.  * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY THIS SOFTWARE
  16.  * OR ANY PART THEREOF.
  17.  *
  18.  * In no event will Sun Microsystems, Inc. be liable for any lost revenue
  19.  * or profits or other special, indirect and consequential damages, even if
  20.  * Sun has been advised of the possibility of such damages.
  21.  *
  22.  * Sun Microsystems, Inc.
  23.  * 2550 Garcia Avenue
  24.  * Mountain View, California  94043
  25.  */
  26. #ifndef G72X_PRIVATE_H
  27. #define G72X_PRIVATE_H
  28. #ifdef __cplusplus
  29. #error "This code is not designed to be compiled with a C++ compiler."
  30. #endif
  31. /*
  32. ** The following is the definition of the state structure used by the
  33. ** G.721/G.723 encoder and decoder to preserve their internal state
  34. ** between successive calls.  The meanings of the majority of the state
  35. ** structure fields are explained in detail in the CCITT Recommendation
  36. ** G.721.  The field names are essentially identical to variable names
  37. ** in the bit level description of the coding algorithm included in this
  38. ** Recommendation.
  39. */
  40. struct g72x_state
  41. { long  yl; /* Locked or steady state step size multiplier. */
  42. short yu; /* Unlocked or non-steady state step size multiplier. */
  43. short dms; /* Short term energy estimate. */
  44. short dml; /* Long term energy estimate. */
  45. short ap; /* Linear weighting coefficient of 'yl' and 'yu'. */
  46. short a[2]; /* Coefficients of pole portion of prediction filter. */
  47. short b[6]; /* Coefficients of zero portion of prediction filter. */
  48. short pk[2]; /*
  49. ** Signs of previous two samples of a partially
  50. ** reconstructed signal.
  51. **/
  52. short dq[6]; /*
  53. ** Previous 6 samples of the quantized difference
  54. ** signal represented in an internal floating point
  55. ** format.
  56. **/
  57. short sr[2]; /*
  58.   ** Previous 2 samples of the quantized difference
  59. ** signal represented in an internal floating point
  60. ** format.
  61. */
  62. char td; /* delayed tone detect, new in 1988 version */
  63. /* The following struct members were added for libsndfile. The original
  64. ** code worked by calling a set of functions on a sample by sample basis
  65. ** which is slow on architectures like Intel x86. For libsndfile, this
  66. ** was changed so that the encoding and decoding routines could work on
  67. ** a block of samples at a time to reduce the function call overhead.
  68. */
  69. int (*encoder) (int, struct g72x_state* state) ;
  70. int (*decoder) (int, struct g72x_state* state) ;
  71. int codec_bits, blocksize, samplesperblock ;
  72. } ;
  73. typedef struct g72x_state G72x_STATE ;
  74. int predictor_zero (G72x_STATE *state_ptr);
  75. int predictor_pole (G72x_STATE *state_ptr);
  76. int step_size (G72x_STATE *state_ptr);
  77. int quantize (int d, int y, short *table, int size);
  78. int reconstruct (int sign, int dqln, int y);
  79. void update (int code_size, int y, int wi, int fi, int dq, int sr, int dqsez, G72x_STATE *state_ptr);
  80. int g721_encoder (int sample, G72x_STATE *state_ptr);
  81. int g721_decoder (int code, G72x_STATE *state_ptr);
  82. int g723_16_encoder (int sample, G72x_STATE *state_ptr);
  83. int g723_16_decoder (int code, G72x_STATE *state_ptr);
  84. int g723_24_encoder (int sample, G72x_STATE *state_ptr);
  85. int g723_24_decoder (int code, G72x_STATE *state_ptr);
  86. int g723_40_encoder (int sample, G72x_STATE *state_ptr);
  87. int g723_40_decoder (int code, G72x_STATE *state_ptr);
  88. void private_init_state (G72x_STATE *state_ptr) ;
  89. #endif /* G72X_PRIVATE_H */