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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2. This software module was originally developed by
  3. Toshiyuki Nomura (NEC Corporation)
  4. and edited by
  5. in the course of development of the
  6. MPEG-2 NBC/MPEG-4 Audio standard ISO/IEC 13818-7, 14496-1,2 and 3.
  7. This software module is an implementation of a part of one or more
  8. MPEG-2 NBC/MPEG-4 Audio tools as specified by the MPEG-2 NBC/MPEG-4 Audio
  9. standard. ISO/IEC  gives users of the MPEG-2 NBC/MPEG-4 Audio standards
  10. free license to this software module or modifications thereof for use in
  11. hardware or software products claiming conformance to the MPEG-2 NBC/
  12. MPEG-4 Audio  standards. Those intending to use this software module in
  13. hardware or software products are advised that this use may infringe
  14. existing patents. The original developer of this software module and
  15. his/her company, the subsequent editors and their companies, and ISO/IEC
  16. have no liability for use of this software module or modifications
  17. thereof in an implementation. Copyright is not released for non
  18. MPEG-2 NBC/MPEG-4 Audio conforming products. The original developer
  19. retains full right to use the code for his/her  own purpose, assign or
  20. donate the code to a third party and to inhibit third party from using
  21. the code for non MPEG-2 NBC/MPEG-4 Audio conforming products.
  22. This copyright notice must be included in all copies or derivative works.
  23. Copyright (c)1996.
  24. */
  25. /*
  26.  * MPEG-4 Audio Verification Model (LPC-ABS Core)
  27.  *
  28.  * LSP Parameters Decoding Subroutines
  29.  *
  30.  * Ver1.0 97.09.08 T.Nomura(NEC)
  31.  */
  32. #include <stdio.h>
  33. #include <stdlib.h>
  34. #include <math.h>
  35. #include "buffersHandle.h"       /* handler, defines, enums */
  36. #include "bitstream.h"
  37. #include "nec_abs_proto.h"
  38. #include "nec_abs_const.h"
  39. #include "nec_lspnw20.tbl"
  40. #define NEC_LSPPRDCT_ORDER 4
  41. #define NEC_NUM_LSPSPLIT1 2
  42. #define NEC_NUM_LSPSPLIT2 4
  43. #define NEC_LSP_MINWIDTH_FRQ16 0.028
  44. #define NEC_MAX_LSPVQ_ORDER 20
  45. static void nec_lsp_sort( float *, long );
  46. static float nec_lsp_minwidth;
  47. void nec_bws_lsp_decoder(
  48.      unsigned long indices[], /* input  */
  49.      float qlsp8[], /* input  */
  50.      float qlsp[], /* output  */
  51.      long lpc_order, /* configuration input */
  52.      long lpc_order_8 ) /* configuration input */
  53. {
  54.    long i, j, k, sp_order;
  55.    float *tlsp, *vec_hat;
  56.    float *cb[1+NEC_NUM_LSPSPLIT1+NEC_NUM_LSPSPLIT2];
  57.    static long init_flag = 0;
  58.    static float blsp[NEC_LSPPRDCT_ORDER][NEC_MAX_LSPVQ_ORDER];
  59.    /* Predictor Memory Initialization */
  60.    if ( init_flag == 0 ) {
  61.       for ( i = 0; i < NEC_LSPPRDCT_ORDER; i++ ) {
  62.  for ( j = 0; j < lpc_order; j++ ) {
  63.     if ( j >= lpc_order_8 )
  64.        blsp[i][j]=(float)NEC_PAI/(float)(lpc_order+1)*(j+1);
  65.     else
  66.        blsp[i][j]=0.0;
  67.  }
  68.       }
  69.       init_flag = 1;
  70.    }
  71.    /* Memory allocation */
  72.    if ((tlsp = (float *)calloc(lpc_order, sizeof(float))) == NULL) {
  73.       printf("n Memory allocation error in nec_lsp_decoder n");
  74.       exit(1);
  75.    }
  76.    if ((vec_hat = (float *)calloc(lpc_order, sizeof(float))) == NULL) {
  77.       printf("n Memory allocation error in nec_lsp_decoder n");
  78.       exit(1);
  79.    }
  80.    if ( lpc_order == 20 && lpc_order_8 == 10 ) {
  81.       cb[0] = nec_lspnw_p;
  82.       cb[1] = nec_lspnw_1a;
  83.       cb[2] = nec_lspnw_1b;
  84.       cb[3] = nec_lspnw_2a;
  85.       cb[4] = nec_lspnw_2b;
  86.       cb[5] = nec_lspnw_2c;
  87.       cb[6] = nec_lspnw_2d;
  88.       nec_lsp_minwidth = NEC_LSP_MINWIDTH_FRQ16;
  89.    } else {
  90.       printf("Error in nec_bws_lsp_decodern");
  91.       exit(1);
  92.    }
  93.    /*--- vector linear prediction ----*/
  94.    for ( i = 0; i < lpc_order; i++)
  95.      blsp[NEC_LSPPRDCT_ORDER-1][i] = 0.0;
  96.    for ( i = 0; i < lpc_order_8; i++)
  97.      blsp[NEC_LSPPRDCT_ORDER-1][i] = qlsp8[i];
  98.    for ( i = 0; i < lpc_order; i++ ) {
  99.       vec_hat[i] = 0.0;
  100.       for ( k = 1; k < NEC_LSPPRDCT_ORDER; k++ ) {
  101.  vec_hat[i] += (cb[0][k*lpc_order+i] * blsp[k][i]);
  102.       }
  103.    }
  104.    sp_order = lpc_order/NEC_NUM_LSPSPLIT1;
  105.    for ( i = 0; i < NEC_NUM_LSPSPLIT1; i++ ) {
  106.       for ( j = 0; j < sp_order; j++)
  107.  tlsp[i*sp_order+j] = cb[i+1][sp_order*indices[i]+j];
  108.    }
  109.    sp_order = lpc_order/NEC_NUM_LSPSPLIT2;
  110.    for ( i = 0; i < NEC_NUM_LSPSPLIT2; i++ ) {
  111.       for ( j = 0; j < sp_order; j++)
  112.  tlsp[i*sp_order+j] += cb[i+1+NEC_NUM_LSPSPLIT1][sp_order*indices[i+NEC_NUM_LSPSPLIT1]+j];
  113.    }
  114.    for ( i = 0; i < lpc_order; i++ ) qlsp[i] = vec_hat[i]+cb[0][i]*tlsp[i];
  115.    nec_lsp_sort( qlsp, lpc_order );
  116.    for ( i = 0; i < lpc_order; i++ ) blsp[0][i] = tlsp[i];
  117.    /*--- store previous vector ----*/
  118.    for ( k = NEC_LSPPRDCT_ORDER-2; k > 0; k-- ) {
  119.       for ( i = 0; i < lpc_order; i++ ) blsp[k][i] = blsp[k-1][i];
  120.    }
  121.   FREE( tlsp );
  122.   FREE( vec_hat );
  123. }
  124. void nec_lsp_sort( float x[], long order )
  125. {
  126.    long i, j;
  127.    float tmp;
  128.    for ( i = 0; i < order; i++ ) {
  129.       if ( x[i] < 0.0 || x[i] > (float)NEC_PAI ) {
  130.  x[i] = 0.05 + (float)NEC_PAI * (float)i / (float)order;
  131.       }
  132.    }
  133.    for ( i = (order-1); i > 0; i-- ) {
  134.       for ( j = 0; j < i; j++ ) {
  135.          if ( x[j] + nec_lsp_minwidth > x[j+1] ) {
  136.             tmp = 0.5 * (x[j] + x[j+1]);
  137.             x[j] = tmp - 0.51 * nec_lsp_minwidth;
  138.             x[j+1] = tmp + 0.51 * nec_lsp_minwidth;
  139.          }
  140.       }
  141.    }
  142. }