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

流媒体/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.  * Multi-Pulse Excitation Decoding Subroutines
  29.  *
  30.  * Ver1.0 96.12.16 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_const.h"
  38. #include "nec_abs_proto.h"
  39. #include "nec_exc_proto.h"
  40. void nec_dec_mp(
  41. long vu_flag, /* input */
  42. float *g_ac, /* output */
  43. float *g_ec, /* output */
  44. float qxnorm, /* input */
  45. float alpha[], /* input */
  46. long I_part, /* input */
  47. long pos_idx, /* input */
  48. long sgn_idx, /* input */
  49. float comb_exc[], /* output */
  50. float ac[], /* input */
  51. long lpc_order, /* configuration input */
  52. long len_sf, /* configuration input */
  53. long num_pulse, /* configuration input */
  54. long gainbit, /* configuration input */
  55. long ga_idx ) /* input */
  56. {
  57.    long i, j, k;
  58.    long *pul_loc;
  59.    long *bit_pos, *num_pos, *chn_pos;
  60.    float *tmp_exc, *sgn;
  61.    /*------- Set Multi-Pulse Configuration -------*/
  62.    if((bit_pos = (long *)calloc (num_pulse, sizeof(long)))==NULL) {
  63.       printf("n Memory allocation error in nec_enc_mp n");
  64.       exit(1);
  65.    }
  66.    if((num_pos = (long *)calloc (num_pulse, sizeof(long)))==NULL) {
  67.       printf("n Memory allocation error in nec_enc_mp n");
  68.       exit(1);
  69.    }
  70.    if((chn_pos = (long *)calloc (num_pulse*len_sf, sizeof(long)))==NULL) {
  71.       printf("n Memory allocation error in nec_enc_mp n");
  72.       exit(1);
  73.    }
  74.    nec_mp_position(len_sf, num_pulse, bit_pos, chn_pos);
  75.    for ( i = 0; i < num_pulse; i++ ) num_pos[i] = 1 << bit_pos[i];
  76.    /*---------- Multi-Pulse Decode ----------*/
  77.    if((tmp_exc = (float *)calloc (len_sf, sizeof(float)))==NULL) {
  78.       printf("n Memory allocation error in nec_dec_mp n");
  79.       exit(1);
  80.    }
  81.    if((sgn = (float *)calloc (num_pulse, sizeof(float)))==NULL) {
  82.       printf("n Memory allocation error in nec_dec_mp n");
  83.       exit(1);
  84.    }
  85.    if((pul_loc = (long *)calloc (num_pulse, sizeof(long)))==NULL) {
  86.       printf("n Memory allocation error in nec_dec_mp n");
  87.       exit(1);
  88.    }
  89.    for ( i = num_pulse-1, k = 0; i >= 0; i-- ) {
  90.       pul_loc[i] = 0;
  91.       for ( j = 0; j < bit_pos[i]; j++ ) {
  92.  pul_loc[i] |= ((pos_idx>>k)&0x1)<<j;
  93.  k++;
  94.       }
  95.       sgn[i] = 1.0;
  96.       if ( (sgn_idx&0x1) == 1 ) sgn[i] = -1.0;
  97.       sgn_idx = sgn_idx >> 1;
  98.       pul_loc[i] = chn_pos[i*len_sf+pul_loc[i]];
  99.    }
  100.    for (i = 0; i < len_sf; i++)
  101.       tmp_exc[i] = 0.0;
  102.    
  103.    for (i = 0; i < num_pulse; i++) {
  104.       tmp_exc[pul_loc[i]] = sgn[i];
  105.    }
  106.    nec_comb_filt(tmp_exc, comb_exc, len_sf, I_part, vu_flag);
  107.    nec_dec_gain( vu_flag, qxnorm, alpha, ac, comb_exc,
  108. len_sf, ga_idx, lpc_order, gainbit, g_ac, g_ec );
  109.   FREE( bit_pos );
  110.   FREE( num_pos );
  111.    FREE( chn_pos );
  112.    FREE( pul_loc );
  113.    FREE( tmp_exc );
  114.    FREE( sgn );
  115. }