parse.c
上传用户:xjjlds
上传日期:2015-12-05
资源大小:22823k
文件大小:23k
源码类别:

多媒体编程

开发平台:

Visual C++

  1. /*
  2.  * parse.c
  3.  * Copyright (C) 2000-2002 Michel Lespinasse <walken@zoy.org>
  4.  * Copyright (C) 1999-2000 Aaron Holtzman <aholtzma@ess.engr.uvic.ca>
  5.  *
  6.  * This file is part of a52dec, a free ATSC A-52 stream decoder.
  7.  * See http://liba52.sourceforge.net/ for updates.
  8.  *
  9.  * a52dec is free software; you can redistribute it and/or modify
  10.  * it under the terms of the GNU General Public License as published by
  11.  * the Free Software Foundation; either version 2 of the License, or
  12.  * (at your option) any later version.
  13.  *
  14.  * a52dec is distributed in the hope that it will be useful,
  15.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.  * GNU General Public License for more details.
  18.  *
  19.  * You should have received a copy of the GNU General Public License
  20.  * along with this program; if not, write to the Free Software
  21.  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  22.  */
  23. #include "config.h"
  24. //#include <stdlib.h>
  25. void    __cdecl free(void *);
  26. void *  __cdecl malloc(size_t);
  27. #include <string.h>
  28. #include <inttypes.h>
  29. #include "a52.h"
  30. #include "a52_internal.h"
  31. #include "bitstream.h"
  32. #include "tables.h"
  33. #ifdef HAVE_MEMALIGN
  34. /* some systems have memalign() but no declaration for it */
  35. void * memalign (size_t align, size_t size);
  36. #else
  37. /* assume malloc alignment is sufficient */
  38. #define memalign(align,size) malloc (size)
  39. #endif
  40. typedef struct {
  41.     sample_t q1[2];
  42.     sample_t q2[2];
  43.     sample_t q4;
  44.     int q1_ptr;
  45.     int q2_ptr;
  46.     int q4_ptr;
  47. } quantizer_t;
  48. static uint8_t halfrate[12] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3};
  49. a52_state_t * a52_init (uint32_t mm_accel)
  50. {
  51.     a52_state_t * state;
  52.     int i;
  53.     state = malloc (sizeof (a52_state_t));
  54.     if (state == NULL)
  55. return NULL;
  56.     state->samples = memalign (16, 256 * 12 * sizeof (sample_t));
  57.     if (state->samples == NULL) {
  58. free (state);
  59. return NULL;
  60.     }
  61.     for (i = 0; i < 256 * 12; i++)
  62. state->samples[i] = 0;
  63.     state->downmixed = 1;
  64.     state->lfsr_state = 1;
  65.     a52_imdct_init (mm_accel);
  66.     return state;
  67. }
  68. sample_t * a52_samples (a52_state_t * state)
  69. {
  70.     return state->samples;
  71. }
  72. int a52_syncinfo (uint8_t * buf, int * flags,
  73.   int * sample_rate, int * bit_rate)
  74. {
  75.     static int rate[] = { 32,  40,  48,  56,  64,  80,  96, 112,
  76.  128, 160, 192, 224, 256, 320, 384, 448,
  77.  512, 576, 640};
  78.     static uint8_t lfeon[8] = {0x10, 0x10, 0x04, 0x04, 0x04, 0x01, 0x04, 0x01};
  79.     int frmsizecod;
  80.     int bitrate;
  81.     int half;
  82.     int acmod;
  83.     if ((buf[0] != 0x0b) || (buf[1] != 0x77)) /* syncword */
  84. return 0;
  85.     if (buf[5] >= 0x60) /* bsid >= 12 */
  86. return 0;
  87.     half = halfrate[buf[5] >> 3];
  88.     /* acmod, dsurmod and lfeon */
  89.     acmod = buf[6] >> 5;
  90.     *flags = ((((buf[6] & 0xf8) == 0x50) ? A52_DOLBY : acmod) |
  91.       ((buf[6] & lfeon[acmod]) ? A52_LFE : 0));
  92.     frmsizecod = buf[4] & 63;
  93.     if (frmsizecod >= 38)
  94. return 0;
  95.     bitrate = rate [frmsizecod >> 1];
  96.     *bit_rate = (bitrate * 1000) >> half;
  97.     switch (buf[4] & 0xc0) {
  98.     case 0:
  99. *sample_rate = 48000 >> half;
  100. return 4 * bitrate;
  101.     case 0x40:
  102. *sample_rate = 44100 >> half;
  103. return 2 * (320 * bitrate / 147 + (frmsizecod & 1));
  104.     case 0x80:
  105. *sample_rate = 32000 >> half;
  106. return 6 * bitrate;
  107.     default:
  108. return 0;
  109.     }
  110. }
  111. int a52_frame (a52_state_t * state, uint8_t * buf, int * flags,
  112.        sample_t * level, sample_t bias)
  113. {
  114.     static sample_t clev[4] = {LEVEL_3DB, LEVEL_45DB, LEVEL_6DB, LEVEL_45DB};
  115.     static sample_t slev[4] = {LEVEL_3DB, LEVEL_6DB, 0, LEVEL_6DB};
  116.     int chaninfo;
  117.     int acmod;
  118.     state->fscod = buf[4] >> 6;
  119.     state->halfrate = halfrate[buf[5] >> 3];
  120.     state->acmod = acmod = buf[6] >> 5;
  121.     a52_bitstream_set_ptr (state, buf + 6);
  122.     bitstream_get (state, 3); /* skip acmod we already parsed */
  123.     if ((acmod == 2) && (bitstream_get (state, 2) == 2)) /* dsurmod */
  124. acmod = A52_DOLBY;
  125.     if ((acmod & 1) && (acmod != 1))
  126. state->clev = clev[bitstream_get (state, 2)]; /* cmixlev */
  127.     if (acmod & 4)
  128. state->slev = slev[bitstream_get (state, 2)]; /* surmixlev */
  129.     state->lfeon = bitstream_get (state, 1);
  130.     state->output = a52_downmix_init (acmod, *flags, level,
  131.       state->clev, state->slev);
  132.     if (state->output < 0)
  133. return 1;
  134.     if (state->lfeon && (*flags & A52_LFE))
  135. state->output |= A52_LFE;
  136.     *flags = state->output;
  137.     /* the 2* compensates for differences in imdct */
  138.     state->dynrng = state->level = 2 * *level;
  139.     state->bias = bias;
  140.     state->dynrnge = 1;
  141.     state->dynrngcall = NULL;
  142.     state->cplba.deltbae = DELTA_BIT_NONE;
  143.     state->ba[0].deltbae = state->ba[1].deltbae = state->ba[2].deltbae =
  144. state->ba[3].deltbae = state->ba[4].deltbae = DELTA_BIT_NONE;
  145.     chaninfo = !acmod;
  146.     do {
  147. bitstream_get (state, 5); /* dialnorm */
  148. if (bitstream_get (state, 1)) /* compre */
  149.     bitstream_get (state, 8); /* compr */
  150. if (bitstream_get (state, 1)) /* langcode */
  151.     bitstream_get (state, 8); /* langcod */
  152. if (bitstream_get (state, 1)) /* audprodie */
  153.     bitstream_get (state, 7); /* mixlevel + roomtyp */
  154.     } while (chaninfo--);
  155.     bitstream_get (state, 2); /* copyrightb + origbs */
  156.     if (bitstream_get (state, 1)) /* timecod1e */
  157. bitstream_get (state, 14); /* timecod1 */
  158.     if (bitstream_get (state, 1)) /* timecod2e */
  159. bitstream_get (state, 14); /* timecod2 */
  160.     if (bitstream_get (state, 1)) { /* addbsie */
  161. int addbsil;
  162. addbsil = bitstream_get (state, 6);
  163. do {
  164.     bitstream_get (state, 8); /* addbsi */
  165. } while (addbsil--);
  166.     }
  167.     return 0;
  168. }
  169. void a52_dynrng (a52_state_t * state,
  170.  sample_t (* call) (sample_t, void *), void * data)
  171. {
  172.     state->dynrnge = 0;
  173.     if (call) {
  174. state->dynrnge = 1;
  175. state->dynrngcall = call;
  176. state->dynrngdata = data;
  177.     }
  178. }
  179. static int parse_exponents (a52_state_t * state, int expstr, int ngrps,
  180.     uint8_t exponent, uint8_t * dest)
  181. {
  182.     int exps;
  183.     while (ngrps--) {
  184. exps = bitstream_get (state, 7);
  185. exponent += exp_1[exps];
  186. if (exponent > 24)
  187.     return 1;
  188. switch (expstr) {
  189. case EXP_D45:
  190.     *(dest++) = exponent;
  191.     *(dest++) = exponent;
  192. case EXP_D25:
  193.     *(dest++) = exponent;
  194. case EXP_D15:
  195.     *(dest++) = exponent;
  196. }
  197. exponent += exp_2[exps];
  198. if (exponent > 24)
  199.     return 1;
  200. switch (expstr) {
  201. case EXP_D45:
  202.     *(dest++) = exponent;
  203.     *(dest++) = exponent;
  204. case EXP_D25:
  205.     *(dest++) = exponent;
  206. case EXP_D15:
  207.     *(dest++) = exponent;
  208. }
  209. exponent += exp_3[exps];
  210. if (exponent > 24)
  211.     return 1;
  212. switch (expstr) {
  213. case EXP_D45:
  214.     *(dest++) = exponent;
  215.     *(dest++) = exponent;
  216. case EXP_D25:
  217.     *(dest++) = exponent;
  218. case EXP_D15:
  219.     *(dest++) = exponent;
  220. }
  221.     }
  222.     return 0;
  223. }
  224. static int parse_deltba (a52_state_t * state, int8_t * deltba)
  225. {
  226.     int deltnseg, deltlen, delta, j;
  227.     memset (deltba, 0, 50);
  228.     deltnseg = bitstream_get (state, 3);
  229.     j = 0;
  230.     do {
  231. j += bitstream_get (state, 5);
  232. deltlen = bitstream_get (state, 4);
  233. delta = bitstream_get (state, 3);
  234. delta -= (delta >= 4) ? 3 : 4;
  235. if (!deltlen)
  236.     continue;
  237. if (j + deltlen >= 50)
  238.     return 1;
  239. while (deltlen--)
  240.     deltba[j++] = delta;
  241.     } while (deltnseg--);
  242.     return 0;
  243. }
  244. static inline int zero_snr_offsets (int nfchans, a52_state_t * state)
  245. {
  246.     int i;
  247.     if ((state->csnroffst) ||
  248. (state->chincpl && state->cplba.bai >> 3) || /* cplinu, fsnroffst */
  249. (state->lfeon && state->lfeba.bai >> 3)) /* fsnroffst */
  250. return 0;
  251.     for (i = 0; i < nfchans; i++)
  252. if (state->ba[i].bai >> 3) /* fsnroffst */
  253.     return 0;
  254.     return 1;
  255. }
  256. static inline int16_t dither_gen (a52_state_t * state)
  257. {
  258.     int16_t nstate;
  259.     nstate = dither_lut[state->lfsr_state >> 8] ^ (state->lfsr_state << 8);
  260.     state->lfsr_state = (uint16_t) nstate;
  261.     return nstate;
  262. }
  263. static void coeff_get (a52_state_t * state, sample_t * coeff,
  264.        expbap_t * expbap, quantizer_t * quantizer,
  265.        sample_t level, int dither, int end)
  266. {
  267.     int i;
  268.     uint8_t * exp;
  269.     int8_t * bap;
  270.     sample_t factor[25];
  271.     for (i = 0; i <= 24; i++)
  272. factor[i] = scale_factor[i] * level;
  273.     exp = expbap->exp;
  274.     bap = expbap->bap;
  275.     for (i = 0; i < end; i++) {
  276. int bapi;
  277. bapi = bap[i];
  278. switch (bapi) {
  279. case 0:
  280.     if (dither) {
  281. coeff[i] = dither_gen (state) * LEVEL_3DB * factor[exp[i]];
  282. continue;
  283.     } else {
  284. coeff[i] = 0;
  285. continue;
  286.     }
  287. case -1:
  288.     if (quantizer->q1_ptr >= 0) {
  289. coeff[i] = quantizer->q1[quantizer->q1_ptr--] * factor[exp[i]];
  290. continue;
  291.     } else {
  292. int code;
  293. code = bitstream_get (state, 5);
  294. quantizer->q1_ptr = 1;
  295. quantizer->q1[0] = q_1_2[code];
  296. quantizer->q1[1] = q_1_1[code];
  297. coeff[i] = q_1_0[code] * factor[exp[i]];
  298. continue;
  299.     }
  300. case -2:
  301.     if (quantizer->q2_ptr >= 0) {
  302. coeff[i] = quantizer->q2[quantizer->q2_ptr--] * factor[exp[i]];
  303. continue;
  304.     } else {
  305. int code;
  306. code = bitstream_get (state, 7);
  307. quantizer->q2_ptr = 1;
  308. quantizer->q2[0] = q_2_2[code];
  309. quantizer->q2[1] = q_2_1[code];
  310. coeff[i] = q_2_0[code] * factor[exp[i]];
  311. continue;
  312.     }
  313. case 3:
  314.     coeff[i] = q_3[bitstream_get (state, 3)] * factor[exp[i]];
  315.     continue;
  316. case -3:
  317.     if (quantizer->q4_ptr == 0) {
  318. quantizer->q4_ptr = -1;
  319. coeff[i] = quantizer->q4 * factor[exp[i]];
  320. continue;
  321.     } else {
  322. int code;
  323. code = bitstream_get (state, 7);
  324. quantizer->q4_ptr = 0;
  325. quantizer->q4 = q_4_1[code];
  326. coeff[i] = q_4_0[code] * factor[exp[i]];
  327. continue;
  328.     }
  329. case 4:
  330.     coeff[i] = q_5[bitstream_get (state, 4)] * factor[exp[i]];
  331.     continue;
  332. default:
  333.     coeff[i] = ((bitstream_get_2 (state, bapi) << (16 - bapi)) *
  334.   factor[exp[i]]);
  335. }
  336.     }
  337. }
  338. static void coeff_get_coupling (a52_state_t * state, int nfchans,
  339. sample_t * coeff, sample_t (* samples)[256],
  340. quantizer_t * quantizer, uint8_t dithflag[5])
  341. {
  342.     int cplbndstrc, bnd, i, i_end, ch;
  343.     uint8_t * exp;
  344.     int8_t * bap;
  345.     sample_t cplco[5];
  346.     exp = state->cpl_expbap.exp;
  347.     bap = state->cpl_expbap.bap;
  348.     bnd = 0;
  349.     cplbndstrc = state->cplbndstrc;
  350.     i = state->cplstrtmant;
  351.     while (i < state->cplendmant) {
  352. i_end = i + 12;
  353. while (cplbndstrc & 1) {
  354.     cplbndstrc >>= 1;
  355.     i_end += 12;
  356. }
  357. cplbndstrc >>= 1;
  358. for (ch = 0; ch < nfchans; ch++)
  359.     cplco[ch] = state->cplco[ch][bnd] * coeff[ch];
  360. bnd++;
  361. while (i < i_end) {
  362.     sample_t cplcoeff;
  363.     int bapi;
  364.     bapi = bap[i];
  365.     switch (bapi) {
  366.     case 0:
  367. cplcoeff = LEVEL_3DB * scale_factor[exp[i]];
  368. for (ch = 0; ch < nfchans; ch++)
  369.     if ((state->chincpl >> ch) & 1) {
  370. if (dithflag[ch])
  371.     samples[ch][i] = (cplcoeff * cplco[ch] *
  372.       dither_gen (state));
  373. else
  374.     samples[ch][i] = 0;
  375.     }
  376. i++;
  377. continue;
  378.     case -1:
  379. if (quantizer->q1_ptr >= 0) {
  380.     cplcoeff = quantizer->q1[quantizer->q1_ptr--];
  381.     break;
  382. } else {
  383.     int code;
  384.     code = bitstream_get (state, 5);
  385.     quantizer->q1_ptr = 1;
  386.     quantizer->q1[0] = q_1_2[code];
  387.     quantizer->q1[1] = q_1_1[code];
  388.     cplcoeff = q_1_0[code];
  389.     break;
  390. }
  391.     case -2:
  392. if (quantizer->q2_ptr >= 0) {
  393.     cplcoeff = quantizer->q2[quantizer->q2_ptr--];
  394.     break;
  395. } else {
  396.     int code;
  397.     code = bitstream_get (state, 7);
  398.     quantizer->q2_ptr = 1;
  399.     quantizer->q2[0] = q_2_2[code];
  400.     quantizer->q2[1] = q_2_1[code];
  401.     cplcoeff = q_2_0[code];
  402.     break;
  403. }
  404.     case 3:
  405. cplcoeff = q_3[bitstream_get (state, 3)];
  406. break;
  407.     case -3:
  408. if (quantizer->q4_ptr == 0) {
  409.     quantizer->q4_ptr = -1;
  410.     cplcoeff = quantizer->q4;
  411.     break;
  412. } else {
  413.     int code;
  414.     code = bitstream_get (state, 7);
  415.     quantizer->q4_ptr = 0;
  416.     quantizer->q4 = q_4_1[code];
  417.     cplcoeff = q_4_0[code];
  418.     break;
  419. }
  420.     case 4:
  421. cplcoeff = q_5[bitstream_get (state, 4)];
  422. break;
  423.     default:
  424. cplcoeff = bitstream_get_2 (state, bapi) << (16 - bapi);
  425.     }
  426.     cplcoeff *= scale_factor[exp[i]];
  427.     for (ch = 0; ch < nfchans; ch++)
  428. if ((state->chincpl >> ch) & 1)
  429.     samples[ch][i] = cplcoeff * cplco[ch];
  430.     i++;
  431. }
  432.     }
  433. }
  434. int a52_block (a52_state_t * state)
  435. {
  436.     static const uint8_t nfchans_tbl[] = {2, 1, 2, 3, 3, 4, 4, 5, 1, 1, 2};
  437.     static int rematrix_band[4] = {25, 37, 61, 253};
  438.     int i, nfchans, chaninfo;
  439.     uint8_t cplexpstr, chexpstr[5], lfeexpstr, do_bit_alloc, done_cpl;
  440.     uint8_t blksw[5], dithflag[5];
  441.     sample_t coeff[5];
  442.     int chanbias;
  443.     quantizer_t quantizer;
  444.     sample_t * samples;
  445.     nfchans = nfchans_tbl[state->acmod];
  446.     for (i = 0; i < nfchans; i++)
  447. blksw[i] = bitstream_get (state, 1);
  448.     for (i = 0; i < nfchans; i++)
  449. dithflag[i] = bitstream_get (state, 1);
  450.     chaninfo = !state->acmod;
  451.     do {
  452. if (bitstream_get (state, 1)) { /* dynrnge */
  453.     int dynrng;
  454.     dynrng = bitstream_get_2 (state, 8);
  455.     if (state->dynrnge) {
  456. sample_t range;
  457. range = ((((dynrng & 0x1f) | 0x20) << 13) *
  458.  scale_factor[3 - (dynrng >> 5)]);
  459. if (state->dynrngcall)
  460.     range = state->dynrngcall (range, state->dynrngdata);
  461. state->dynrng = state->level * range;
  462.     }
  463. }
  464.     } while (chaninfo--);
  465.     if (bitstream_get (state, 1)) { /* cplstre */
  466. state->chincpl = 0;
  467. if (bitstream_get (state, 1)) { /* cplinu */
  468.     static uint8_t bndtab[16] = {31, 35, 37, 39, 41, 42, 43, 44,
  469.  45, 45, 46, 46, 47, 47, 48, 48};
  470.     int cplbegf;
  471.     int cplendf;
  472.     int ncplsubnd;
  473.     for (i = 0; i < nfchans; i++)
  474. state->chincpl |= bitstream_get (state, 1) << i;
  475.     switch (state->acmod) {
  476.     case 0: case 1:
  477. return 1;
  478.     case 2:
  479. state->phsflginu = bitstream_get (state, 1);
  480.     }
  481.     cplbegf = bitstream_get (state, 4);
  482.     cplendf = bitstream_get (state, 4);
  483.     if (cplendf + 3 - cplbegf < 0)
  484. return 1;
  485.     state->ncplbnd = ncplsubnd = cplendf + 3 - cplbegf;
  486.     state->cplstrtbnd = bndtab[cplbegf];
  487.     state->cplstrtmant = cplbegf * 12 + 37;
  488.     state->cplendmant = cplendf * 12 + 73;
  489.     state->cplbndstrc = 0;
  490.     for (i = 0; i < ncplsubnd - 1; i++)
  491. if (bitstream_get (state, 1)) {
  492.     state->cplbndstrc |= 1 << i;
  493.     state->ncplbnd--;
  494. }
  495. }
  496.     }
  497.     if (state->chincpl) { /* cplinu */
  498. int j, cplcoe;
  499. cplcoe = 0;
  500. for (i = 0; i < nfchans; i++)
  501.     if ((state->chincpl) >> i & 1)
  502. if (bitstream_get (state, 1)) { /* cplcoe */
  503.     int mstrcplco, cplcoexp, cplcomant;
  504.     cplcoe = 1;
  505.     mstrcplco = 3 * bitstream_get (state, 2);
  506.     for (j = 0; j < state->ncplbnd; j++) {
  507. cplcoexp = bitstream_get (state, 4);
  508. cplcomant = bitstream_get (state, 4);
  509. if (cplcoexp == 15)
  510.     cplcomant <<= 14;
  511. else
  512.     cplcomant = (cplcomant | 0x10) << 13;
  513. state->cplco[i][j] =
  514.     cplcomant * scale_factor[cplcoexp + mstrcplco];
  515.     }
  516. }
  517. if ((state->acmod == 2) && state->phsflginu && cplcoe)
  518.     for (j = 0; j < state->ncplbnd; j++)
  519. if (bitstream_get (state, 1)) /* phsflg */
  520.     state->cplco[1][j] = -state->cplco[1][j];
  521.     }
  522.     if ((state->acmod == 2) && (bitstream_get (state, 1))) { /* rematstr */
  523. int end;
  524. state->rematflg = 0;
  525. end = (state->chincpl) ? state->cplstrtmant : 253; /* cplinu */
  526. i = 0;
  527. do
  528.     state->rematflg |= bitstream_get (state, 1) << i;
  529. while (rematrix_band[i++] < end);
  530.     }
  531.     cplexpstr = EXP_REUSE;
  532.     lfeexpstr = EXP_REUSE;
  533.     if (state->chincpl) /* cplinu */
  534. cplexpstr = bitstream_get (state, 2);
  535.     for (i = 0; i < nfchans; i++)
  536. chexpstr[i] = bitstream_get (state, 2);
  537.     if (state->lfeon) 
  538. lfeexpstr = bitstream_get (state, 1);
  539.     for (i = 0; i < nfchans; i++)
  540. if (chexpstr[i] != EXP_REUSE) {
  541.     if ((state->chincpl >> i) & 1)
  542. state->endmant[i] = state->cplstrtmant;
  543.     else {
  544. int chbwcod;
  545. chbwcod = bitstream_get (state, 6);
  546. if (chbwcod > 60)
  547.     return 1;
  548. state->endmant[i] = chbwcod * 3 + 73;
  549.     }
  550. }
  551.     do_bit_alloc = 0;
  552.     if (cplexpstr != EXP_REUSE) {
  553. int cplabsexp, ncplgrps;
  554. do_bit_alloc = 64;
  555. ncplgrps = ((state->cplendmant - state->cplstrtmant) /
  556.     (3 << (cplexpstr - 1)));
  557. cplabsexp = bitstream_get (state, 4) << 1;
  558. if (parse_exponents (state, cplexpstr, ncplgrps, cplabsexp,
  559.      state->cpl_expbap.exp + state->cplstrtmant))
  560.     return 1;
  561.     }
  562.     for (i = 0; i < nfchans; i++)
  563. if (chexpstr[i] != EXP_REUSE) {
  564.     int grp_size, nchgrps;
  565.     do_bit_alloc |= 1 << i;
  566.     grp_size = 3 << (chexpstr[i] - 1);
  567.     nchgrps = (state->endmant[i] + grp_size - 4) / grp_size;
  568.     state->fbw_expbap[i].exp[0] = bitstream_get (state, 4);
  569.     if (parse_exponents (state, chexpstr[i], nchgrps,
  570.  state->fbw_expbap[i].exp[0],
  571.  state->fbw_expbap[i].exp + 1))
  572. return 1;
  573.     bitstream_get (state, 2); /* gainrng */
  574. }
  575.     if (lfeexpstr != EXP_REUSE) {
  576. do_bit_alloc |= 32;
  577. state->lfe_expbap.exp[0] = bitstream_get (state, 4);
  578. if (parse_exponents (state, lfeexpstr, 2, state->lfe_expbap.exp[0],
  579.      state->lfe_expbap.exp + 1))
  580.     return 1;
  581.     }
  582.     if (bitstream_get (state, 1)) { /* baie */
  583. do_bit_alloc = -1;
  584. state->bai = bitstream_get (state, 11);
  585.     }
  586.     if (bitstream_get (state, 1)) { /* snroffste */
  587. do_bit_alloc = -1;
  588. state->csnroffst = bitstream_get (state, 6);
  589. if (state->chincpl) /* cplinu */
  590.     state->cplba.bai = bitstream_get (state, 7);
  591. for (i = 0; i < nfchans; i++)
  592.     state->ba[i].bai = bitstream_get (state, 7);
  593. if (state->lfeon)
  594.     state->lfeba.bai = bitstream_get (state, 7);
  595.     }
  596.     if ((state->chincpl) && (bitstream_get (state, 1))) { /* cplleake */
  597. do_bit_alloc |= 64;
  598. state->cplfleak = 9 - bitstream_get (state, 3);
  599. state->cplsleak = 9 - bitstream_get (state, 3);
  600.     }
  601.     if (bitstream_get (state, 1)) { /* deltbaie */
  602. do_bit_alloc = -1;
  603. if (state->chincpl) /* cplinu */
  604.     state->cplba.deltbae = bitstream_get (state, 2);
  605. for (i = 0; i < nfchans; i++)
  606.     state->ba[i].deltbae = bitstream_get (state, 2);
  607. if (state->chincpl && /* cplinu */
  608.     (state->cplba.deltbae == DELTA_BIT_NEW) &&
  609.     parse_deltba (state, state->cplba.deltba))
  610.     return 1;
  611. for (i = 0; i < nfchans; i++)
  612.     if ((state->ba[i].deltbae == DELTA_BIT_NEW) &&
  613. parse_deltba (state, state->ba[i].deltba))
  614. return 1;
  615.     }
  616.     if (do_bit_alloc) {
  617. if (zero_snr_offsets (nfchans, state)) {
  618.     memset (state->cpl_expbap.bap, 0, sizeof (state->cpl_expbap.bap));
  619.     for (i = 0; i < nfchans; i++)
  620. memset (state->fbw_expbap[i].bap, 0,
  621. sizeof (state->fbw_expbap[i].bap));
  622.     memset (state->lfe_expbap.bap, 0, sizeof (state->lfe_expbap.bap));
  623. } else {
  624.     if (state->chincpl && (do_bit_alloc & 64)) /* cplinu */
  625. a52_bit_allocate (state, &state->cplba, state->cplstrtbnd,
  626.   state->cplstrtmant, state->cplendmant,
  627.   state->cplfleak << 8, state->cplsleak << 8,
  628.   &state->cpl_expbap);
  629.     for (i = 0; i < nfchans; i++)
  630. if (do_bit_alloc & (1 << i))
  631.     a52_bit_allocate (state, state->ba + i, 0, 0,
  632.       state->endmant[i], 0, 0,
  633.       state->fbw_expbap +i);
  634.     if (state->lfeon && (do_bit_alloc & 32)) {
  635. state->lfeba.deltbae = DELTA_BIT_NONE;
  636. a52_bit_allocate (state, &state->lfeba, 0, 0, 7, 0, 0,
  637.   &state->lfe_expbap);
  638.     }
  639. }
  640.     }
  641.     if (bitstream_get (state, 1)) { /* skiple */
  642. i = bitstream_get (state, 9); /* skipl */
  643. while (i--)
  644.     bitstream_get (state, 8);
  645.     }
  646.     samples = state->samples;
  647.     if (state->output & A52_LFE)
  648. samples += 256; /* shift for LFE channel */
  649.     chanbias = a52_downmix_coeff (coeff, state->acmod, state->output,
  650.   state->dynrng, state->clev, state->slev);
  651.     quantizer.q1_ptr = quantizer.q2_ptr = quantizer.q4_ptr = -1;
  652.     done_cpl = 0;
  653.     for (i = 0; i < nfchans; i++) {
  654. int j;
  655. coeff_get (state, samples + 256 * i, state->fbw_expbap +i, &quantizer,
  656.    coeff[i], dithflag[i], state->endmant[i]);
  657. if ((state->chincpl >> i) & 1) {
  658.     if (!done_cpl) {
  659. done_cpl = 1;
  660. coeff_get_coupling (state, nfchans, coeff,
  661.     (sample_t (*)[256])samples, &quantizer,
  662.     dithflag);
  663.     }
  664.     j = state->cplendmant;
  665. } else
  666.     j = state->endmant[i];
  667. do
  668.     (samples + 256 * i)[j] = 0;
  669. while (++j < 256);
  670.     }
  671.     if (state->acmod == 2) {
  672. int j, end, band, rematflg;
  673. end = ((state->endmant[0] < state->endmant[1]) ?
  674.        state->endmant[0] : state->endmant[1]);
  675. i = 0;
  676. j = 13;
  677. rematflg = state->rematflg;
  678. do {
  679.     if (! (rematflg & 1)) {
  680. rematflg >>= 1;
  681. j = rematrix_band[i++];
  682. continue;
  683.     }
  684.     rematflg >>= 1;
  685.     band = rematrix_band[i++];
  686.     if (band > end)
  687. band = end;
  688.     do {
  689. sample_t tmp0, tmp1;
  690. tmp0 = samples[j];
  691. tmp1 = (samples+256)[j];
  692. samples[j] = tmp0 + tmp1;
  693. (samples+256)[j] = tmp0 - tmp1;
  694.     } while (++j < band);
  695. } while (j < end);
  696.     }
  697.     if (state->lfeon) {
  698. if (state->output & A52_LFE) {
  699.     coeff_get (state, samples - 256, &state->lfe_expbap, &quantizer,
  700.        state->dynrng, 0, 7);
  701.     for (i = 7; i < 256; i++)
  702. (samples-256)[i] = 0;
  703.     a52_imdct_512 (samples - 256, samples + 1536 - 256, state->bias);
  704. } else {
  705.     /* just skip the LFE coefficients */
  706.     coeff_get (state, samples + 1280, &state->lfe_expbap, &quantizer,
  707.        0, 0, 7);
  708. }
  709.     }
  710.     i = 0;
  711.     if (nfchans_tbl[state->output & A52_CHANNEL_MASK] < nfchans)
  712. for (i = 1; i < nfchans; i++)
  713.     if (blksw[i] != blksw[0])
  714. break;
  715.     if (i < nfchans) {
  716. if (state->downmixed) {
  717.     state->downmixed = 0;
  718.     a52_upmix (samples + 1536, state->acmod, state->output);
  719. }
  720. for (i = 0; i < nfchans; i++) {
  721.     sample_t bias;
  722.     bias = 0;
  723.     if (!(chanbias & (1 << i)))
  724. bias = state->bias;
  725.     if (coeff[i]) {
  726. if (blksw[i])
  727.     a52_imdct_256 (samples + 256 * i, samples + 1536 + 256 * i,
  728.    bias);
  729. else 
  730.     a52_imdct_512 (samples + 256 * i, samples + 1536 + 256 * i,
  731.    bias);
  732.     } else {
  733. int j;
  734. for (j = 0; j < 256; j++)
  735.     (samples + 256 * i)[j] = bias;
  736.     }
  737. }
  738. a52_downmix (samples, state->acmod, state->output, state->bias,
  739.      state->clev, state->slev);
  740.     } else {
  741. nfchans = nfchans_tbl[state->output & A52_CHANNEL_MASK];
  742. a52_downmix (samples, state->acmod, state->output, 0,
  743.      state->clev, state->slev);
  744. if (!state->downmixed) {
  745.     state->downmixed = 1;
  746.     a52_downmix (samples + 1536, state->acmod, state->output, 0,
  747.  state->clev, state->slev);
  748. }
  749. if (blksw[0])
  750.     for (i = 0; i < nfchans; i++)
  751. a52_imdct_256 (samples + 256 * i, samples + 1536 + 256 * i,
  752.        state->bias);
  753. else 
  754.     for (i = 0; i < nfchans; i++)
  755. a52_imdct_512 (samples + 256 * i, samples + 1536 + 256 * i,
  756.        state->bias);
  757.     }
  758.     return 0;
  759. }
  760. void a52_free (a52_state_t * state)
  761. {
  762.     free (state->samples);
  763.     free (state);
  764. }