private.h
上传用户:sy_wanhua
上传日期:2013-07-25
资源大小:3048k
文件大小:4k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

C/C++

  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. /*
  29. ** The following is the definition of the state structure used by the
  30. ** G.721/G.723 encoder and decoder to preserve their internal state
  31. ** between successive calls.  The meanings of the majority of the state 
  32. ** structure fields are explained in detail in the CCITT Recommendation 
  33. ** G.721.  The field names are essentially identical to variable names 
  34. ** in the bit level description of the coding algorithm included in this 
  35. ** Recommendation.
  36. */
  37. typedef struct private_g72x
  38. { long  yl; /* Locked or steady state step size multiplier. */
  39. short yu; /* Unlocked or non-steady state step size multiplier. */
  40. short dms; /* Short term energy estimate. */
  41. short dml; /* Long term energy estimate. */
  42. short ap; /* Linear weighting coefficient of 'yl' and 'yu'. */
  43. short a[2]; /* Coefficients of pole portion of prediction filter. */
  44. short b[6]; /* Coefficients of zero portion of prediction filter. */
  45. short pk[2]; /*
  46. ** Signs of previous two samples of a partially
  47. ** reconstructed signal.
  48. **/
  49. short dq[6]; /*
  50. ** Previous 6 samples of the quantized difference
  51. ** signal represented in an internal floating point
  52. ** format.
  53. **/
  54. short sr[2]; /*
  55.   ** Previous 2 samples of the quantized difference
  56. ** signal represented in an internal floating point
  57. ** format.
  58. */
  59. char td; /* delayed tone detect, new in 1988 version */
  60. /* The following struct members were added for libsndfile. The original 
  61. ** code worked by calling a set of functions on a sample by sample basis 
  62. ** which is slow on architectures like Intel x86. For libsndfile, this 
  63. ** was changed so that the encoding and decoding routines could work on
  64. ** a block of samples at a time to reduce the function call overhead.
  65. */
  66. int (*encoder) (int, struct private_g72x* state) ;
  67. int (*decoder) (int, struct private_g72x* state) ;
  68. int codec_bits ;
  69. int byte_index, sample_index ;
  70. } G72x_STATE ;
  71. int predictor_zero(G72x_STATE *state_ptr);
  72. int predictor_pole(G72x_STATE *state_ptr);
  73. int step_size(G72x_STATE *state_ptr);
  74. int quantize(int d, int y, short *table, int size);
  75. int reconstruct(int sign, int dqln, int y);
  76. void update (int code_size, int y, int wi, int fi, int dq, int sr, int dqsez, G72x_STATE *state_ptr);
  77. int g721_encoder (int sample, G72x_STATE *state_ptr);
  78. int g721_decoder (int code, G72x_STATE *state_ptr);
  79. int g723_16_encoder (int sample, G72x_STATE *state_ptr);
  80. int g723_16_decoder (int code, G72x_STATE *state_ptr);
  81. int g723_24_encoder (int sample, G72x_STATE *state_ptr);
  82. int g723_24_decoder (int code, G72x_STATE *state_ptr);
  83. int g723_40_encoder (int sample, G72x_STATE *state_ptr);
  84. int g723_40_decoder (int code, G72x_STATE *state_ptr);
  85. #endif /* G72X_PRIVATE_H */