g72x.c
上传用户:sy_wanhua
上传日期:2013-07-25
资源大小:3048k
文件大小:16k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

C/C++

  1. /*
  2.  * This source code is a product of Sun Microsystems, Inc. and is provided
  3.  * for unrestricted use.  Users may copy or modify this source code without
  4.  * charge.
  5.  *
  6.  * SUN SOURCE CODE IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING
  7.  * THE WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR
  8.  * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE.
  9.  *
  10.  * Sun source code is provided with no support and without any obligation on
  11.  * the part of Sun Microsystems, Inc. to assist in its use, correction,
  12.  * modification or enhancement.
  13.  *
  14.  * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE
  15.  * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY THIS SOFTWARE
  16.  * OR ANY PART THEREOF.
  17.  *
  18.  * In no event will Sun Microsystems, Inc. be liable for any lost revenue
  19.  * or profits or other special, indirect and consequential damages, even if
  20.  * Sun has been advised of the possibility of such damages.
  21.  *
  22.  * Sun Microsystems, Inc.
  23.  * 2550 Garcia Avenue
  24.  * Mountain View, California  94043
  25.  */
  26. /*
  27.  * g72x.c
  28.  *
  29.  * Common routines for G.721 and G.723 conversions.
  30.  */
  31. #include <stdlib.h>
  32. #include "g72x.h"
  33. static short power2[15] = {1, 2, 4, 8, 0x10, 0x20, 0x40, 0x80,
  34.                            0x100, 0x200, 0x400, 0x800, 0x1000, 0x2000, 0x4000};
  35. /*
  36.  * quan()
  37.  *
  38.  * quantizes the input val against the table of size short integers.
  39.  * It returns i if table[i - 1] <= val < table[i].
  40.  *
  41.  * Using linear search for simple coding.
  42.  */
  43. static int
  44. quan(
  45.     int val,
  46.     short *table,
  47.     int size)
  48. {
  49.     int i;
  50.     for (i = 0; i < size; i++)
  51.         if (val < *table++)
  52.             break;
  53.     return (i);
  54. }
  55. /*
  56.  * fmult()
  57.  *
  58.  * returns the integer product of the 14-bit integer "an" and
  59.  * "floating point" representation (4-bit exponent, 6-bit mantessa) "srn".
  60.  */
  61. static int
  62. fmult(
  63.     int an,
  64.     int srn)
  65. {
  66.     short anmag, anexp, anmant;
  67.     short wanexp,  /* wanmag, */ wanmant;
  68.     short retval;
  69.     anmag = (an > 0) ? an : (( -an) & 0x1FFF);
  70.     anexp = quan(anmag, power2, 15) - 6;
  71.     anmant = (anmag == 0) ? 32 :
  72.              (anexp >= 0) ? anmag >> anexp : anmag << -anexp;
  73.     wanexp = anexp + ((srn >> 6) & 0xF) - 13;
  74.     wanmant = (anmant * (srn & 077) + 0x30) >> 4;
  75.     retval = (wanexp >= 0) ? ((wanmant << wanexp) & 0x7FFF) :
  76.              (wanmant >> -wanexp);
  77.     return (((an ^ srn) < 0) ? -retval : retval);
  78. }
  79. /*
  80.  * g72x_init_state()
  81.  *
  82.  * This routine initializes and/or resets the g72x_state structure
  83.  * pointed to by 'state_ptr'.
  84.  * All the initial state values are specified in the CCITT G.721 document.
  85.  */
  86. void
  87. g72x_init_state(
  88.     struct g72x_state *state_ptr)
  89. {
  90.     int cnta;
  91.     state_ptr->yl = 34816;
  92.     state_ptr->yu = 544;
  93.     state_ptr->dms = 0;
  94.     state_ptr->dml = 0;
  95.     state_ptr->ap = 0;
  96.     for (cnta = 0; cnta < 2; cnta++)
  97.     {
  98.         state_ptr->a[cnta] = 0;
  99.         state_ptr->pk[cnta] = 0;
  100.         state_ptr->sr[cnta] = 32;
  101.     }
  102.     for (cnta = 0; cnta < 6; cnta++)
  103.     {
  104.         state_ptr->b[cnta] = 0;
  105.         state_ptr->dq[cnta] = 32;
  106.     }
  107.     state_ptr->td = 0;
  108. }
  109. /*
  110.  * predictor_zero()
  111.  *
  112.  * computes the estimated signal from 6-zero predictor.
  113.  *
  114.  */
  115. int
  116. predictor_zero(
  117.     struct g72x_state *state_ptr)
  118. {
  119.     int i;
  120.     int sezi;
  121.     sezi = fmult(state_ptr->b[0] >> 2, state_ptr->dq[0]);
  122.     for (i = 1; i < 6; i++) /* ACCUM */
  123.         sezi += fmult(state_ptr->b[i] >> 2, state_ptr->dq[i]);
  124.     return (sezi);
  125. }
  126. /*
  127.  * predictor_pole()
  128.  *
  129.  * computes the estimated signal from 2-pole predictor.
  130.  *
  131.  */
  132. int
  133. predictor_pole(
  134.     struct g72x_state *state_ptr)
  135. {
  136.     return (fmult(state_ptr->a[1] >> 2, state_ptr->sr[1]) +
  137.             fmult(state_ptr->a[0] >> 2, state_ptr->sr[0]));
  138. }
  139. /*
  140.  * step_size()
  141.  *
  142.  * computes the quantization step size of the adaptive quantizer.
  143.  *
  144.  */
  145. int
  146. step_size(
  147.     struct g72x_state *state_ptr)
  148. {
  149.     int y;
  150.     int dif ;
  151.     int al;
  152.     if (state_ptr->ap >= 256)
  153.         return (state_ptr->yu);
  154.     else
  155.     {
  156.         y = state_ptr->yl >> 6;
  157.         dif = state_ptr->yu - y;
  158.         al = state_ptr->ap >> 2;
  159.         if (dif > 0)
  160.             y += (dif * al) >> 6;
  161.         else if (dif < 0)
  162.             y += (dif * al + 0x3F) >> 6;
  163.         return (y);
  164.     }
  165. }
  166. /*
  167.  * quantize()
  168.  *
  169.  * Given a raw sample, 'd', of the difference signal and a
  170.  * quantization step size scale factor, 'y', this routine returns the
  171.  * ADPCM codeword to which that sample gets quantized.  The step
  172.  * size scale factor division operation is done in the log base 2 domain
  173.  * as a subtraction.
  174.  */
  175. int
  176. quantize(
  177.     int d,  /* Raw difference signal sample */
  178.     int y,  /* Step size multiplier */
  179.     short *table,  /* quantization table */
  180.     int size) /* table size of short integers */
  181. {
  182.     short dqm;  /* Magnitude of 'd' */
  183.     short exp;  /* Integer part of base 2 log of 'd' */
  184.     short mant;  /* Fractional part of base 2 log */
  185.     short dl;  /* Log of magnitude of 'd' */
  186.     short dln;  /* Step size scale factor normalized log */
  187.     int i;
  188.     /*
  189.      * LOG
  190.      *
  191.      * Compute base 2 log of 'd', and store in 'dl'.
  192.      */
  193.     dqm = abs(d);
  194.     exp = quan(dqm >> 1, power2, 15);
  195.     mant = ((dqm << 7) >> exp) & 0x7F;  /* Fractional portion. */
  196.     dl = (exp << 7) + mant;
  197.     /*
  198.      * SUBTB
  199.      *
  200.      * "Divide" by step size multiplier.
  201.      */
  202.     dln = dl - (y >> 2);
  203.     /*
  204.      * QUAN
  205.      *
  206.      * Obtain codword i for 'd'.
  207.      */
  208.     i = quan(dln, table, size);
  209.     if (d < 0) /* take 1's complement of i */
  210.         return ((size << 1) + 1 - i);
  211.     else if (i == 0) /* take 1's complement of 0 */
  212.         return ((size << 1) + 1);  /* new in 1988 */
  213.     else
  214.         return (i);
  215. }
  216. /*
  217.  * reconstruct()
  218.  *
  219.  * Returns reconstructed difference signal 'dq' obtained from
  220.  * codeword 'i' and quantization step size scale factor 'y'.
  221.  * Multiplication is performed in log base 2 domain as addition.
  222.  */
  223. int
  224. reconstruct(
  225.     int sign,  /* 0 for non-negative value */
  226.     int dqln,  /* G.72x codeword */
  227.     int y) /* Step size multiplier */
  228. {
  229.     short dql;  /* Log of 'dq' magnitude */
  230.     short dex;  /* Integer part of log */
  231.     short dqt;
  232.     short dq;  /* Reconstructed difference signal sample */
  233.     dql = dqln + (y >> 2);  /* ADDA */
  234.     if (dql < 0)
  235.     {
  236.         return ((sign) ? -0x8000 : 0);
  237.     }
  238.     else
  239.     { /* ANTILOG */
  240.         dex = (dql >> 7) & 15;
  241.         dqt = 128 + (dql & 127);
  242.         dq = (dqt << 7) >> (14 - dex);
  243.         return ((sign) ? (dq - 0x8000) : dq);
  244.     }
  245. }
  246. /*
  247.  * update()
  248.  *
  249.  * updates the state variables for each output code
  250.  */
  251. void
  252. update(
  253.     int code_size,  /* distinguish 723_40 with others */
  254.     int y,  /* quantizer step size */
  255.     int wi,  /* scale factor multiplier */
  256.     int fi,  /* for long/short term energies */
  257.     int dq,  /* quantized prediction difference */
  258.     int sr,  /* reconstructed signal */
  259.     int dqsez,  /* difference from 2-pole predictor */
  260.     struct g72x_state *state_ptr) /* coder state pointer */
  261. {
  262.     int cnt;
  263.     short mag, exp/* , mant */; /* Adaptive predictor, FLOAT A */
  264.     short a2p;  /* LIMC */
  265.     short a1ul;  /* UPA1 */
  266.     short /* ua2, */ pks1;  /* UPA2 */
  267.     short /* uga2a, uga2b */ fa1;
  268.     char tr;  /* tone/transition detector */
  269.     short ylint, thr2, dqthr;
  270.     short ylfrac, thr1;
  271.     short pk0;
  272.     pk0 = (dqsez < 0) ? 1 : 0;  /* needed in updating predictor poles */
  273.     mag = dq & 0x7FFF;  /* prediction difference magnitude */
  274.     /* TRANS */
  275.     ylint = state_ptr->yl >> 15;  /* exponent part of yl */
  276.     ylfrac = (state_ptr->yl >> 10) & 0x1F;  /* fractional part of yl */
  277.     thr1 = (32 + ylfrac) << ylint;  /* threshold */
  278.     thr2 = (ylint > 9) ? 31 << 10 : thr1;  /* limit thr2 to 31 << 10 */
  279.     dqthr = (thr2 + (thr2 >> 1)) >> 1;  /* dqthr = 0.75 * thr2 */
  280.     if (state_ptr->td == 0) /* signal supposed voice */
  281.         tr = 0;
  282.     else if (mag <= dqthr) /* supposed data, but small mag */
  283.         tr = 0;  /* treated as voice */
  284.     else /* signal is data (modem) */
  285.         tr = 1;
  286.     /*
  287.      * Quantizer scale factor adaptation.
  288.      */
  289.     /* FUNCTW & FILTD & DELAY */
  290.     /* update non-steady state step size multiplier */
  291.     state_ptr->yu = y + ((wi - y) >> 5);
  292.     /* LIMB */
  293.     if (state_ptr->yu < 544) /* 544 <= yu <= 5120 */
  294.         state_ptr->yu = 544;
  295.     else if (state_ptr->yu > 5120)
  296.         state_ptr->yu = 5120;
  297.     /* FILTE & DELAY */
  298.     /* update steady state step size multiplier */
  299.     state_ptr->yl += state_ptr->yu + (( -state_ptr->yl) >> 6);
  300.     /*
  301.      * Adaptive predictor coefficients.
  302.      */
  303.     if (tr == 1)
  304.     { /* reset a's and b's for modem signal */
  305.         state_ptr->a[0] = 0;
  306.         state_ptr->a[1] = 0;
  307.         state_ptr->b[0] = 0;
  308.         state_ptr->b[1] = 0;
  309.         state_ptr->b[2] = 0;
  310.         state_ptr->b[3] = 0;
  311.         state_ptr->b[4] = 0;
  312.         state_ptr->b[5] = 0;
  313.     }
  314.     else
  315.     { /* update a's and b's */
  316.         pks1 = pk0 ^ state_ptr->pk[0];  /* UPA2 */
  317.         /* update predictor pole a[1] */
  318.         a2p = state_ptr->a[1] - (state_ptr->a[1] >> 7);
  319.         if (dqsez != 0)
  320.         {
  321.             fa1 = (pks1) ? state_ptr->a[0] : -state_ptr->a[0];
  322.             if (fa1 < -8191) /* a2p = function of fa1 */
  323.                 a2p -= 0x100;
  324.             else if (fa1 > 8191)
  325.                 a2p += 0xFF;
  326.             else
  327.                 a2p += fa1 >> 5;
  328.             if (pk0 ^ state_ptr->pk[1])
  329.                 /* LIMC */
  330.                 if (a2p <= -12160)
  331.                     a2p = -12288;
  332.                 else if (a2p >= 12416)
  333.                     a2p = 12288;
  334.                 else
  335.                     a2p -= 0x80;
  336.             else if (a2p <= -12416)
  337.                 a2p = -12288;
  338.             else if (a2p >= 12160)
  339.                 a2p = 12288;
  340.             else
  341.                 a2p += 0x80;
  342.         }
  343.         /* TRIGB & DELAY */
  344.         state_ptr->a[1] = a2p;
  345.         /* UPA1 */
  346.         /* update predictor pole a[0] */
  347.         state_ptr->a[0] -= state_ptr->a[0] >> 8;
  348.         if (dqsez != 0)
  349.         {
  350.             if (pks1 == 0)
  351.                 state_ptr->a[0] += 192;
  352.             else
  353.                 state_ptr->a[0] -= 192;
  354.         }
  355.         /* LIMD */
  356.         a1ul = 15360 - a2p;
  357.         if (state_ptr->a[0] < -a1ul)
  358.             state_ptr->a[0] = -a1ul;
  359.         else if (state_ptr->a[0] > a1ul)
  360.             state_ptr->a[0] = a1ul;
  361.         /* UPB : update predictor zeros b[6] */
  362.         for (cnt = 0; cnt < 6; cnt++)
  363.         {
  364.             if (code_size == 5) /* for 40Kbps G.723 */
  365.                 state_ptr->b[cnt] -= state_ptr->b[cnt] >> 9;
  366.             else /* for G.721 and 24Kbps G.723 */
  367.                 state_ptr->b[cnt] -= state_ptr->b[cnt] >> 8;
  368.             if (dq & 0x7FFF)
  369.             { /* XOR */
  370.                 if ((dq ^ state_ptr->dq[cnt]) >= 0)
  371.                     state_ptr->b[cnt] += 128;
  372.                 else
  373.                     state_ptr->b[cnt] -= 128;
  374.             }
  375.         }
  376.     }
  377.     for (cnt = 5; cnt > 0; cnt--)
  378.         state_ptr->dq[cnt] = state_ptr->dq[cnt - 1];
  379.     /* FLOAT A : convert dq[0] to 4-bit exp, 6-bit mantissa f.p. */
  380.     if (mag == 0)
  381.     {
  382.         state_ptr->dq[0] = (dq >= 0) ? 0x20 : 0xFC20;
  383.     }
  384.     else
  385.     {
  386.         exp = quan(mag, power2, 15);
  387.         state_ptr->dq[0] = (dq >= 0) ?
  388.                            (exp << 6) + ((mag << 6) >> exp) :
  389.                            (exp << 6) + ((mag << 6) >> exp) - 0x400;
  390.     }
  391.     state_ptr->sr[1] = state_ptr->sr[0];
  392.     /* FLOAT B : convert sr to 4-bit exp., 6-bit mantissa f.p. */
  393.     if (sr == 0)
  394.     {
  395.         state_ptr->sr[0] = 0x20;
  396.     }
  397.     else if (sr > 0)
  398.     {
  399.         exp = quan(sr, power2, 15);
  400.         state_ptr->sr[0] = (exp << 6) + ((sr << 6) >> exp);
  401.     }
  402.     else if (sr > -32768)
  403.     {
  404.         mag = -sr;
  405.         exp = quan(mag, power2, 15);
  406.         state_ptr->sr[0] = (exp << 6) + ((mag << 6) >> exp) - 0x400;
  407.     }
  408.     else
  409.         state_ptr->sr[0] = 0xFC20;
  410.     /* DELAY A */
  411.     state_ptr->pk[1] = state_ptr->pk[0];
  412.     state_ptr->pk[0] = pk0;
  413.     /* TONE */
  414.     if (tr == 1) /* this sample has been treated as data */
  415.         state_ptr->td = 0;  /* next one will be treated as voice */
  416.     else if (a2p < -11776) /* small sample-to-sample correlation */
  417.         state_ptr->td = 1;  /* signal may be data */
  418.     else /* signal is voice */
  419.         state_ptr->td = 0;
  420.     /*
  421.      * Adaptation speed control.
  422.      */
  423.     state_ptr->dms += (fi - state_ptr->dms) >> 5;  /* FILTA */
  424.     state_ptr->dml += (((fi << 2) - state_ptr->dml) >> 7);  /* FILTB */
  425.     if (tr == 1)
  426.         state_ptr->ap = 256;
  427.     else if (y < 1536) /* SUBTC */
  428.         state_ptr->ap += (0x200 - state_ptr->ap) >> 4;
  429.     else if (state_ptr->td == 1)
  430.         state_ptr->ap += (0x200 - state_ptr->ap) >> 4;
  431.     else if (abs((state_ptr->dms << 2) - state_ptr->dml) >=
  432.              (state_ptr->dml >> 3))
  433.         state_ptr->ap += (0x200 - state_ptr->ap) >> 4;
  434.     else
  435.         state_ptr->ap += ( -state_ptr->ap) >> 4;
  436. }
  437. /*
  438.  * tandem_adjust(sr, se, y, i, sign)
  439.  *
  440.  * At the end of ADPCM decoding, it simulates an encoder which may be receiving
  441.  * the output of this decoder as a tandem process. If the output of the
  442.  * simulated encoder differs from the input to this decoder, the decoder output
  443.  * is adjusted by one level of A-law or u-law codes.
  444.  *
  445.  * Input:
  446.  * sr decoder output linear PCM sample,
  447.  * se predictor estimate sample,
  448.  * y quantizer step size,
  449.  * i decoder input code,
  450.  * sign sign bit of code i
  451.  *
  452.  * Return:
  453.  * adjusted A-law or u-law compressed sample.
  454.  */
  455. int
  456. tandem_adjust_alaw(
  457.     int sr,  /* decoder output linear PCM sample */
  458.     int se,  /* predictor estimate sample */
  459.     int y,  /* quantizer step size */
  460.     int i,  /* decoder input code */
  461.     int sign,
  462.     short *qtab)
  463. {
  464.     unsigned char sp;  /* A-law compressed 8-bit code */
  465.     short dx;  /* prediction error */
  466.     char id;  /* quantized prediction error */
  467.     int sd;  /* adjusted A-law decoded sample value */
  468.     int im;  /* biased magnitude of i */
  469.     int imx;  /* biased magnitude of id */
  470.     if (sr <= -32768)
  471.         sr = -1;
  472.     sp = linear2alaw((sr >> 1) << 3);  /* short to A-law compression */
  473.     dx = (alaw2linear(sp) >> 2) - se;  /* 16-bit prediction error */
  474.     id = quantize(dx, y, qtab, sign - 1);
  475.     if (id == i)
  476.     { /* no adjustment on sp */
  477.         return (sp);
  478.     }
  479.     else
  480.     { /* sp adjustment needed */
  481.         /* ADPCM codes : 8, 9, ... F, 0, 1, ... , 6, 7 */
  482.         im = i ^ sign;  /* 2's complement to biased unsigned */
  483.         imx = id ^ sign;
  484.         if (imx > im)
  485.         { /* sp adjusted to next lower value */
  486.             if (sp & 0x80)
  487.             {
  488.                 sd = (sp == 0xD5) ? 0x55 :
  489.                      ((sp ^ 0x55) - 1) ^ 0x55;
  490.             }
  491.             else
  492.             {
  493.                 sd = (sp == 0x2A) ? 0x2A :
  494.                      ((sp ^ 0x55) + 1) ^ 0x55;
  495.             }
  496.         }
  497.         else
  498.         { /* sp adjusted to next higher value */
  499.             if (sp & 0x80)
  500.                 sd = (sp == 0xAA) ? 0xAA :
  501.                      ((sp ^ 0x55) + 1) ^ 0x55;
  502.             else
  503.                 sd = (sp == 0x55) ? 0xD5 :
  504.                      ((sp ^ 0x55) - 1) ^ 0x55;
  505.         }
  506.         return (sd);
  507.     }
  508. }
  509. int
  510. tandem_adjust_ulaw(
  511.     int sr,  /* decoder output linear PCM sample */
  512.     int se,  /* predictor estimate sample */
  513.     int y,  /* quantizer step size */
  514.     int i,  /* decoder input code */
  515.     int sign,
  516.     short *qtab)
  517. {
  518.     unsigned char sp;  /* u-law compressed 8-bit code */
  519.     short dx;  /* prediction error */
  520.     char id;  /* quantized prediction error */
  521.     int sd;  /* adjusted u-law decoded sample value */
  522.     int im;  /* biased magnitude of i */
  523.     int imx;  /* biased magnitude of id */
  524.     if (sr <= -32768)
  525.         sr = 0;
  526.     sp = linear2ulaw(sr << 2);  /* short to u-law compression */
  527.     dx = (ulaw2linear(sp) >> 2) - se;  /* 16-bit prediction error */
  528.     id = quantize(dx, y, qtab, sign - 1);
  529.     if (id == i)
  530.     {
  531.         return (sp);
  532.     }
  533.     else
  534.     {
  535.         /* ADPCM codes : 8, 9, ... F, 0, 1, ... , 6, 7 */
  536.         im = i ^ sign;  /* 2's complement to biased unsigned */
  537.         imx = id ^ sign;
  538.         if (imx > im)
  539.         { /* sp adjusted to next lower value */
  540.             if (sp & 0x80)
  541.                 sd = (sp == 0xFF) ? 0x7E : sp + 1;
  542.             else
  543.                 sd = (sp == 0) ? 0 : sp - 1;
  544.         }
  545.         else
  546.         { /* sp adjusted to next higher value */
  547.             if (sp & 0x80)
  548.                 sd = (sp == 0x80) ? 0x80 : sp - 1;
  549.             else
  550.                 sd = (sp == 0x7F) ? 0xFE : sp + 1;
  551.         }
  552.         return (sd);
  553.     }
  554. }