pan_lspdec.c
上传用户:sun1608
上传日期:2007-02-02
资源大小:6116k
文件大小:5k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2. This software module was originally developed by
  3. Naoya Tanaka (Matsushita Communication Industrial Co., Ltd.)
  4. and edited by
  5. Yuji Maeda (Sony Corporation)
  6. in the course of development of the
  7. MPEG-2 NBC/MPEG-4 Audio standard ISO/IEC 13818-7, 14496-1,2 and 3.
  8. This software module is an implementation of a part of one or more
  9. MPEG-2 NBC/MPEG-4 Audio tools as specified by the MPEG-2 NBC/MPEG-4 Audio
  10. standard. ISO/IEC  gives users of the MPEG-2 NBC/MPEG-4 Audio standards
  11. free license to this software module or modifications thereof for use in
  12. hardware or software products claiming conformance to the MPEG-2 NBC/
  13. MPEG-4 Audio  standards. Those intending to use this software module in
  14. hardware or software products are advised that this use may infringe
  15. existing patents. The original developer of this software module and
  16. his/her company, the subsequent editors and their companies, and ISO/IEC
  17. have no liability for use of this software module or modifications
  18. thereof in an implementation. Copyright is not released for non
  19. MPEG-2 NBC/MPEG-4 Audio conforming products. The original developer
  20. retains full right to use the code for his/her  own purpose, assign or
  21. donate the code to a third party and to inhibit third party from using
  22. the code for non MPEG-2 NBC/MPEG-4 Audio conforming products.
  23. This copyright notice must be included in all copies or derivative works.
  24. Copyright (c)1996.
  25. */
  26. /*----------------------------------------------------------------------*
  27.  *    MPEG-4 Audio Verification Model (VM)                              * 
  28.  *                                                                      *
  29.  * CELP based coder                                                *
  30.  *    Module: pan_lspdec.c                                          *
  31.  *                                                                      *
  32.  *  Last modified: Jan. 07, 1998                                        *
  33.  *----------------------------------------------------------------------*/
  34. #include <stdio.h>
  35. #include "buffersHandle.h"       /* handler, defines, enums */
  36. #include "bitstream.h"
  37. #include "pan_celp_proto.h"
  38. #include "pan_celp_const.h"
  39. /* ------------------------------------------------------------------ */
  40. void pan_lspdec(
  41.     float out_p[], /* in: previous output LSPs */
  42.     float out[], /* out: output LSPs */
  43.     float p_factor, /* in: prediction factor */
  44.     float min_gap, /* in: minimum gap between adjacent LSPs */
  45.     long lpc_order, /* in: LPC order */
  46.     unsigned long idx[], /* in: LSP indicies */
  47.     float tbl[], /* in: VQ table */
  48.     float d_tbl[], /* in: DVQ table */
  49.     float rd_tbl[], /* in: PVQ table */
  50.     long dim_1[], /* in: dimensions of the 1st VQ vectors */
  51.     long ncd_1[], /* in: numbers of the 1st VQ codes */
  52.     long dim_2[], /* in: dimensions of the 2nd VQ vectors */
  53.     long ncd_2[], /* in: numbers od the 2nd VQ codes */
  54.     long flagStab, /* in: 0 - stabilization OFF, 1 - stabilization ON */
  55.     long flagPred /* in: 0 - LSP prediction OFF, 1 - LSP prediction ON */
  56.     )
  57. {
  58. long i;
  59. /* 1st stage quantized value */
  60. for(i=0;i<dim_1[0];i++) {
  61. out[i] = tbl[dim_1[0]*idx[0]+i];
  62. }
  63. for(i=0;i<dim_1[1];i++) {
  64. out[dim_1[0]+i] 
  65. = tbl[dim_1[0]*ncd_1[0]+dim_1[1]*idx[1]+i];
  66. }
  67. /* 2nd stage quantized value */
  68. if(idx[4]==0) {
  69. if(idx[2]<ncd_2[0]) {
  70.     for(i=0;i<dim_2[0];i++) {
  71. out[i] = out[i]+d_tbl[idx[2]*dim_2[0]+i];
  72.     }
  73. }else {
  74.     for(i=0;i<dim_2[0];i++) {
  75. out[i] = out[i]-d_tbl[(idx[2]-ncd_2[0])*dim_2[0]+i];
  76.     }
  77. }
  78. if(idx[3]<ncd_2[1]) {
  79.     for(i=0;i<dim_2[1];i++) {
  80. out[dim_2[0]+i] = out[dim_2[0]+i]
  81. + d_tbl[dim_2[0]*ncd_2[0]+idx[3]*dim_2[1]+i];
  82.     }
  83. }else {
  84.     for(i=0;i<dim_2[1];i++) {
  85. out[dim_2[0]+i] = out[dim_2[0]+i]
  86. - d_tbl[dim_2[0]*ncd_2[0]
  87. + (idx[3]-ncd_2[1])*dim_2[1]+i];
  88.     }
  89. }
  90. }else if(idx[4]==1) {
  91. if(flagPred != 0) {
  92.     if(idx[2]<ncd_2[0]) {
  93.         for(i=0;i<dim_2[0];i++) {
  94.     out[i] = (p_factor*out_p[i]+(1.-p_factor)*out[i])
  95.       + rd_tbl[idx[2]*dim_2[0]+i];
  96. }
  97.     }else {
  98.         for(i=0;i<dim_2[0];i++) {
  99.     out[i] = (p_factor*out_p[i]+(1.-p_factor)*out[i])
  100.       - rd_tbl[(idx[2]-ncd_2[0])*dim_2[0]+i];
  101. }
  102.     }
  103.     if(idx[3]<ncd_2[1]) {
  104.         for(i=0;i<dim_2[1];i++) {
  105.     out[dim_2[0]+i] = (p_factor*out_p[dim_2[0]+i]
  106.        + (1.-p_factor)*out[dim_2[0]+i])
  107.       + rd_tbl[dim_2[0]*ncd_2[0]
  108.       + idx[3]*dim_2[1]+i];
  109. }
  110.     }else {
  111.         for(i=0;i<dim_2[1];i++) {
  112.     out[dim_2[0]+i] = (p_factor*out_p[dim_2[0]+i]
  113.        + (1.-p_factor)*out[dim_2[0]+i])
  114.       - rd_tbl[dim_2[0]*ncd_2[0]
  115.       +(idx[3]-ncd_2[1])*dim_2[1]+i];
  116. }
  117.     }
  118. }
  119. }
  120. if(flagStab) pan_stab(out, min_gap, lpc_order);
  121. }