nec_bws_acb_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.  * Adaptive CB 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 "bitstream.h"
  36. #include "nec_abs_const.h"
  37. #include "nec_exc_proto.h"
  38. #define NEC_PITCH_COEF 0.4
  39. void nec_bws_acb_dec(
  40.  float ac[], /* output */
  41.  long ac_idx_opt, /* input */
  42.  long len_sf, /* configuration input */
  43.  long lagbit, /* configuration input */
  44.  float mem_past_exc[], /* input */
  45.  long *int_part /* output */
  46. )
  47. {
  48.    long i;
  49.    float *mem_ac, *zero;
  50.    long         acb_bit, pitch_max;
  51.    acb_bit = NEC_ACB_BIT_FRQ16;
  52.    pitch_max = NEC_PITCH_MAX_FRQ16;
  53.    /* Cofiguration Parameter Check */
  54.    if ( lagbit != acb_bit ) {
  55.       printf("n Configuration error in nec_dec_acb n");
  56.       exit(1);
  57.    }
  58.    /*------ Memory Allocation ----------*/
  59.    if ((zero =(float *)calloc(len_sf, sizeof(float))) == NULL) {
  60.       printf("n Memory allocation error in nec_dec_acb n");
  61.       exit(1);
  62.    }
  63.    if ((mem_ac =(float *)calloc(pitch_max+NEC_PITCH_IFTAP16+1+len_sf, sizeof(float))) == NULL) {
  64.       printf("n Memory allocation error in nec_dec_acb n");
  65.       exit(1);
  66.    }
  67.    for ( i = 0; i < pitch_max + NEC_PITCH_IFTAP16+1; i++)
  68.       mem_ac[i] = mem_past_exc[i];
  69.    for ( i = 0; i < len_sf; i++ ) zero[i] = 0.0;
  70.    *int_part = nec_acb_generation_16(ac_idx_opt,len_sf,mem_ac,zero,ac,1.0,0);
  71.   FREE( zero );
  72.   FREE( mem_ac );
  73. }
  74. void nec_bws_pitch_enhancement(
  75.    float exc[], /* input */
  76.    float enh_exc[], /* output */
  77.    float mem_pitch[], /* input */
  78.    long  vu_flag, /* input */
  79.    long  idx, /* input */
  80.    long  len_sf  /* configuration input */
  81. )
  82. {
  83.    long i, I_part;
  84.    float *mem_ac;
  85.    float ac, cc, gain_pf, gain_norm;
  86.    long         pitch_max, pitch_limit;
  87.    pitch_max = NEC_PITCH_MAX_FRQ16;
  88.    pitch_limit = NEC_PITCH_LIMIT_FRQ16;
  89.    if ((mem_ac =(float *)calloc(pitch_max+NEC_PITCH_IFTAP16+1+len_sf, sizeof(float))) == NULL) {
  90.       printf("n Memory allocation error in nec_pitch_enhancement n");
  91.       exit(1);
  92.    }
  93.    for (i = 0; i < pitch_max + NEC_PITCH_IFTAP16+1; i++)
  94.       mem_ac[i] = mem_pitch[i];
  95.    /*--- Pitch Enhancement ---*/
  96.    if ( idx == pitch_limit || vu_flag == 0 ) {
  97.       for (i = 0; i < len_sf; i++) enh_exc[i] = exc[i];
  98.    } else {
  99.       I_part = nec_acb_generation_16(idx,len_sf,mem_ac,exc,enh_exc,1.0,1);
  100.       ac = cc = 0.0;
  101.       for(i = 0; i < len_sf; i++){
  102. ac += enh_exc[i] * enh_exc[i];
  103. cc += exc[i] * enh_exc[i];
  104.       }
  105.       gain_pf = (ac != 0.0 ? cc/ac : 0.0);
  106.       if ( gain_pf > 1.0 ) gain_pf = 1.0;
  107.       if ( gain_pf < 0.0 ) gain_pf = 0.0;
  108.       gain_pf = NEC_PITCH_COEF * gain_pf;
  109.       gain_norm = 1.0/(1.0+gain_pf);
  110.       for(i = 0; i < len_sf; i++){
  111. enh_exc[i] = gain_norm * (exc[i] + gain_pf * enh_exc[i]);
  112.       }
  113.    }
  114.   FREE( mem_ac );
  115. }