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

流媒体/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.  * Excitation Generation 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_exc_proto.h"
  40. #define NEC_LAG_IDX_RNG 8
  41. void nec_bws_excitation_generation(
  42. float LpcCoef[], /* input */
  43. unsigned long  shape_indices[], /* input */
  44. unsigned long  gain_indices[], /* input */
  45. unsigned long  rms_index, /* input */
  46. unsigned long  signal_mode, /* input */
  47. float decoded_excitation[], /* output */
  48. float *adapt_gain, /* output */
  49. long  *acb_delay, /* output */
  50. long  lpc_order, /* configuration input */
  51. long  sbfrm_size,  /* configuration input */
  52. long  n_subframes, /* configuration input */
  53. long  frame_bit_allocation[], /* configuration input */
  54. long  num_shape_cbks, /* configuration input */
  55. long  num_gain_cbks, /* configuration input */
  56. float bws_mp_exc[],
  57. long acb_idx_8[],
  58. long postfilter
  59. )
  60. {
  61.    static float mem_past_exc[NEC_PITCH_MAX_MAXIMUM + NEC_PITCH_IFTAP16+1];
  62.    static float qxnorm[NEC_MAX_NSF];
  63.    static long  flag_mem = 0;
  64.    static long c_subframe, vu_flag;
  65.    static long op_lag_tmp[NEC_MAX_NSF];
  66.    long i;
  67.    float *acbexc, *mpexc, *excitation;
  68.    float g_ac, g_ec;
  69.    float        g_mp8,*mpexc_8;
  70.    long lag_idx, mp_pos_idx, mp_sgn_idx, ga_idx;
  71.    long integer_lag;
  72.    long lagbit, posbit, sgnbit, gainbit;
  73.    long num_pulse;
  74.    long         pitch_max;
  75.    long         ip16,fp16;
  76.    long         st_idx;
  77.    pitch_max = NEC_PITCH_MAX_FRQ16;
  78.    if (flag_mem == 0){
  79.       for ( i = 0; i < pitch_max+NEC_PITCH_IFTAP16+1; i++ ) {
  80.  mem_past_exc[i] = 0.0;
  81.       }
  82.       c_subframe = 0;
  83.       flag_mem = 1;
  84.    }
  85.    c_subframe = c_subframe % n_subframes;
  86.    if(c_subframe ==0){
  87.       for(i = 0; i < n_subframes; i++){
  88. if(acb_idx_8[i] <= 161){
  89.    ip16 = (17 + 2 * acb_idx_8[i] / NEC_PITCH_RSLTN) * 2;
  90.    fp16 = (2 * acb_idx_8[i]) % NEC_PITCH_RSLTN;
  91. } else if(acb_idx_8[i] <= 199){
  92.    ip16 = (71 + 3 * (acb_idx_8[i] - 162)/NEC_PITCH_RSLTN) * 2;
  93.    fp16 = (3 * (acb_idx_8[i] - 162)) % NEC_PITCH_RSLTN;
  94. } else if(acb_idx_8[i] <= 254){
  95.    ip16 = (90 + (acb_idx_8[i] - 200)) * 2;
  96.    fp16 = 0;
  97. } else{
  98.    ip16 = 0;
  99.    fp16 = 0;
  100. }
  101. if ( fp16 != 0 ) ip16++;
  102. if(ip16==0) op_lag_tmp[i] = NEC_PITCH_LIMIT_FRQ16;
  103. else        op_lag_tmp[i] = (ip16 - 32)*NEC_PITCH_RSLTN/2 + 2;
  104.       }
  105.    }
  106.    lagbit =frame_bit_allocation[c_subframe*(num_shape_cbks+num_gain_cbks)+0];
  107.    posbit =frame_bit_allocation[c_subframe*(num_shape_cbks+num_gain_cbks)+1];
  108.    sgnbit =frame_bit_allocation[c_subframe*(num_shape_cbks+num_gain_cbks)+2];
  109.    gainbit=frame_bit_allocation[c_subframe*(num_shape_cbks+num_gain_cbks)+3];
  110.    /* Frame Operation */
  111.    if(c_subframe==0) {
  112.       vu_flag = (long)signal_mode;
  113.       if ( vu_flag == 0 ) {
  114.  nec_bws_rms_dec(qxnorm, n_subframes,
  115.  (float)NEC_RMS_MAX_U, (float)NEC_MU_LAW_U,
  116.  (long)(NEC_BIT_RMS), (long)rms_index);
  117.       } else {
  118.  nec_bws_rms_dec(qxnorm, n_subframes,
  119.  (float)NEC_RMS_MAX_V, (float)NEC_MU_LAW_V,
  120.  (long)(NEC_BIT_RMS), (long)rms_index);
  121.       }
  122.    }
  123.    qxnorm[c_subframe] = qxnorm[c_subframe] * (float)sqrt((float)sbfrm_size);
  124.  
  125.    /*------ Memory Allocation ----------*/
  126.    if((acbexc = (float *)calloc (sbfrm_size, sizeof(float)))==NULL) {
  127.       printf("n Memory allocation error in nec_abs_exc_generation n");
  128.       exit(1);
  129.    }
  130.    if((mpexc = (float *)calloc (sbfrm_size, sizeof(float)))==NULL) {
  131.       printf("n Memory allocation error in nec_abs_exc_generation n");
  132.       exit(1);
  133.    }
  134.    if((excitation = (float *)calloc (sbfrm_size, sizeof(float)))==NULL) {
  135.       printf("n Memory allocation error in nec_abs_exc_generation n");
  136.       exit(1);
  137.    }
  138.    if((mpexc_8 = (float *)calloc(sbfrm_size,sizeof(float))) == NULL){
  139.       printf("n Memory allocation error in nec_abs_exc_generation n");
  140.       exit(1);
  141.    }
  142.  
  143.    /* decode INDICES */
  144.    lag_idx = (long)shape_indices[c_subframe*num_shape_cbks+0];
  145.    st_idx = op_lag_tmp[c_subframe] - NEC_LAG_IDX_RNG/2;
  146.    if(st_idx < 0) st_idx = 0;
  147.    if((st_idx + NEC_LAG_IDX_RNG -1) >= NEC_PITCH_LIMIT_FRQ16)
  148.       st_idx = NEC_PITCH_LIMIT_FRQ16 - NEC_LAG_IDX_RNG;
  149.    
  150.    if(op_lag_tmp[c_subframe]== NEC_PITCH_LIMIT_FRQ16)
  151.       lag_idx = NEC_PITCH_LIMIT_FRQ16;
  152.    else
  153.       lag_idx = lag_idx + st_idx;
  154.    mp_pos_idx = (long)shape_indices[c_subframe*num_shape_cbks+1];
  155.    mp_sgn_idx = (long)shape_indices[c_subframe*num_shape_cbks+2];
  156.    ga_idx = (long)gain_indices[c_subframe*num_gain_cbks+0];
  157.    /* Adaptive Code Book Decode */
  158.    nec_bws_acb_dec(acbexc,lag_idx,sbfrm_size,lagbit,mem_past_exc,&integer_lag);
  159.    /* Multi-Pulse Excitation Decode */
  160.    for ( i = 0; i < sbfrm_size/2; i++ ) {
  161.       mpexc_8[2*i] = bws_mp_exc[i];
  162.       mpexc_8[2*i+1] = 0.0;
  163.    }
  164.    num_pulse = sgnbit;
  165.    nec_bws_mp_dec(vu_flag,&g_ac, &g_ec, &g_mp8, qxnorm[c_subframe],
  166.   LpcCoef,
  167.   integer_lag, mp_pos_idx, mp_sgn_idx,
  168.   mpexc, acbexc, lpc_order, sbfrm_size,
  169.   num_pulse, gainbit, ga_idx );
  170.    for(i = 0; i < sbfrm_size; i++){
  171.       excitation[i] = g_ac * acbexc[i] + g_ec * mpexc[i] + g_mp8 * mpexc_8[i];
  172.    }
  173.    if ( postfilter ) {
  174.       nec_bws_pitch_enhancement(excitation,decoded_excitation, mem_past_exc,
  175. vu_flag, lag_idx, sbfrm_size );
  176.    } else {
  177.       for(i = 0; i < sbfrm_size; i++){
  178.  decoded_excitation[i] = excitation[i];
  179.       }
  180.    }
  181.    for(i = 0; i < pitch_max + NEC_PITCH_IFTAP16+1 - sbfrm_size; i++){
  182.       mem_past_exc[i] = mem_past_exc[i + sbfrm_size];
  183.    }
  184.    for(i = 0; i < sbfrm_size; i++){
  185.       mem_past_exc[pitch_max + NEC_PITCH_IFTAP16+1 - sbfrm_size + i]
  186.  = excitation[i];
  187.    }
  188.    *adapt_gain = g_ac;
  189.    *acb_delay = 0;
  190.    c_subframe++;
  191.    
  192.   FREE( acbexc );
  193.   FREE( mpexc );
  194.   FREE( mpexc_8 );
  195.   FREE( excitation );
  196. }