ac3enc.c
上传用户:wstnjxml
上传日期:2014-04-03
资源大小:7248k
文件大小:43k
源码类别:

Windows CE

开发平台:

C/C++

  1. /*
  2.  * The simplest AC3 encoder
  3.  * Copyright (c) 2000 Fabrice Bellard.
  4.  *
  5.  * This library is free software; you can redistribute it and/or
  6.  * modify it under the terms of the GNU Lesser General Public
  7.  * License as published by the Free Software Foundation; either
  8.  * version 2 of the License, or (at your option) any later version.
  9.  *
  10.  * This library is distributed in the hope that it will be useful,
  11.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  13.  * Lesser General Public License for more details.
  14.  *
  15.  * You should have received a copy of the GNU Lesser General Public
  16.  * License along with this library; if not, write to the Free Software
  17.  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  18.  */
  19. /**
  20.  * @file ac3enc.c
  21.  * The simplest AC3 encoder.
  22.  */
  23. //#define DEBUG
  24. //#define DEBUG_BITALLOC
  25. #include "avcodec.h"
  26. #include "bitstream.h"
  27. #include "ac3.h"
  28. typedef struct AC3EncodeContext {
  29.     PutBitContext pb;
  30.     int nb_channels;
  31.     int nb_all_channels;
  32.     int lfe_channel;
  33.     int bit_rate;
  34.     unsigned int sample_rate;
  35.     unsigned int bsid;
  36.     unsigned int frame_size_min; /* minimum frame size in case rounding is necessary */
  37.     unsigned int frame_size; /* current frame size in words */
  38.     int halfratecod;
  39.     unsigned int frmsizecod;
  40.     unsigned int fscod; /* frequency */
  41.     unsigned int acmod;
  42.     int lfe;
  43.     unsigned int bsmod;
  44.     short last_samples[AC3_MAX_CHANNELS][256];
  45.     unsigned int chbwcod[AC3_MAX_CHANNELS];
  46.     int nb_coefs[AC3_MAX_CHANNELS];
  47.     
  48.     /* bitrate allocation control */
  49.     int sgaincod, sdecaycod, fdecaycod, dbkneecod, floorcod; 
  50.     AC3BitAllocParameters bit_alloc;
  51.     int csnroffst;
  52.     int fgaincod[AC3_MAX_CHANNELS];
  53.     int fsnroffst[AC3_MAX_CHANNELS];
  54.     /* mantissa encoding */
  55.     int mant1_cnt, mant2_cnt, mant4_cnt;
  56. } AC3EncodeContext;
  57. #include "ac3tab.h"
  58. #define MDCT_NBITS 9
  59. #define N         (1 << MDCT_NBITS)
  60. /* new exponents are sent if their Norm 1 exceed this number */
  61. #define EXP_DIFF_THRESHOLD 1000
  62. static void fft_init(int ln);
  63. static void ac3_crc_init(void);
  64. static inline int16_t fix15(float a)
  65. {
  66.     int v;
  67.     v = (int)(a * (float)(1 << 15));
  68.     if (v < -32767)
  69.         v = -32767;
  70.     else if (v > 32767) 
  71.         v = 32767;
  72.     return v;
  73. }
  74. static inline int calc_lowcomp1(int a, int b0, int b1)
  75. {
  76.     if ((b0 + 256) == b1) {
  77.         a = 384 ;
  78.     } else if (b0 > b1) { 
  79.         a = a - 64;
  80.         if (a < 0) a=0;
  81.     }
  82.     return a;
  83. }
  84. static inline int calc_lowcomp(int a, int b0, int b1, int bin)
  85. {
  86.     if (bin < 7) {
  87.         if ((b0 + 256) == b1) {
  88.             a = 384 ;
  89.         } else if (b0 > b1) { 
  90.             a = a - 64;
  91.             if (a < 0) a=0;
  92.         }
  93.     } else if (bin < 20) {
  94.         if ((b0 + 256) == b1) {
  95.             a = 320 ;
  96.         } else if (b0 > b1) {
  97.             a= a - 64;
  98.             if (a < 0) a=0;
  99.         }
  100.     } else {
  101.         a = a - 128;
  102.         if (a < 0) a=0;
  103.     }
  104.     return a;
  105. }
  106. /* AC3 bit allocation. The algorithm is the one described in the AC3
  107.    spec. */
  108. void ac3_parametric_bit_allocation(AC3BitAllocParameters *s, uint8_t *bap,
  109.                                    int8_t *exp, int start, int end,
  110.                                    int snroffset, int fgain, int is_lfe,
  111.                                    int deltbae,int deltnseg, 
  112.                                    uint8_t *deltoffst, uint8_t *deltlen, uint8_t *deltba)
  113. {
  114.     int bin,i,j,k,end1,v,v1,bndstrt,bndend,lowcomp,begin;
  115.     int fastleak,slowleak,address,tmp;
  116.     int16_t psd[256]; /* scaled exponents */
  117.     int16_t bndpsd[50]; /* interpolated exponents */
  118.     int16_t excite[50]; /* excitation */
  119.     int16_t mask[50];   /* masking value */
  120.     /* exponent mapping to PSD */
  121.     for(bin=start;bin<end;bin++) {
  122.         psd[bin]=(3072 - (exp[bin] << 7));
  123.     }
  124.     /* PSD integration */
  125.     j=start;
  126.     k=masktab[start];
  127.     do {
  128.         v=psd[j];
  129.         j++;
  130.         end1=bndtab[k+1];
  131.         if (end1 > end) end1=end;
  132.         for(i=j;i<end1;i++) {
  133.             int c,adr;
  134.             /* logadd */
  135.             v1=psd[j];
  136.             c=v-v1;
  137.             if (c >= 0) {
  138.                 adr=c >> 1;
  139.                 if (adr > 255) adr=255;
  140.                 v=v + latab[adr];
  141.             } else {
  142.                 adr=(-c) >> 1;
  143.                 if (adr > 255) adr=255;
  144.                 v=v1 + latab[adr];
  145.             }
  146.             j++;
  147.         }
  148.         bndpsd[k]=v;
  149.         k++;
  150.     } while (end > bndtab[k]);
  151.     /* excitation function */
  152.     bndstrt = masktab[start];
  153.     bndend = masktab[end-1] + 1;
  154.     
  155.     if (bndstrt == 0) {
  156.         lowcomp = 0;
  157.         lowcomp = calc_lowcomp1(lowcomp, bndpsd[0], bndpsd[1]) ;
  158.         excite[0] = bndpsd[0] - fgain - lowcomp ;
  159.         lowcomp = calc_lowcomp1(lowcomp, bndpsd[1], bndpsd[2]) ;
  160.         excite[1] = bndpsd[1] - fgain - lowcomp ;
  161.         begin = 7 ;
  162.         for (bin = 2; bin < 7; bin++) {
  163.             if (!(is_lfe && bin == 6))
  164.                 lowcomp = calc_lowcomp1(lowcomp, bndpsd[bin], bndpsd[bin+1]) ;
  165.             fastleak = bndpsd[bin] - fgain ;
  166.             slowleak = bndpsd[bin] - s->sgain ;
  167.             excite[bin] = fastleak - lowcomp ;
  168.             if (!(is_lfe && bin == 6)) {
  169.                 if (bndpsd[bin] <= bndpsd[bin+1]) {
  170.                     begin = bin + 1 ;
  171.                     break ;
  172.                 }
  173.             }
  174.         }
  175.     
  176.         end1=bndend;
  177.         if (end1 > 22) end1=22;
  178.     
  179.         for (bin = begin; bin < end1; bin++) {
  180.             if (!(is_lfe && bin == 6))
  181.                 lowcomp = calc_lowcomp(lowcomp, bndpsd[bin], bndpsd[bin+1], bin) ;
  182.         
  183.             fastleak -= s->fdecay ;
  184.             v = bndpsd[bin] - fgain;
  185.             if (fastleak < v) fastleak = v;
  186.         
  187.             slowleak -= s->sdecay ;
  188.             v = bndpsd[bin] - s->sgain;
  189.             if (slowleak < v) slowleak = v;
  190.         
  191.             v=fastleak - lowcomp;
  192.             if (slowleak > v) v=slowleak;
  193.         
  194.             excite[bin] = v;
  195.         }
  196.         begin = 22;
  197.     } else {
  198.         /* coupling channel */
  199.         begin = bndstrt;
  200.         
  201.         fastleak = (s->cplfleak << 8) + 768;
  202.         slowleak = (s->cplsleak << 8) + 768;
  203.     }
  204.     for (bin = begin; bin < bndend; bin++) {
  205.         fastleak -= s->fdecay ;
  206.         v = bndpsd[bin] - fgain;
  207.         if (fastleak < v) fastleak = v;
  208.         slowleak -= s->sdecay ;
  209.         v = bndpsd[bin] - s->sgain;
  210.         if (slowleak < v) slowleak = v;
  211.         v=fastleak;
  212.         if (slowleak > v) v = slowleak;
  213.         excite[bin] = v;
  214.     }
  215.     /* compute masking curve */
  216.     for (bin = bndstrt; bin < bndend; bin++) {
  217.         v1 = excite[bin];
  218.         tmp = s->dbknee - bndpsd[bin];
  219.         if (tmp > 0) {
  220.             v1 += tmp >> 2;
  221.         }
  222.         v=hth[bin >> s->halfratecod][s->fscod];
  223.         if (v1 > v) v=v1;
  224.         mask[bin] = v;
  225.     }
  226.     /* delta bit allocation */
  227.     if (deltbae == 0 || deltbae == 1) {
  228.         int band, seg, delta;
  229.         band = 0 ;
  230.         for (seg = 0; seg < deltnseg; seg++) {
  231.             band += deltoffst[seg] ;
  232.             if (deltba[seg] >= 4) {
  233.                 delta = (deltba[seg] - 3) << 7;
  234.             } else {
  235.                 delta = (deltba[seg] - 4) << 7;
  236.             }
  237.             for (k = 0; k < deltlen[seg]; k++) {
  238.                 mask[band] += delta ;
  239.                 band++ ;
  240.             }
  241.         }
  242.     }
  243.     /* compute bit allocation */
  244.     
  245.     i = start ;
  246.     j = masktab[start] ;
  247.     do {
  248.         v=mask[j];
  249.         v -= snroffset ;
  250.         v -= s->floor ;
  251.         if (v < 0) v = 0;
  252.         v &= 0x1fe0 ;
  253.         v += s->floor ;
  254.         end1=bndtab[j] + bndsz[j];
  255.         if (end1 > end) end1=end;
  256.         for (k = i; k < end1; k++) {
  257.             address = (psd[i] - v) >> 5 ;
  258.             if (address < 0) address=0;
  259.             else if (address > 63) address=63;
  260.             bap[i] = baptab[address];
  261.             i++;
  262.         }
  263.     } while (end > bndtab[j++]) ;
  264. }
  265. typedef struct IComplex {
  266.     short re,im;
  267. } IComplex;
  268. static void fft_init(int ln)
  269. {
  270.     int i, j, m, n;
  271.     float alpha;
  272.     n = 1 << ln;
  273.     for(i=0;i<(n/2);i++) {
  274.         alpha = 2 * M_PI * (float)i / (float)n;
  275.         costab[i] = fix15(cos(alpha));
  276.         sintab[i] = fix15(sin(alpha));
  277.     }
  278.     for(i=0;i<n;i++) {
  279.         m=0;
  280.         for(j=0;j<ln;j++) {
  281.             m |= ((i >> j) & 1) << (ln-j-1);
  282.         }
  283.         fft_rev[i]=m;
  284.     }
  285. }
  286. /* butter fly op */
  287. #define BF(pre, pim, qre, qim, pre1, pim1, qre1, qim1) 
  288. {
  289.   int ax, ay, bx, by;
  290.   bx=pre1;
  291.   by=pim1;
  292.   ax=qre1;
  293.   ay=qim1;
  294.   pre = (bx + ax) >> 1;
  295.   pim = (by + ay) >> 1;
  296.   qre = (bx - ax) >> 1;
  297.   qim = (by - ay) >> 1;
  298. }
  299. #define MUL16(a,b) ((a) * (b))
  300. #define CMUL(pre, pim, are, aim, bre, bim) 
  301. {
  302.    pre = (MUL16(are, bre) - MUL16(aim, bim)) >> 15;
  303.    pim = (MUL16(are, bim) + MUL16(bre, aim)) >> 15;
  304. }
  305. /* do a 2^n point complex fft on 2^ln points. */
  306. static void fft(IComplex *z, int ln)
  307. {
  308.     int j, l, np, np2;
  309.     int nblocks, nloops;
  310.     register IComplex *p,*q;
  311.     int tmp_re, tmp_im;
  312.     np = 1 << ln;
  313.     /* reverse */
  314.     for(j=0;j<np;j++) {
  315.         int k;
  316.         IComplex tmp;
  317.         k = fft_rev[j];
  318.         if (k < j) {
  319.             tmp = z[k];
  320.             z[k] = z[j];
  321.             z[j] = tmp;
  322.         }
  323.     }
  324.     /* pass 0 */
  325.     p=&z[0];
  326.     j=(np >> 1);
  327.     do {
  328.         BF(p[0].re, p[0].im, p[1].re, p[1].im, 
  329.            p[0].re, p[0].im, p[1].re, p[1].im);
  330.         p+=2;
  331.     } while (--j != 0);
  332.     /* pass 1 */
  333.     p=&z[0];
  334.     j=np >> 2;
  335.     do {
  336.         BF(p[0].re, p[0].im, p[2].re, p[2].im, 
  337.            p[0].re, p[0].im, p[2].re, p[2].im);
  338.         BF(p[1].re, p[1].im, p[3].re, p[3].im, 
  339.            p[1].re, p[1].im, p[3].im, -p[3].re);
  340.         p+=4;
  341.     } while (--j != 0);
  342.     /* pass 2 .. ln-1 */
  343.     nblocks = np >> 3;
  344.     nloops = 1 << 2;
  345.     np2 = np >> 1;
  346.     do {
  347.         p = z;
  348.         q = z + nloops;
  349.         for (j = 0; j < nblocks; ++j) {
  350.             BF(p->re, p->im, q->re, q->im,
  351.                p->re, p->im, q->re, q->im);
  352.             
  353.             p++;
  354.             q++;
  355.             for(l = nblocks; l < np2; l += nblocks) {
  356.                 CMUL(tmp_re, tmp_im, costab[l], -sintab[l], q->re, q->im);
  357.                 BF(p->re, p->im, q->re, q->im,
  358.                    p->re, p->im, tmp_re, tmp_im);
  359.                 p++;
  360.                 q++;
  361.             }
  362.             p += nloops;
  363.             q += nloops;
  364.         }
  365.         nblocks = nblocks >> 1;
  366.         nloops = nloops << 1;
  367.     } while (nblocks != 0);
  368. }
  369. /* do a 512 point mdct */
  370. static void mdct512(int32_t *out, int16_t *in)
  371. {
  372.     int i, re, im, re1, im1;
  373.     int16_t rot[N]; 
  374.     IComplex x[N/4];
  375.     /* shift to simplify computations */
  376.     for(i=0;i<N/4;i++)
  377.         rot[i] = -in[i + 3*N/4];
  378.     for(i=N/4;i<N;i++)
  379.         rot[i] = in[i - N/4];
  380.         
  381.     /* pre rotation */
  382.     for(i=0;i<N/4;i++) {
  383.         re = ((int)rot[2*i] - (int)rot[N-1-2*i]) >> 1;
  384.         im = -((int)rot[N/2+2*i] - (int)rot[N/2-1-2*i]) >> 1;
  385.         CMUL(x[i].re, x[i].im, re, im, -xcos1[i], xsin1[i]);
  386.     }
  387.     fft(x, MDCT_NBITS - 2);
  388.   
  389.     /* post rotation */
  390.     for(i=0;i<N/4;i++) {
  391.         re = x[i].re;
  392.         im = x[i].im;
  393.         CMUL(re1, im1, re, im, xsin1[i], xcos1[i]);
  394.         out[2*i] = im1;
  395.         out[N/2-1-2*i] = re1;
  396.     }
  397. }
  398. /* XXX: use another norm ? */
  399. static int calc_exp_diff(uint8_t *exp1, uint8_t *exp2, int n)
  400. {
  401.     int sum, i;
  402.     sum = 0;
  403.     for(i=0;i<n;i++) {
  404.         sum += abs(exp1[i] - exp2[i]);
  405.     }
  406.     return sum;
  407. }
  408. static void compute_exp_strategy(uint8_t exp_strategy[NB_BLOCKS][AC3_MAX_CHANNELS],
  409.                                  uint8_t exp[NB_BLOCKS][AC3_MAX_CHANNELS][N/2],
  410.                                  int ch, int is_lfe)
  411. {
  412.     int i, j;
  413.     int exp_diff;
  414.     
  415.     /* estimate if the exponent variation & decide if they should be
  416.        reused in the next frame */
  417.     exp_strategy[0][ch] = EXP_NEW;
  418.     for(i=1;i<NB_BLOCKS;i++) {
  419.         exp_diff = calc_exp_diff(exp[i][ch], exp[i-1][ch], N/2);
  420. #ifdef DEBUG            
  421.         av_log(NULL, AV_LOG_DEBUG, "exp_diff=%dn", exp_diff);
  422. #endif
  423.         if (exp_diff > EXP_DIFF_THRESHOLD)
  424.             exp_strategy[i][ch] = EXP_NEW;
  425.         else
  426.             exp_strategy[i][ch] = EXP_REUSE;
  427.     }
  428.     if (is_lfe)
  429. return;
  430.     /* now select the encoding strategy type : if exponents are often
  431.        recoded, we use a coarse encoding */
  432.     i = 0;
  433.     while (i < NB_BLOCKS) {
  434.         j = i + 1;
  435.         while (j < NB_BLOCKS && exp_strategy[j][ch] == EXP_REUSE)
  436.             j++;
  437.         switch(j - i) {
  438.         case 1:
  439.             exp_strategy[i][ch] = EXP_D45;
  440.             break;
  441.         case 2:
  442.         case 3:
  443.             exp_strategy[i][ch] = EXP_D25;
  444.             break;
  445.         default:
  446.             exp_strategy[i][ch] = EXP_D15;
  447.             break;
  448.         }
  449. i = j;
  450.     }
  451. }
  452. /* set exp[i] to min(exp[i], exp1[i]) */
  453. static void exponent_min(uint8_t exp[N/2], uint8_t exp1[N/2], int n)
  454. {
  455.     int i;
  456.     for(i=0;i<n;i++) {
  457.         if (exp1[i] < exp[i])
  458.             exp[i] = exp1[i];
  459.     }
  460. }
  461.                                  
  462. /* update the exponents so that they are the ones the decoder will
  463.    decode. Return the number of bits used to code the exponents */
  464. static int encode_exp(uint8_t encoded_exp[N/2], 
  465.                       uint8_t exp[N/2], 
  466.                       int nb_exps,
  467.                       int exp_strategy)
  468. {
  469.     int group_size, nb_groups, i, j, k, exp_min;
  470.     uint8_t exp1[N/2];
  471.     switch(exp_strategy) {
  472.     case EXP_D15:
  473.         group_size = 1;
  474.         break;
  475.     case EXP_D25:
  476.         group_size = 2;
  477.         break;
  478.     default:
  479.     case EXP_D45:
  480.         group_size = 4;
  481.         break;
  482.     }
  483.     nb_groups = ((nb_exps + (group_size * 3) - 4) / (3 * group_size)) * 3;
  484.     /* for each group, compute the minimum exponent */
  485.     exp1[0] = exp[0]; /* DC exponent is handled separately */
  486.     k = 1;
  487.     for(i=1;i<=nb_groups;i++) {
  488.         exp_min = exp[k];
  489.         assert(exp_min >= 0 && exp_min <= 24);
  490.         for(j=1;j<group_size;j++) {
  491.             if (exp[k+j] < exp_min)
  492.                 exp_min = exp[k+j];
  493.         }
  494.         exp1[i] = exp_min;
  495.         k += group_size;
  496.     }
  497.     /* constraint for DC exponent */
  498.     if (exp1[0] > 15)
  499.         exp1[0] = 15;
  500.     /* Decrease the delta between each groups to within 2
  501.      * so that they can be differentially encoded */
  502.     for (i=1;i<=nb_groups;i++)
  503. exp1[i] = FFMIN(exp1[i], exp1[i-1] + 2);
  504.     for (i=nb_groups-1;i>=0;i--)
  505. exp1[i] = FFMIN(exp1[i], exp1[i+1] + 2);
  506.     /* now we have the exponent values the decoder will see */
  507.     encoded_exp[0] = exp1[0];
  508.     k = 1;
  509.     for(i=1;i<=nb_groups;i++) {
  510.         for(j=0;j<group_size;j++) {
  511.             encoded_exp[k+j] = exp1[i];
  512.         }
  513.         k += group_size;
  514.     }
  515.     
  516. #if defined(DEBUG)
  517.     av_log(NULL, AV_LOG_DEBUG, "exponents: strategy=%dn", exp_strategy);
  518.     for(i=0;i<=nb_groups * group_size;i++) {
  519.         av_log(NULL, AV_LOG_DEBUG, "%d ", encoded_exp[i]);
  520.     }
  521.     av_log(NULL, AV_LOG_DEBUG, "n");
  522. #endif
  523.     return 4 + (nb_groups / 3) * 7;
  524. }
  525. /* return the size in bits taken by the mantissa */
  526. static int compute_mantissa_size(AC3EncodeContext *s, uint8_t *m, int nb_coefs)
  527. {
  528.     int bits, mant, i;
  529.     bits = 0;
  530.     for(i=0;i<nb_coefs;i++) {
  531.         mant = m[i];
  532.         switch(mant) {
  533.         case 0:
  534.             /* nothing */
  535.             break;
  536.         case 1:
  537.             /* 3 mantissa in 5 bits */
  538.             if (s->mant1_cnt == 0) 
  539.                 bits += 5;
  540.             if (++s->mant1_cnt == 3)
  541.                 s->mant1_cnt = 0;
  542.             break;
  543.         case 2:
  544.             /* 3 mantissa in 7 bits */
  545.             if (s->mant2_cnt == 0) 
  546.                 bits += 7;
  547.             if (++s->mant2_cnt == 3)
  548.                 s->mant2_cnt = 0;
  549.             break;
  550.         case 3:
  551.             bits += 3;
  552.             break;
  553.         case 4:
  554.             /* 2 mantissa in 7 bits */
  555.             if (s->mant4_cnt == 0)
  556.                 bits += 7;
  557.             if (++s->mant4_cnt == 2) 
  558.                 s->mant4_cnt = 0;
  559.             break;
  560.         case 14:
  561.             bits += 14;
  562.             break;
  563.         case 15:
  564.             bits += 16;
  565.             break;
  566.         default:
  567.             bits += mant - 1;
  568.             break;
  569.         }
  570.     }
  571.     return bits;
  572. }
  573. static int bit_alloc(AC3EncodeContext *s,
  574.                      uint8_t bap[NB_BLOCKS][AC3_MAX_CHANNELS][N/2],
  575.                      uint8_t encoded_exp[NB_BLOCKS][AC3_MAX_CHANNELS][N/2],
  576.                      uint8_t exp_strategy[NB_BLOCKS][AC3_MAX_CHANNELS],
  577.                      int frame_bits, int csnroffst, int fsnroffst)
  578. {
  579.     int i, ch;
  580.     /* compute size */
  581.     for(i=0;i<NB_BLOCKS;i++) {
  582.         s->mant1_cnt = 0;
  583.         s->mant2_cnt = 0;
  584.         s->mant4_cnt = 0;
  585.         for(ch=0;ch<s->nb_all_channels;ch++) {
  586.             ac3_parametric_bit_allocation(&s->bit_alloc, 
  587.                                           bap[i][ch], (int8_t *)encoded_exp[i][ch], 
  588.                                           0, s->nb_coefs[ch], 
  589.                                           (((csnroffst-15) << 4) + 
  590.                                            fsnroffst) << 2, 
  591.                                           fgaintab[s->fgaincod[ch]],
  592.                                           ch == s->lfe_channel,
  593.                                           2, 0, NULL, NULL, NULL);
  594.             frame_bits += compute_mantissa_size(s, bap[i][ch], 
  595.                                                  s->nb_coefs[ch]);
  596.         }
  597.     }
  598. #if 0
  599.     printf("csnr=%d fsnr=%d frame_bits=%d diff=%dn", 
  600.            csnroffst, fsnroffst, frame_bits, 
  601.            16 * s->frame_size - ((frame_bits + 7) & ~7));
  602. #endif
  603.     return 16 * s->frame_size - frame_bits;
  604. }
  605. #define SNR_INC1 4
  606. static int compute_bit_allocation(AC3EncodeContext *s,
  607.                                   uint8_t bap[NB_BLOCKS][AC3_MAX_CHANNELS][N/2],
  608.                                   uint8_t encoded_exp[NB_BLOCKS][AC3_MAX_CHANNELS][N/2],
  609.                                   uint8_t exp_strategy[NB_BLOCKS][AC3_MAX_CHANNELS],
  610.                                   int frame_bits)
  611. {
  612.     int i, ch;
  613.     int csnroffst, fsnroffst;
  614.     uint8_t bap1[NB_BLOCKS][AC3_MAX_CHANNELS][N/2];
  615.     static int frame_bits_inc[8] = { 0, 0, 2, 2, 2, 4, 2, 4 };
  616.     /* init default parameters */
  617.     s->sdecaycod = 2;
  618.     s->fdecaycod = 1;
  619.     s->sgaincod = 1;
  620.     s->dbkneecod = 2;
  621.     s->floorcod = 4;
  622.     for(ch=0;ch<s->nb_all_channels;ch++) 
  623.         s->fgaincod[ch] = 4;
  624.     
  625.     /* compute real values */
  626.     s->bit_alloc.fscod = s->fscod;
  627.     s->bit_alloc.halfratecod = s->halfratecod;
  628.     s->bit_alloc.sdecay = sdecaytab[s->sdecaycod] >> s->halfratecod;
  629.     s->bit_alloc.fdecay = fdecaytab[s->fdecaycod] >> s->halfratecod;
  630.     s->bit_alloc.sgain = sgaintab[s->sgaincod];
  631.     s->bit_alloc.dbknee = dbkneetab[s->dbkneecod];
  632.     s->bit_alloc.floor = floortab[s->floorcod];
  633.     
  634.     /* header size */
  635.     frame_bits += 65;
  636.     // if (s->acmod == 2)
  637.     //    frame_bits += 2;
  638.     frame_bits += frame_bits_inc[s->acmod];
  639.     /* audio blocks */
  640.     for(i=0;i<NB_BLOCKS;i++) {
  641.         frame_bits += s->nb_channels * 2 + 2; /* blksw * c, dithflag * c, dynrnge, cplstre */
  642.         if (s->acmod == 2) {
  643.             frame_bits++; /* rematstr */
  644.             if(i==0) frame_bits += 4;
  645.         }
  646.         frame_bits += 2 * s->nb_channels; /* chexpstr[2] * c */
  647. if (s->lfe)
  648.     frame_bits++; /* lfeexpstr */
  649.         for(ch=0;ch<s->nb_channels;ch++) {
  650.             if (exp_strategy[i][ch] != EXP_REUSE)
  651.                 frame_bits += 6 + 2; /* chbwcod[6], gainrng[2] */
  652.         }
  653.         frame_bits++; /* baie */
  654.         frame_bits++; /* snr */
  655.         frame_bits += 2; /* delta / skip */
  656.     }
  657.     frame_bits++; /* cplinu for block 0 */
  658.     /* bit alloc info */
  659.     /* sdcycod[2], fdcycod[2], sgaincod[2], dbpbcod[2], floorcod[3] */
  660.     /* csnroffset[6] */
  661.     /* (fsnoffset[4] + fgaincod[4]) * c */
  662.     frame_bits += 2*4 + 3 + 6 + s->nb_all_channels * (4 + 3);
  663.     /* auxdatae, crcrsv */
  664.     frame_bits += 2;
  665.     /* CRC */
  666.     frame_bits += 16;
  667.     /* now the big work begins : do the bit allocation. Modify the snr
  668.        offset until we can pack everything in the requested frame size */
  669.     csnroffst = s->csnroffst;
  670.     while (csnroffst >= 0 && 
  671.    bit_alloc(s, bap, encoded_exp, exp_strategy, frame_bits, csnroffst, 0) < 0)
  672. csnroffst -= SNR_INC1;
  673.     if (csnroffst < 0) {
  674. av_log(NULL, AV_LOG_ERROR, "Yack, Error !!!n");
  675. return -1;
  676.     }
  677.     while ((csnroffst + SNR_INC1) <= 63 && 
  678.            bit_alloc(s, bap1, encoded_exp, exp_strategy, frame_bits, 
  679.                      csnroffst + SNR_INC1, 0) >= 0) {
  680.         csnroffst += SNR_INC1;
  681.         memcpy(bap, bap1, sizeof(bap1));
  682.     }
  683.     while ((csnroffst + 1) <= 63 && 
  684.            bit_alloc(s, bap1, encoded_exp, exp_strategy, frame_bits, csnroffst + 1, 0) >= 0) {
  685.         csnroffst++;
  686.         memcpy(bap, bap1, sizeof(bap1));
  687.     }
  688.     fsnroffst = 0;
  689.     while ((fsnroffst + SNR_INC1) <= 15 && 
  690.            bit_alloc(s, bap1, encoded_exp, exp_strategy, frame_bits, 
  691.                      csnroffst, fsnroffst + SNR_INC1) >= 0) {
  692.         fsnroffst += SNR_INC1;
  693.         memcpy(bap, bap1, sizeof(bap1));
  694.     }
  695.     while ((fsnroffst + 1) <= 15 && 
  696.            bit_alloc(s, bap1, encoded_exp, exp_strategy, frame_bits, 
  697.                      csnroffst, fsnroffst + 1) >= 0) {
  698.         fsnroffst++;
  699.         memcpy(bap, bap1, sizeof(bap1));
  700.     }
  701.     
  702.     s->csnroffst = csnroffst;
  703.     for(ch=0;ch<s->nb_all_channels;ch++)
  704.         s->fsnroffst[ch] = fsnroffst;
  705. #if defined(DEBUG_BITALLOC)
  706.     {
  707.         int j;
  708.         for(i=0;i<6;i++) {
  709.             for(ch=0;ch<s->nb_all_channels;ch++) {
  710.                 printf("Block #%d Ch%d:n", i, ch);
  711.                 printf("bap=");
  712.                 for(j=0;j<s->nb_coefs[ch];j++) {
  713.                     printf("%d ",bap[i][ch][j]);
  714.                 }
  715.                 printf("n");
  716.             }
  717.         }
  718.     }
  719. #endif
  720.     return 0;
  721. }
  722. void ac3_common_init(void)
  723. {
  724.     int i, j, k, l, v;
  725.     /* compute bndtab and masktab from bandsz */
  726.     k = 0;
  727.     l = 0;
  728.     for(i=0;i<50;i++) {
  729.         bndtab[i] = l;
  730.         v = bndsz[i];
  731.         for(j=0;j<v;j++) masktab[k++]=i;
  732.         l += v;
  733.     }
  734.     bndtab[50] = 0;
  735. }
  736. static int AC3_encode_init(AVCodecContext *avctx)
  737. {
  738.     int freq = avctx->sample_rate;
  739.     int bitrate = avctx->bit_rate;
  740.     int channels = avctx->channels;
  741.     AC3EncodeContext *s = avctx->priv_data;
  742.     int i, j, ch;
  743.     float alpha;
  744.     static const uint8_t acmod_defs[6] = {
  745. 0x01, /* C */
  746. 0x02, /* L R */
  747. 0x03, /* L C R */
  748. 0x06, /* L R SL SR */
  749. 0x07, /* L C R SL SR */
  750. 0x07, /* L C R SL SR (+LFE) */
  751.     };
  752.     avctx->frame_size = AC3_FRAME_SIZE;
  753.     
  754.     /* number of channels */
  755.     if (channels < 1 || channels > 6)
  756. return -1;
  757.     s->acmod = acmod_defs[channels - 1];
  758.     s->lfe = (channels == 6) ? 1 : 0;
  759.     s->nb_all_channels = channels;
  760.     s->nb_channels = channels > 5 ? 5 : channels;
  761.     s->lfe_channel = s->lfe ? 5 : -1;
  762.     /* frequency */
  763.     for(i=0;i<3;i++) {
  764.         for(j=0;j<3;j++) 
  765.             if ((ac3_freqs[j] >> i) == freq)
  766.                 goto found;
  767.     }
  768.     return -1;
  769.  found:    
  770.     s->sample_rate = freq;
  771.     s->halfratecod = i;
  772.     s->fscod = j;
  773.     s->bsid = 8 + s->halfratecod;
  774.     s->bsmod = 0; /* complete main audio service */
  775.     /* bitrate & frame size */
  776.     bitrate /= 1000;
  777.     for(i=0;i<19;i++) {
  778.         if ((ac3_bitratetab[i] >> s->halfratecod) == bitrate)
  779.             break;
  780.     }
  781.     if (i == 19)
  782.         return -1;
  783.     s->bit_rate = bitrate;
  784.     s->frmsizecod = i << 1;
  785.     s->frame_size_min = (bitrate * 1000 * AC3_FRAME_SIZE) / (freq * 16);
  786.     /* for now we do not handle fractional sizes */
  787.     s->frame_size = s->frame_size_min;
  788.     
  789.     /* bit allocation init */
  790.     for(ch=0;ch<s->nb_channels;ch++) {
  791.         /* bandwidth for each channel */
  792.         /* XXX: should compute the bandwidth according to the frame
  793.            size, so that we avoid anoying high freq artefacts */
  794.         s->chbwcod[ch] = 50; /* sample bandwidth as mpeg audio layer 2 table 0 */
  795.         s->nb_coefs[ch] = ((s->chbwcod[ch] + 12) * 3) + 37;
  796.     }
  797.     if (s->lfe) {
  798. s->nb_coefs[s->lfe_channel] = 7; /* fixed */
  799.     }
  800.     /* initial snr offset */
  801.     s->csnroffst = 40;
  802.     ac3_common_init();
  803.     /* mdct init */
  804.     fft_init(MDCT_NBITS - 2);
  805.     for(i=0;i<N/4;i++) {
  806.         alpha = 2 * M_PI * (i + 1.0 / 8.0) / (float)N;
  807.         xcos1[i] = fix15(-cos(alpha));
  808.         xsin1[i] = fix15(-sin(alpha));
  809.     }
  810.     ac3_crc_init();
  811.     
  812.     avctx->coded_frame= avcodec_alloc_frame();
  813.     avctx->coded_frame->key_frame= 1;
  814.     return 0;
  815. }
  816. /* output the AC3 frame header */
  817. static void output_frame_header(AC3EncodeContext *s, unsigned char *frame)
  818. {
  819.     init_put_bits(&s->pb, frame, AC3_MAX_CODED_FRAME_SIZE);
  820.     put_bits(&s->pb, 16, 0x0b77); /* frame header */
  821.     put_bits(&s->pb, 16, 0); /* crc1: will be filled later */
  822.     put_bits(&s->pb, 2, s->fscod);
  823.     put_bits(&s->pb, 6, s->frmsizecod + (s->frame_size - s->frame_size_min));
  824.     put_bits(&s->pb, 5, s->bsid);
  825.     put_bits(&s->pb, 3, s->bsmod);
  826.     put_bits(&s->pb, 3, s->acmod);
  827.     if ((s->acmod & 0x01) && s->acmod != 0x01)
  828. put_bits(&s->pb, 2, 1); /* XXX -4.5 dB */
  829.     if (s->acmod & 0x04)
  830. put_bits(&s->pb, 2, 1); /* XXX -6 dB */
  831.     if (s->acmod == 0x02)
  832.         put_bits(&s->pb, 2, 0); /* surround not indicated */
  833.     put_bits(&s->pb, 1, s->lfe); /* LFE */
  834.     put_bits(&s->pb, 5, 31); /* dialog norm: -31 db */
  835.     put_bits(&s->pb, 1, 0); /* no compression control word */
  836.     put_bits(&s->pb, 1, 0); /* no lang code */
  837.     put_bits(&s->pb, 1, 0); /* no audio production info */
  838.     put_bits(&s->pb, 1, 0); /* no copyright */
  839.     put_bits(&s->pb, 1, 1); /* original bitstream */
  840.     put_bits(&s->pb, 1, 0); /* no time code 1 */
  841.     put_bits(&s->pb, 1, 0); /* no time code 2 */
  842.     put_bits(&s->pb, 1, 0); /* no addtional bit stream info */
  843. }
  844. /* symetric quantization on 'levels' levels */
  845. static inline int sym_quant(int c, int e, int levels)
  846. {
  847.     int v;
  848.     if (c >= 0) {
  849.         v = (levels * (c << e)) >> 24;
  850.         v = (v + 1) >> 1;
  851.         v = (levels >> 1) + v;
  852.     } else {
  853.         v = (levels * ((-c) << e)) >> 24;
  854.         v = (v + 1) >> 1;
  855.         v = (levels >> 1) - v;
  856.     }
  857.     assert (v >= 0 && v < levels);
  858.     return v;
  859. }
  860. /* asymetric quantization on 2^qbits levels */
  861. static inline int asym_quant(int c, int e, int qbits)
  862. {
  863.     int lshift, m, v;
  864.     lshift = e + qbits - 24;
  865.     if (lshift >= 0)
  866.         v = c << lshift;
  867.     else
  868.         v = c >> (-lshift);
  869.     /* rounding */
  870.     v = (v + 1) >> 1;
  871.     m = (1 << (qbits-1));
  872.     if (v >= m)
  873.         v = m - 1;
  874.     assert(v >= -m);
  875.     return v & ((1 << qbits)-1);
  876. }
  877. /* Output one audio block. There are NB_BLOCKS audio blocks in one AC3
  878.    frame */
  879. static void output_audio_block(AC3EncodeContext *s,
  880.                                uint8_t exp_strategy[AC3_MAX_CHANNELS],
  881.                                uint8_t encoded_exp[AC3_MAX_CHANNELS][N/2],
  882.                                uint8_t bap[AC3_MAX_CHANNELS][N/2],
  883.                                int32_t mdct_coefs[AC3_MAX_CHANNELS][N/2],
  884.                                int8_t global_exp[AC3_MAX_CHANNELS],
  885.                                int block_num)
  886. {
  887.     int ch, nb_groups, group_size, i, baie, rbnd;
  888.     uint8_t *p;
  889.     uint16_t qmant[AC3_MAX_CHANNELS][N/2];
  890.     int exp0, exp1;
  891.     int mant1_cnt, mant2_cnt, mant4_cnt;
  892.     uint16_t *qmant1_ptr, *qmant2_ptr, *qmant4_ptr;
  893.     int delta0, delta1, delta2;
  894.     for(ch=0;ch<s->nb_channels;ch++) 
  895.         put_bits(&s->pb, 1, 0); /* 512 point MDCT */
  896.     for(ch=0;ch<s->nb_channels;ch++) 
  897.         put_bits(&s->pb, 1, 1); /* no dither */
  898.     put_bits(&s->pb, 1, 0); /* no dynamic range */
  899.     if (block_num == 0) {
  900.         /* for block 0, even if no coupling, we must say it. This is a
  901.            waste of bit :-) */
  902.         put_bits(&s->pb, 1, 1); /* coupling strategy present */
  903.         put_bits(&s->pb, 1, 0); /* no coupling strategy */
  904.     } else {
  905.         put_bits(&s->pb, 1, 0); /* no new coupling strategy */
  906.     }
  907.     if (s->acmod == 2)
  908.       {
  909. if(block_num==0)
  910.   {
  911.     /* first block must define rematrixing (rematstr)  */
  912.     put_bits(&s->pb, 1, 1); 
  913.     
  914.     /* dummy rematrixing rematflg(1:4)=0 */
  915.     for (rbnd=0;rbnd<4;rbnd++)
  916.       put_bits(&s->pb, 1, 0); 
  917.   }
  918. else 
  919.   {
  920.     /* no matrixing (but should be used in the future) */
  921.     put_bits(&s->pb, 1, 0);
  922.   } 
  923.       }
  924. #if defined(DEBUG) 
  925.     {
  926.       static int count = 0;
  927.       av_log(NULL, AV_LOG_DEBUG, "Block #%d (%d)n", block_num, count++);
  928.     }
  929. #endif
  930.     /* exponent strategy */
  931.     for(ch=0;ch<s->nb_channels;ch++) {
  932.         put_bits(&s->pb, 2, exp_strategy[ch]);
  933.     }
  934.     
  935.     if (s->lfe) {
  936. put_bits(&s->pb, 1, exp_strategy[s->lfe_channel]);
  937.     }
  938.     for(ch=0;ch<s->nb_channels;ch++) {
  939.         if (exp_strategy[ch] != EXP_REUSE)
  940.             put_bits(&s->pb, 6, s->chbwcod[ch]);
  941.     }
  942.     
  943.     /* exponents */
  944.     for (ch = 0; ch < s->nb_all_channels; ch++) {
  945.         switch(exp_strategy[ch]) {
  946.         case EXP_REUSE:
  947.             continue;
  948.         case EXP_D15:
  949.             group_size = 1;
  950.             break;
  951.         case EXP_D25:
  952.             group_size = 2;
  953.             break;
  954.         default:
  955.         case EXP_D45:
  956.             group_size = 4;
  957.             break;
  958.         }
  959. nb_groups = (s->nb_coefs[ch] + (group_size * 3) - 4) / (3 * group_size);
  960.         p = encoded_exp[ch];
  961.         /* first exponent */
  962.         exp1 = *p++;
  963.         put_bits(&s->pb, 4, exp1);
  964.         /* next ones are delta encoded */
  965.         for(i=0;i<nb_groups;i++) {
  966.             /* merge three delta in one code */
  967.             exp0 = exp1;
  968.             exp1 = p[0];
  969.             p += group_size;
  970.             delta0 = exp1 - exp0 + 2;
  971.             exp0 = exp1;
  972.             exp1 = p[0];
  973.             p += group_size;
  974.             delta1 = exp1 - exp0 + 2;
  975.             exp0 = exp1;
  976.             exp1 = p[0];
  977.             p += group_size;
  978.             delta2 = exp1 - exp0 + 2;
  979.             put_bits(&s->pb, 7, ((delta0 * 5 + delta1) * 5) + delta2);
  980.         }
  981. if (ch != s->lfe_channel)
  982.     put_bits(&s->pb, 2, 0); /* no gain range info */
  983.     }
  984.     /* bit allocation info */
  985.     baie = (block_num == 0);
  986.     put_bits(&s->pb, 1, baie);
  987.     if (baie) {
  988.         put_bits(&s->pb, 2, s->sdecaycod);
  989.         put_bits(&s->pb, 2, s->fdecaycod);
  990.         put_bits(&s->pb, 2, s->sgaincod);
  991.         put_bits(&s->pb, 2, s->dbkneecod);
  992.         put_bits(&s->pb, 3, s->floorcod);
  993.     }
  994.     /* snr offset */
  995.     put_bits(&s->pb, 1, baie); /* always present with bai */
  996.     if (baie) {
  997.         put_bits(&s->pb, 6, s->csnroffst);
  998.         for(ch=0;ch<s->nb_all_channels;ch++) {
  999.             put_bits(&s->pb, 4, s->fsnroffst[ch]);
  1000.             put_bits(&s->pb, 3, s->fgaincod[ch]);
  1001.         }
  1002.     }
  1003.     
  1004.     put_bits(&s->pb, 1, 0); /* no delta bit allocation */
  1005.     put_bits(&s->pb, 1, 0); /* no data to skip */
  1006.     /* mantissa encoding : we use two passes to handle the grouping. A
  1007.        one pass method may be faster, but it would necessitate to
  1008.        modify the output stream. */
  1009.     /* first pass: quantize */
  1010.     mant1_cnt = mant2_cnt = mant4_cnt = 0;
  1011.     qmant1_ptr = qmant2_ptr = qmant4_ptr = NULL;
  1012.     for (ch = 0; ch < s->nb_all_channels; ch++) {
  1013.         int b, c, e, v;
  1014.         for(i=0;i<s->nb_coefs[ch];i++) {
  1015.             c = mdct_coefs[ch][i];
  1016.             e = encoded_exp[ch][i] - global_exp[ch];
  1017.             b = bap[ch][i];
  1018.             switch(b) {
  1019.             case 0:
  1020.                 v = 0;
  1021.                 break;
  1022.             case 1:
  1023.                 v = sym_quant(c, e, 3);
  1024.                 switch(mant1_cnt) {
  1025.                 case 0:
  1026.                     qmant1_ptr = &qmant[ch][i];
  1027.                     v = 9 * v;
  1028.                     mant1_cnt = 1;
  1029.                     break;
  1030.                 case 1:
  1031.                     *qmant1_ptr += 3 * v;
  1032.                     mant1_cnt = 2;
  1033.                     v = 128;
  1034.                     break;
  1035.                 default:
  1036.                     *qmant1_ptr += v;
  1037.                     mant1_cnt = 0;
  1038.                     v = 128;
  1039.                     break;
  1040.                 }
  1041.                 break;
  1042.             case 2:
  1043.                 v = sym_quant(c, e, 5);
  1044.                 switch(mant2_cnt) {
  1045.                 case 0:
  1046.                     qmant2_ptr = &qmant[ch][i];
  1047.                     v = 25 * v;
  1048.                     mant2_cnt = 1;
  1049.                     break;
  1050.                 case 1:
  1051.                     *qmant2_ptr += 5 * v;
  1052.                     mant2_cnt = 2;
  1053.                     v = 128;
  1054.                     break;
  1055.                 default:
  1056.                     *qmant2_ptr += v;
  1057.                     mant2_cnt = 0;
  1058.                     v = 128;
  1059.                     break;
  1060.                 }
  1061.                 break;
  1062.             case 3:
  1063.                 v = sym_quant(c, e, 7);
  1064.                 break;
  1065.             case 4:
  1066.                 v = sym_quant(c, e, 11);
  1067.                 switch(mant4_cnt) {
  1068.                 case 0:
  1069.                     qmant4_ptr = &qmant[ch][i];
  1070.                     v = 11 * v;
  1071.                     mant4_cnt = 1;
  1072.                     break;
  1073.                 default:
  1074.                     *qmant4_ptr += v;
  1075.                     mant4_cnt = 0;
  1076.                     v = 128;
  1077.                     break;
  1078.                 }
  1079.                 break;
  1080.             case 5:
  1081.                 v = sym_quant(c, e, 15);
  1082.                 break;
  1083.             case 14:
  1084.                 v = asym_quant(c, e, 14);
  1085.                 break;
  1086.             case 15:
  1087.                 v = asym_quant(c, e, 16);
  1088.                 break;
  1089.             default:
  1090.                 v = asym_quant(c, e, b - 1);
  1091.                 break;
  1092.             }
  1093.             qmant[ch][i] = v;
  1094.         }
  1095.     }
  1096.     /* second pass : output the values */
  1097.     for (ch = 0; ch < s->nb_all_channels; ch++) {
  1098.         int b, q;
  1099.         
  1100.         for(i=0;i<s->nb_coefs[ch];i++) {
  1101.             q = qmant[ch][i];
  1102.             b = bap[ch][i];
  1103.             switch(b) {
  1104.             case 0:
  1105.                 break;
  1106.             case 1:
  1107.                 if (q != 128) 
  1108.                     put_bits(&s->pb, 5, q);
  1109.                 break;
  1110.             case 2:
  1111.                 if (q != 128) 
  1112.                     put_bits(&s->pb, 7, q);
  1113.                 break;
  1114.             case 3:
  1115.                 put_bits(&s->pb, 3, q);
  1116.                 break;
  1117.             case 4:
  1118.                 if (q != 128)
  1119.                     put_bits(&s->pb, 7, q);
  1120.                 break;
  1121.             case 14:
  1122.                 put_bits(&s->pb, 14, q);
  1123.                 break;
  1124.             case 15:
  1125.                 put_bits(&s->pb, 16, q);
  1126.                 break;
  1127.             default:
  1128.                 put_bits(&s->pb, b - 1, q);
  1129.                 break;
  1130.             }
  1131.         }
  1132.     }
  1133. }
  1134. /* compute the ac3 crc */
  1135. #define CRC16_POLY ((1 << 0) | (1 << 2) | (1 << 15) | (1 << 16))
  1136. static void ac3_crc_init(void)
  1137. {
  1138.     unsigned int c, n, k;
  1139.     for(n=0;n<256;n++) {
  1140.         c = n << 8;
  1141.         for (k = 0; k < 8; k++) {
  1142.             if (c & (1 << 15)) 
  1143.                 c = ((c << 1) & 0xffff) ^ (CRC16_POLY & 0xffff);
  1144.             else
  1145.                 c = c << 1;
  1146.         }
  1147.         crc_table[n] = c;
  1148.     }
  1149. }
  1150. static unsigned int ac3_crc(uint8_t *data, int n, unsigned int crc)
  1151. {
  1152.     int i;
  1153.     for(i=0;i<n;i++) {
  1154.         crc = (crc_table[data[i] ^ (crc >> 8)] ^ (crc << 8)) & 0xffff;
  1155.     }
  1156.     return crc;
  1157. }
  1158. static unsigned int mul_poly(unsigned int a, unsigned int b, unsigned int poly)
  1159. {
  1160.     unsigned int c;
  1161.     c = 0;
  1162.     while (a) {
  1163.         if (a & 1)
  1164.             c ^= b;
  1165.         a = a >> 1;
  1166.         b = b << 1;
  1167.         if (b & (1 << 16))
  1168.             b ^= poly;
  1169.     }
  1170.     return c;
  1171. }
  1172. static unsigned int pow_poly(unsigned int a, unsigned int n, unsigned int poly)
  1173. {
  1174.     unsigned int r;
  1175.     r = 1;
  1176.     while (n) {
  1177.         if (n & 1)
  1178.             r = mul_poly(r, a, poly);
  1179.         a = mul_poly(a, a, poly);
  1180.         n >>= 1;
  1181.     }
  1182.     return r;
  1183. }
  1184. /* compute log2(max(abs(tab[]))) */
  1185. static int log2_tab(int16_t *tab, int n)
  1186. {
  1187.     int i, v;
  1188.     v = 0;
  1189.     for(i=0;i<n;i++) {
  1190.         v |= abs(tab[i]);
  1191.     }
  1192.     return av_log2(v);
  1193. }
  1194. static void lshift_tab(int16_t *tab, int n, int lshift)
  1195. {
  1196.     int i;
  1197.     if (lshift > 0) {
  1198.         for(i=0;i<n;i++) {
  1199.             tab[i] <<= lshift;
  1200.         }
  1201.     } else if (lshift < 0) {
  1202.         lshift = -lshift;
  1203.         for(i=0;i<n;i++) {
  1204.             tab[i] >>= lshift;
  1205.         }
  1206.     }
  1207. }
  1208. /* fill the end of the frame and compute the two crcs */
  1209. static int output_frame_end(AC3EncodeContext *s)
  1210. {
  1211.     int frame_size, frame_size_58, n, crc1, crc2, crc_inv;
  1212.     uint8_t *frame;
  1213.     frame_size = s->frame_size; /* frame size in words */
  1214.     /* align to 8 bits */
  1215.     flush_put_bits(&s->pb);
  1216.     /* add zero bytes to reach the frame size */
  1217.     frame = s->pb.buf;
  1218.     n = 2 * s->frame_size - (pbBufPtr(&s->pb) - frame) - 2;
  1219.     assert(n >= 0);
  1220.     if(n>0)
  1221.       memset(pbBufPtr(&s->pb), 0, n);
  1222.     
  1223.     /* Now we must compute both crcs : this is not so easy for crc1
  1224.        because it is at the beginning of the data... */
  1225.     frame_size_58 = (frame_size >> 1) + (frame_size >> 3);
  1226.     crc1 = ac3_crc(frame + 4, (2 * frame_size_58) - 4, 0);
  1227.     /* XXX: could precompute crc_inv */
  1228.     crc_inv = pow_poly((CRC16_POLY >> 1), (16 * frame_size_58) - 16, CRC16_POLY);
  1229.     crc1 = mul_poly(crc_inv, crc1, CRC16_POLY);
  1230.     frame[2] = crc1 >> 8;
  1231.     frame[3] = crc1;
  1232.     
  1233.     crc2 = ac3_crc(frame + 2 * frame_size_58, (frame_size - frame_size_58) * 2 - 2, 0);
  1234.     frame[2*frame_size - 2] = crc2 >> 8;
  1235.     frame[2*frame_size - 1] = crc2;
  1236.     //    printf("n=%d frame_size=%dn", n, frame_size);
  1237.     return frame_size * 2;
  1238. }
  1239. static int AC3_encode_frame(AVCodecContext *avctx,
  1240.                             unsigned char *frame, int buf_size, void *data)
  1241. {
  1242.     AC3EncodeContext *s = avctx->priv_data;
  1243.     int16_t *samples = data;
  1244.     int i, j, k, v, ch;
  1245.     int16_t input_samples[N];
  1246.     int32_t mdct_coef[NB_BLOCKS][AC3_MAX_CHANNELS][N/2];
  1247.     uint8_t exp[NB_BLOCKS][AC3_MAX_CHANNELS][N/2];
  1248.     uint8_t exp_strategy[NB_BLOCKS][AC3_MAX_CHANNELS];
  1249.     uint8_t encoded_exp[NB_BLOCKS][AC3_MAX_CHANNELS][N/2];
  1250.     uint8_t bap[NB_BLOCKS][AC3_MAX_CHANNELS][N/2];
  1251.     int8_t exp_samples[NB_BLOCKS][AC3_MAX_CHANNELS];
  1252.     int frame_bits;
  1253.     frame_bits = 0;
  1254.     for(ch=0;ch<s->nb_all_channels;ch++) {
  1255.         /* fixed mdct to the six sub blocks & exponent computation */
  1256.         for(i=0;i<NB_BLOCKS;i++) {
  1257.             int16_t *sptr;
  1258.             int sinc;
  1259.             /* compute input samples */
  1260.             memcpy(input_samples, s->last_samples[ch], N/2 * sizeof(int16_t));
  1261.             sinc = s->nb_all_channels;
  1262.             sptr = samples + (sinc * (N/2) * i) + ch;
  1263.             for(j=0;j<N/2;j++) {
  1264.                 v = *sptr;
  1265.                 input_samples[j + N/2] = v;
  1266.                 s->last_samples[ch][j] = v; 
  1267.                 sptr += sinc;
  1268.             }
  1269.             /* apply the MDCT window */
  1270.             for(j=0;j<N/2;j++) {
  1271.                 input_samples[j] = MUL16(input_samples[j], 
  1272.                                          ac3_window[j]) >> 15;
  1273.                 input_samples[N-j-1] = MUL16(input_samples[N-j-1], 
  1274.                                              ac3_window[j]) >> 15;
  1275.             }
  1276.         
  1277.             /* Normalize the samples to use the maximum available
  1278.                precision */
  1279.             v = 14 - log2_tab(input_samples, N);
  1280.             if (v < 0)
  1281.                 v = 0;
  1282.             exp_samples[i][ch] = v - 8;
  1283.             lshift_tab(input_samples, N, v);
  1284.             /* do the MDCT */
  1285.             mdct512(mdct_coef[i][ch], input_samples);
  1286.             
  1287.             /* compute "exponents". We take into account the
  1288.                normalization there */
  1289.             for(j=0;j<N/2;j++) {
  1290.                 int e;
  1291.                 v = abs(mdct_coef[i][ch][j]);
  1292.                 if (v == 0)
  1293.                     e = 24;
  1294.                 else {
  1295.                     e = 23 - av_log2(v) + exp_samples[i][ch];
  1296.                     if (e >= 24) {
  1297.                         e = 24;
  1298.                         mdct_coef[i][ch][j] = 0;
  1299.                     }
  1300.                 }
  1301.                 exp[i][ch][j] = e;
  1302.             }
  1303.         }
  1304.         
  1305.         compute_exp_strategy(exp_strategy, exp, ch, ch == s->lfe_channel);
  1306.         /* compute the exponents as the decoder will see them. The
  1307.            EXP_REUSE case must be handled carefully : we select the
  1308.            min of the exponents */
  1309.         i = 0;
  1310.         while (i < NB_BLOCKS) {
  1311.             j = i + 1;
  1312.             while (j < NB_BLOCKS && exp_strategy[j][ch] == EXP_REUSE) {
  1313.                 exponent_min(exp[i][ch], exp[j][ch], s->nb_coefs[ch]);
  1314.                 j++;
  1315.             }
  1316.             frame_bits += encode_exp(encoded_exp[i][ch],
  1317.                                      exp[i][ch], s->nb_coefs[ch], 
  1318.                                      exp_strategy[i][ch]);
  1319.             /* copy encoded exponents for reuse case */
  1320.             for(k=i+1;k<j;k++) {
  1321.                 memcpy(encoded_exp[k][ch], encoded_exp[i][ch], 
  1322.                        s->nb_coefs[ch] * sizeof(uint8_t));
  1323.             }
  1324.             i = j;
  1325.         }
  1326.     }
  1327.     compute_bit_allocation(s, bap, encoded_exp, exp_strategy, frame_bits);
  1328.     /* everything is known... let's output the frame */
  1329.     output_frame_header(s, frame);
  1330.         
  1331.     for(i=0;i<NB_BLOCKS;i++) {
  1332.         output_audio_block(s, exp_strategy[i], encoded_exp[i], 
  1333.                            bap[i], mdct_coef[i], exp_samples[i], i);
  1334.     }
  1335.     return output_frame_end(s);
  1336. }
  1337. static int AC3_encode_close(AVCodecContext *avctx)
  1338. {
  1339.     av_freep(&avctx->coded_frame);
  1340.     return 0;
  1341. }
  1342. #if 0
  1343. /*************************************************************************/
  1344. /* TEST */
  1345. #define FN (N/4)
  1346. void fft_test(void)
  1347. {
  1348.     IComplex in[FN], in1[FN];
  1349.     int k, n, i;
  1350.     float sum_re, sum_im, a;
  1351.     /* FFT test */
  1352.     for(i=0;i<FN;i++) {
  1353.         in[i].re = random() % 65535 - 32767;
  1354.         in[i].im = random() % 65535 - 32767;
  1355.         in1[i] = in[i];
  1356.     }
  1357.     fft(in, 7);
  1358.     /* do it by hand */
  1359.     for(k=0;k<FN;k++) {
  1360.         sum_re = 0;
  1361.         sum_im = 0;
  1362.         for(n=0;n<FN;n++) {
  1363.             a = -2 * M_PI * (n * k) / FN;
  1364.             sum_re += in1[n].re * cos(a) - in1[n].im * sin(a);
  1365.             sum_im += in1[n].re * sin(a) + in1[n].im * cos(a);
  1366.         }
  1367.         printf("%3d: %6d,%6d %6.0f,%6.0fn", 
  1368.                k, in[k].re, in[k].im, sum_re / FN, sum_im / FN); 
  1369.     }
  1370. }
  1371. void mdct_test(void)
  1372. {
  1373.     int16_t input[N];
  1374.     int32_t output[N/2];
  1375.     float input1[N];
  1376.     float output1[N/2];
  1377.     float s, a, err, e, emax;
  1378.     int i, k, n;
  1379.     for(i=0;i<N;i++) {
  1380.         input[i] = (random() % 65535 - 32767) * 9 / 10;
  1381.         input1[i] = input[i];
  1382.     }
  1383.     mdct512(output, input);
  1384.     
  1385.     /* do it by hand */
  1386.     for(k=0;k<N/2;k++) {
  1387.         s = 0;
  1388.         for(n=0;n<N;n++) {
  1389.             a = (2*M_PI*(2*n+1+N/2)*(2*k+1) / (4 * N));
  1390.             s += input1[n] * cos(a);
  1391.         }
  1392.         output1[k] = -2 * s / N;
  1393.     }
  1394.     
  1395.     err = 0;
  1396.     emax = 0;
  1397.     for(i=0;i<N/2;i++) {
  1398.         printf("%3d: %7d %7.0fn", i, output[i], output1[i]);
  1399.         e = output[i] - output1[i];
  1400.         if (e > emax)
  1401.             emax = e;
  1402.         err += e * e;
  1403.     }
  1404.     printf("err2=%f emax=%fn", err / (N/2), emax);
  1405. }
  1406. void test_ac3(void)
  1407. {
  1408.     AC3EncodeContext ctx;
  1409.     unsigned char frame[AC3_MAX_CODED_FRAME_SIZE];
  1410.     short samples[AC3_FRAME_SIZE];
  1411.     int ret, i;
  1412.     
  1413.     AC3_encode_init(&ctx, 44100, 64000, 1);
  1414.     fft_test();
  1415.     mdct_test();
  1416.     for(i=0;i<AC3_FRAME_SIZE;i++)
  1417.         samples[i] = (int)(sin(2*M_PI*i*1000.0/44100) * 10000);
  1418.     ret = AC3_encode_frame(&ctx, frame, samples);
  1419.     printf("ret=%dn", ret);
  1420. }
  1421. #endif
  1422. AVCodec ac3_encoder = {
  1423.     "ac3",
  1424.     CODEC_TYPE_AUDIO,
  1425.     CODEC_ID_AC3,
  1426.     sizeof(AC3EncodeContext),
  1427.     AC3_encode_init,
  1428.     AC3_encode_frame,
  1429.     AC3_encode_close,
  1430.     NULL,
  1431. };