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

流媒体/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 Configuration Subroutines
  29.  *
  30.  * Ver1.0 96.12.16 T.Nomura(NEC)
  31.  * Ver2.0 97.03.17 T.Nomura(NEC)
  32.  */
  33. #include <stdio.h>
  34. #include <stdlib.h>
  35. #include <math.h>
  36. #include "buffersHandle.h"       /* handler, defines, enums */
  37. #include "bitstream.h"
  38. #include "nec_abs_const.h"
  39. #include "nec_abs_proto.h"
  40. #include "nec_exc_proto.h"
  41. #define NEC_MAX_PULSE 12
  42. #define NEC_MIN_PULSE 3
  43. static long nec_pulse_bit(long len, long num, long bit[]);
  44. static void nec_pulse_pos(long len, long num, long bit[], long pos[]);
  45. void nec_enh_mp_position(
  46.  long len, /* input */
  47.  long num[], /* input */
  48.  long idx[], /* input */
  49.  long num_enh, /* input */
  50.  long bit[], /* output */
  51.  long pos[] ) /* output */
  52. {
  53.    long i, j, k, l, m, n;
  54.    long max_num, pul_loc, min_ctr, min_chn;
  55.    long *bit_pos_org, *chn_pos_org, *chn_ctr, *ctr_tmp;
  56.    long *bit_pos, *chn_pos;
  57.    static long num_org = 10;
  58.    if((bit_pos_org = (long *)calloc (num_org, sizeof(long)))==NULL) {
  59.       printf("n Memory allocation error in nec_enh_mp_position n");
  60.       exit(1);
  61.    }
  62.    if((chn_pos_org = (long *)calloc (num_org*len, sizeof(long)))==NULL) {
  63.       printf("n Memory allocation error in nec_enh_mp_position n");
  64.       exit(1);
  65.    }
  66.    if((chn_ctr = (long *)calloc (num_org, sizeof(long)))==NULL) {
  67.       printf("n Memory allocation error in nec_enh_mp_position n");
  68.       exit(1);
  69.    }
  70.    if((ctr_tmp = (long *)calloc (num_org, sizeof(long)))==NULL) {
  71.       printf("n Memory allocation error in nec_enh_mp_position n");
  72.       exit(1);
  73.    }
  74.    nec_mp_position(len, num_org, bit_pos_org, chn_pos_org);
  75.    for ( i = 0; i < num_org; i++ ) chn_ctr[i] = 0;
  76.    max_num = 0;
  77.    for ( i = 0; i <= num_enh; i++ ) {
  78.       if ( num[i] > max_num ) max_num = num[i];
  79.    }
  80.    if((bit_pos = (long *)calloc (max_num, sizeof(long)))==NULL) {
  81.       printf("n Memory allocation error in nec_enh_mp_position n");
  82.       exit(1);
  83.    }
  84.    if((chn_pos = (long *)calloc (max_num*len, sizeof(long)))==NULL) {
  85.       printf("n Memory allocation error in nec_enh_mp_position n");
  86.       exit(1);
  87.    }
  88.    nec_mp_position(len, num[0], bit_pos, chn_pos);
  89.    for ( n = 0; n < num_enh; n++ ) {
  90.       for ( i = num[n]-1, k = 0; i >= 0; i-- ) {
  91.  pul_loc = 0;
  92.  for ( j = 0; j < bit_pos[i]; j++ ) {
  93.     pul_loc |= ((idx[n]>>k)&0x1)<<j;
  94.     k++;
  95.  }
  96.  pul_loc = chn_pos[i*len+pul_loc];
  97.  for ( l = 0; l < num_org; l++ ) {
  98.     for ( m = 0; m < (1<<bit_pos_org[l]); m++ ) {
  99.        if ( pul_loc == chn_pos_org[l*len+m] ) {
  100.   chn_ctr[l]++;
  101.   break;
  102.        }
  103.     }
  104.  }
  105.       }
  106.       for ( i = 0; i < num_org; i++ ) ctr_tmp[i] = chn_ctr[i];
  107.       for ( i = 0; i < num[n+1]; i++ ) {
  108.  min_ctr = len;
  109.  for ( j = 0; j < num_org; j++ ) {
  110.     if ( ctr_tmp[j] < min_ctr ) {
  111.        min_ctr = ctr_tmp[j];
  112.        min_chn = j;
  113.     }
  114.  }
  115.  ctr_tmp[min_chn] = len;
  116.  bit_pos[i] = bit_pos_org[min_chn];
  117.  for ( j = 0; j < (1<<bit_pos_org[min_chn]); j++ )
  118.     chn_pos[i*len+j] = chn_pos_org[min_chn*len+j];
  119.       }
  120.    }
  121.    for ( i = 0; i < num[num_enh]; i++ ) {
  122.       bit[i] = bit_pos[i];
  123.       for ( j = 0; j < (1<<bit[i]); j++ )
  124.  pos[i*len+j] = chn_pos[i*len+j];
  125.    }
  126.   FREE( bit_pos_org );
  127.   FREE( chn_pos_org );
  128.   FREE( chn_ctr );
  129.   FREE( ctr_tmp );
  130.   FREE( bit_pos );
  131.   FREE( chn_pos );
  132. }
  133. void nec_mp_config(
  134.    long len, /* input */
  135.    long tgt_bit, /* input */
  136.    long *pos_bit, /* output */
  137.    long *sgn_bit ) /* output */
  138. {
  139.    long num;
  140.    long tmp[NEC_MAX_PULSE], tbit, dbit, min_dbit, opt_bit;
  141.    if ( (len%2) != 0 ) {
  142.       printf("n Configuration error in nec_mp_config n");
  143.       exit(1);
  144.    }
  145.    min_dbit = 8*sizeof(long)-1;
  146.    opt_bit = -1;
  147.    for ( num = NEC_MIN_PULSE; num <= NEC_MAX_PULSE; num++ ) {
  148.       tbit = nec_pulse_bit( len, num, tmp );
  149.       if ( tbit == -1 ) continue;
  150.       tbit += num;
  151.       dbit = tgt_bit - tbit;
  152.       if ( dbit < 0 ) dbit = -dbit;
  153.       if ( dbit < min_dbit ) {
  154.  min_dbit = dbit;
  155.  opt_bit = tbit;
  156.  *pos_bit = tbit - num;
  157.  *sgn_bit = num;
  158.       }
  159.    }
  160.    if ( opt_bit == -1 ) {
  161.       printf("n Configuration error in nec_mp_config n");
  162.       exit(1);
  163.    }
  164. }
  165. void nec_mp_position(
  166.     long len,
  167.     long num,
  168.     long bit[],
  169.     long pos[] )
  170. {
  171.    long tbit;
  172.    tbit = nec_pulse_bit( len, num, bit );
  173.    if ( tbit == -1 ) {
  174.       printf("n Configuration error in nec_mp_position n");
  175.       exit(1);
  176.    }
  177.    nec_pulse_pos( len, num, bit, pos );
  178. }
  179. static long nec_pulse_bit(
  180.   long len,
  181.   long num,
  182.   long bit[] )
  183. {
  184.    long i, j, k, l;
  185.    long xnum, ynum;
  186.    long *tbit, *nbit;
  187.    long err_flg, ttl_bit;
  188.    if ( len < 2*num ) {
  189.       return -1;
  190.    }
  191.    if((tbit = (long *)calloc (len/2+1, sizeof(long)))==NULL) {
  192.       printf("n Memory allocation error in nec_pulse_bit n");
  193.       exit(1);
  194.    }
  195.    if((nbit = (long *)calloc (len/2+1, sizeof(long)))==NULL) {
  196.       printf("n Memory allocation error in nec_pulse_bit n");
  197.       exit(1);
  198.    }
  199.    xnum = len / 2;
  200.    for ( i = 0; i < xnum; i++ ) tbit[i] = 1;
  201.    tbit[xnum] = 0;
  202.    err_flg = 0;
  203.    while ( xnum > num ) {
  204.       tbit[xnum] = 0;
  205.       ynum = xnum;
  206.       for ( i = 0, j = 0; i < xnum; j++ ) {
  207.  if (  tbit[i] == tbit[i+1] ) {
  208.     nbit[j] = tbit[i]+1;
  209.     i = i + 2;
  210.     ynum--;
  211.     if ( ynum <= num ) {
  212.        for ( k = j+1, l = i; k < ynum; k++ ) {
  213.   nbit[k] = tbit[l++];
  214.        }
  215.        break;
  216.     }
  217.  } else {
  218.     nbit[j] = tbit[i];
  219.     i++;
  220.  }
  221.       }
  222.       if ( xnum == ynum ) {
  223.  err_flg = 1;
  224.  break;
  225.       }
  226.       xnum = ynum;
  227.       for ( i = 0; i < xnum; i++ ) tbit[i] = nbit[i];
  228.    }
  229.    if ( err_flg == 1 ) {
  230.      FREE(tbit);
  231.      FREE(nbit);
  232.       return -1;
  233.    }
  234.    ttl_bit = 0;
  235.    for ( i = 0; i < num; i++ ) {
  236.       ttl_bit += tbit[i];
  237.       bit[i] = tbit[i];
  238.    }
  239.   FREE(tbit);
  240.   FREE(nbit);
  241.    return ttl_bit;
  242. }
  243. static void nec_pulse_pos(
  244.   long len,
  245.   long num,
  246.   long bit[],
  247.   long pos[] )
  248. {
  249.    long i, j, k, l;
  250.    long *ch_num;
  251.    long mbit, dbit, num_p, mrg_ch, step;
  252.    if((ch_num = (long *)calloc (len/2, sizeof(long)))==NULL) {
  253.       printf("n Memory allocation error in nec_pulse_pos n");
  254.       exit(1);
  255.    }
  256.    mbit = 8*sizeof(long)-1;
  257.    for ( i = 0; i < num; i++ ) {
  258.       if ( bit[i] < mbit ) mbit = bit[i];
  259.    }
  260.    num_p = 1 << mbit;
  261.    step = len / num_p;
  262.    for ( i = 0; i < step; i++ ) ch_num[i] = -1;
  263.    for ( i = 0; i < num; i++ ) {
  264.       dbit = bit[i] - mbit;
  265.       mrg_ch = 1 << dbit;
  266.       for ( j = 0, k = 0; k < mrg_ch; ) {
  267.  if ( ch_num[j] == -1 ) {
  268.     ch_num[j] = i;
  269.     k++;
  270.     j += (long)((float)step/mrg_ch + 0.5);
  271.     j = j % step;
  272.  } else j++;
  273.       }
  274.    }
  275.    for ( i = 0; i < num; i++ ) {
  276.       l = 0;
  277.       for ( k = 0; k < step; k++ ) {
  278.  if ( i == ch_num[k] ) {
  279.     for ( j = 0; j < num_p; j++ ) {
  280.        pos[i*len+l] = k + step * j;
  281.        l++;
  282.     }
  283.  }
  284.       }
  285.    }
  286.   FREE(ch_num);
  287. }