fix Cyberblade VidiX driver TVOUT patch by Benjamin Zores <ben@tutuxclan.org>
[mplayer.git] / liba52 / parse.c
blobbd87a35ec3afd0f2c6c92068cfea0b3ef01d2a55
1 /*
2 * parse.c
3 * Copyright (C) 2000-2001 Michel Lespinasse <walken@zoy.org>
4 * Copyright (C) 1999-2000 Aaron Holtzman <aholtzma@ess.engr.uvic.ca>
6 * This file is part of a52dec, a free ATSC A-52 stream decoder.
7 * See http://liba52.sourceforge.net/ for updates.
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.
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.
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
24 #include "config.h"
26 #include <stdlib.h>
27 #include <string.h>
28 #include <inttypes.h>
30 #include "a52.h"
31 #include "a52_internal.h"
32 #include "bitstream.h"
33 #include "tables.h"
34 #include "mm_accel.h"
36 #ifdef HAVE_MEMALIGN
37 /* some systems have memalign() but no declaration for it */
38 void * memalign (size_t align, size_t size);
39 #endif
41 typedef struct {
42 sample_t q1[2];
43 sample_t q2[2];
44 sample_t q4;
45 int q1_ptr;
46 int q2_ptr;
47 int q4_ptr;
48 } quantizer_t;
50 static uint8_t halfrate[12] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3};
52 sample_t * a52_init (uint32_t mm_accel)
54 sample_t * samples;
55 int i;
57 samples = memalign (16, 256 * 12 * sizeof (sample_t));
58 #if defined(__MINGW32__) && defined(HAVE_SSE)
59 for(i=0;i<10;i++){
60 if((int)samples%16){
61 sample_t* samplestmp=malloc(256 * 12 * sizeof (sample_t));
62 free(samples);
63 samples = samplestmp;
65 else break;
67 #endif
68 if(((int)samples%16) && (mm_accel&MM_ACCEL_X86_SSE)){
69 mm_accel &=~MM_ACCEL_X86_SSE;
70 printf("liba52: unable to get 16 byte aligned memory disabling usage of SSE instructions\n");
73 if (samples == NULL)
74 return NULL;
76 imdct_init (mm_accel);
77 downmix_accel_init(mm_accel);
79 for (i = 0; i < 256 * 12; i++)
80 samples[i] = 0;
82 return samples;
85 int a52_syncinfo (uint8_t * buf, int * flags,
86 int * sample_rate, int * bit_rate)
88 static int rate[] = { 32, 40, 48, 56, 64, 80, 96, 112,
89 128, 160, 192, 224, 256, 320, 384, 448,
90 512, 576, 640};
91 static uint8_t lfeon[8] = {0x10, 0x10, 0x04, 0x04, 0x04, 0x01, 0x04, 0x01};
92 int frmsizecod;
93 int bitrate;
94 int half;
95 int acmod;
97 if ((buf[0] != 0x0b) || (buf[1] != 0x77)) /* syncword */
98 return 0;
100 if (buf[5] >= 0x60) /* bsid >= 12 */
101 return 0;
102 half = halfrate[buf[5] >> 3];
104 /* acmod, dsurmod and lfeon */
105 acmod = buf[6] >> 5;
106 *flags = ((((buf[6] & 0xf8) == 0x50) ? A52_DOLBY : acmod) |
107 ((buf[6] & lfeon[acmod]) ? A52_LFE : 0));
109 frmsizecod = buf[4] & 63;
110 if (frmsizecod >= 38)
111 return 0;
112 bitrate = rate [frmsizecod >> 1];
113 *bit_rate = (bitrate * 1000) >> half;
115 switch (buf[4] & 0xc0) {
116 case 0: /* 48 KHz */
117 *sample_rate = 48000 >> half;
118 return 4 * bitrate;
119 case 0x40:
120 *sample_rate = 44100 >> half;
121 return 2 * (320 * bitrate / 147 + (frmsizecod & 1));
122 case 0x80:
123 *sample_rate = 32000 >> half;
124 return 6 * bitrate;
125 default:
126 return 0;
130 int a52_frame (a52_state_t * state, uint8_t * buf, int * flags,
131 sample_t * level, sample_t bias)
133 static sample_t clev[4] = {LEVEL_3DB, LEVEL_45DB, LEVEL_6DB, LEVEL_45DB};
134 static sample_t slev[4] = {LEVEL_3DB, LEVEL_6DB, 0, LEVEL_6DB};
135 int chaninfo;
136 int acmod;
138 state->fscod = buf[4] >> 6;
139 state->halfrate = halfrate[buf[5] >> 3];
140 state->acmod = acmod = buf[6] >> 5;
142 bitstream_set_ptr (buf + 6);
143 bitstream_skip (3); /* skip acmod we already parsed */
145 if ((acmod == 2) && (bitstream_get (2) == 2)) /* dsurmod */
146 acmod = A52_DOLBY;
148 if ((acmod & 1) && (acmod != 1))
149 state->clev = clev[bitstream_get (2)]; /* cmixlev */
151 if (acmod & 4)
152 state->slev = slev[bitstream_get (2)]; /* surmixlev */
154 state->lfeon = bitstream_get (1);
156 state->output = downmix_init (acmod, *flags, level,
157 state->clev, state->slev);
158 if (state->output < 0)
159 return 1;
160 if (state->lfeon && (*flags & A52_LFE))
161 state->output |= A52_LFE;
162 *flags = state->output;
163 /* the 2* compensates for differences in imdct */
164 state->dynrng = state->level = 2 * *level;
165 state->bias = bias;
166 state->dynrnge = 1;
167 state->dynrngcall = NULL;
169 chaninfo = !acmod;
170 do {
171 bitstream_skip (5); /* dialnorm */
172 if (bitstream_get (1)) /* compre */
173 bitstream_skip (8); /* compr */
174 if (bitstream_get (1)) /* langcode */
175 bitstream_skip (8); /* langcod */
176 if (bitstream_get (1)) /* audprodie */
177 bitstream_skip (7); /* mixlevel + roomtyp */
178 } while (chaninfo--);
180 bitstream_skip (2); /* copyrightb + origbs */
182 if (bitstream_get (1)) /* timecod1e */
183 bitstream_skip (14); /* timecod1 */
184 if (bitstream_get (1)) /* timecod2e */
185 bitstream_skip (14); /* timecod2 */
187 if (bitstream_get (1)) { /* addbsie */
188 int addbsil;
190 addbsil = bitstream_get (6);
191 do {
192 bitstream_skip (8); /* addbsi */
193 } while (addbsil--);
196 return 0;
199 void a52_dynrng (a52_state_t * state,
200 sample_t (* call) (sample_t, void *), void * data)
202 state->dynrnge = 0;
203 if (call) {
204 state->dynrnge = 1;
205 state->dynrngcall = call;
206 state->dynrngdata = data;
210 static int parse_exponents (int expstr, int ngrps, uint8_t exponent,
211 uint8_t * dest)
213 int exps;
215 while (ngrps--) {
216 exps = bitstream_get (7);
218 exponent += exp_1[exps];
219 if (exponent > 24)
220 return 1;
222 switch (expstr) {
223 case EXP_D45:
224 *(dest++) = exponent;
225 *(dest++) = exponent;
226 case EXP_D25:
227 *(dest++) = exponent;
228 case EXP_D15:
229 *(dest++) = exponent;
232 exponent += exp_2[exps];
233 if (exponent > 24)
234 return 1;
236 switch (expstr) {
237 case EXP_D45:
238 *(dest++) = exponent;
239 *(dest++) = exponent;
240 case EXP_D25:
241 *(dest++) = exponent;
242 case EXP_D15:
243 *(dest++) = exponent;
246 exponent += exp_3[exps];
247 if (exponent > 24)
248 return 1;
250 switch (expstr) {
251 case EXP_D45:
252 *(dest++) = exponent;
253 *(dest++) = exponent;
254 case EXP_D25:
255 *(dest++) = exponent;
256 case EXP_D15:
257 *(dest++) = exponent;
261 return 0;
264 static int parse_deltba (int8_t * deltba)
266 int deltnseg, deltlen, delta, j;
268 memset (deltba, 0, 50);
270 deltnseg = bitstream_get (3);
271 j = 0;
272 do {
273 j += bitstream_get (5);
274 deltlen = bitstream_get (4);
275 delta = bitstream_get (3);
276 delta -= (delta >= 4) ? 3 : 4;
277 if (!deltlen)
278 continue;
279 if (j + deltlen >= 50)
280 return 1;
281 while (deltlen--)
282 deltba[j++] = delta;
283 } while (deltnseg--);
285 return 0;
288 static inline int zero_snr_offsets (int nfchans, a52_state_t * state)
290 int i;
292 if ((state->csnroffst) || (state->cplinu && state->cplba.fsnroffst) ||
293 (state->lfeon && state->lfeba.fsnroffst))
294 return 0;
295 for (i = 0; i < nfchans; i++)
296 if (state->ba[i].fsnroffst)
297 return 0;
298 return 1;
301 static inline int16_t dither_gen (void)
303 static uint16_t lfsr_state = 1;
304 int16_t state;
306 state = dither_lut[lfsr_state >> 8] ^ (lfsr_state << 8);
308 lfsr_state = (uint16_t) state;
310 return state;
313 static void coeff_get (sample_t * coeff, uint8_t * exp, int8_t * bap,
314 quantizer_t * quantizer, sample_t level,
315 int dither, int end)
317 int i;
318 sample_t factor[25];
320 for (i = 0; i <= 24; i++)
321 factor[i] = scale_factor[i] * level;
323 for (i = 0; i < end; i++) {
324 int bapi;
326 bapi = bap[i];
327 switch (bapi) {
328 case 0:
329 if (dither) {
330 coeff[i] = dither_gen() * LEVEL_3DB * factor[exp[i]];
331 continue;
332 } else {
333 coeff[i] = 0;
334 continue;
337 case -1:
338 if (quantizer->q1_ptr >= 0) {
339 coeff[i] = quantizer->q1[quantizer->q1_ptr--] * factor[exp[i]];
340 continue;
341 } else {
342 int code;
344 code = bitstream_get (5);
346 quantizer->q1_ptr = 1;
347 quantizer->q1[0] = q_1_2[code];
348 quantizer->q1[1] = q_1_1[code];
349 coeff[i] = q_1_0[code] * factor[exp[i]];
350 continue;
353 case -2:
354 if (quantizer->q2_ptr >= 0) {
355 coeff[i] = quantizer->q2[quantizer->q2_ptr--] * factor[exp[i]];
356 continue;
357 } else {
358 int code;
360 code = bitstream_get (7);
362 quantizer->q2_ptr = 1;
363 quantizer->q2[0] = q_2_2[code];
364 quantizer->q2[1] = q_2_1[code];
365 coeff[i] = q_2_0[code] * factor[exp[i]];
366 continue;
369 case 3:
370 coeff[i] = q_3[bitstream_get (3)] * factor[exp[i]];
371 continue;
373 case -3:
374 if (quantizer->q4_ptr == 0) {
375 quantizer->q4_ptr = -1;
376 coeff[i] = quantizer->q4 * factor[exp[i]];
377 continue;
378 } else {
379 int code;
381 code = bitstream_get (7);
383 quantizer->q4_ptr = 0;
384 quantizer->q4 = q_4_1[code];
385 coeff[i] = q_4_0[code] * factor[exp[i]];
386 continue;
389 case 4:
390 coeff[i] = q_5[bitstream_get (4)] * factor[exp[i]];
391 continue;
393 default:
394 coeff[i] = ((bitstream_get_2 (bapi) << (16 - bapi)) *
395 factor[exp[i]]);
400 static void coeff_get_coupling (a52_state_t * state, int nfchans,
401 sample_t * coeff, sample_t (* samples)[256],
402 quantizer_t * quantizer, uint8_t dithflag[5])
404 int sub_bnd, bnd, i, i_end, ch;
405 int8_t * bap;
406 uint8_t * exp;
407 sample_t cplco[5];
409 bap = state->cpl_bap;
410 exp = state->cpl_exp;
411 sub_bnd = bnd = 0;
412 i = state->cplstrtmant;
413 while (i < state->cplendmant) {
414 i_end = i + 12;
415 while (state->cplbndstrc[sub_bnd++])
416 i_end += 12;
417 for (ch = 0; ch < nfchans; ch++)
418 cplco[ch] = state->cplco[ch][bnd] * coeff[ch];
419 bnd++;
421 while (i < i_end) {
422 sample_t cplcoeff;
423 int bapi;
425 bapi = bap[i];
426 switch (bapi) {
427 case 0:
428 cplcoeff = LEVEL_3DB * scale_factor[exp[i]];
429 for (ch = 0; ch < nfchans; ch++)
430 if (state->chincpl[ch]) {
431 if (dithflag[ch])
432 samples[ch][i] = (cplcoeff * cplco[ch] *
433 dither_gen ());
434 else
435 samples[ch][i] = 0;
437 i++;
438 continue;
440 case -1:
441 if (quantizer->q1_ptr >= 0) {
442 cplcoeff = quantizer->q1[quantizer->q1_ptr--];
443 break;
444 } else {
445 int code;
447 code = bitstream_get (5);
449 quantizer->q1_ptr = 1;
450 quantizer->q1[0] = q_1_2[code];
451 quantizer->q1[1] = q_1_1[code];
452 cplcoeff = q_1_0[code];
453 break;
456 case -2:
457 if (quantizer->q2_ptr >= 0) {
458 cplcoeff = quantizer->q2[quantizer->q2_ptr--];
459 break;
460 } else {
461 int code;
463 code = bitstream_get (7);
465 quantizer->q2_ptr = 1;
466 quantizer->q2[0] = q_2_2[code];
467 quantizer->q2[1] = q_2_1[code];
468 cplcoeff = q_2_0[code];
469 break;
472 case 3:
473 cplcoeff = q_3[bitstream_get (3)];
474 break;
476 case -3:
477 if (quantizer->q4_ptr == 0) {
478 quantizer->q4_ptr = -1;
479 cplcoeff = quantizer->q4;
480 break;
481 } else {
482 int code;
484 code = bitstream_get (7);
486 quantizer->q4_ptr = 0;
487 quantizer->q4 = q_4_1[code];
488 cplcoeff = q_4_0[code];
489 break;
492 case 4:
493 cplcoeff = q_5[bitstream_get (4)];
494 break;
496 default:
497 cplcoeff = bitstream_get_2 (bapi) << (16 - bapi);
500 cplcoeff *= scale_factor[exp[i]];
501 for (ch = 0; ch < nfchans; ch++)
502 if (state->chincpl[ch])
503 samples[ch][i] = cplcoeff * cplco[ch];
504 i++;
509 int a52_block (a52_state_t * state, sample_t * samples)
511 static const uint8_t nfchans_tbl[] = {2, 1, 2, 3, 3, 4, 4, 5, 1, 1, 2};
512 static int rematrix_band[4] = {25, 37, 61, 253};
513 int i, nfchans, chaninfo;
514 uint8_t cplexpstr, chexpstr[5], lfeexpstr, do_bit_alloc, done_cpl;
515 uint8_t blksw[5], dithflag[5];
516 sample_t coeff[5];
517 int chanbias;
518 quantizer_t quantizer;
520 nfchans = nfchans_tbl[state->acmod];
522 for (i = 0; i < nfchans; i++)
523 blksw[i] = bitstream_get (1);
525 for (i = 0; i < nfchans; i++)
526 dithflag[i] = bitstream_get (1);
528 chaninfo = !(state->acmod);
529 do {
530 if (bitstream_get (1)) { /* dynrnge */
531 int dynrng;
533 dynrng = bitstream_get_2 (8);
534 if (state->dynrnge) {
535 sample_t range;
537 range = ((((dynrng & 0x1f) | 0x20) << 13) *
538 scale_factor[3 - (dynrng >> 5)]);
539 if (state->dynrngcall)
540 range = state->dynrngcall (range, state->dynrngdata);
541 state->dynrng = state->level * range;
544 } while (chaninfo--);
546 if (bitstream_get (1)) { /* cplstre */
547 state->cplinu = bitstream_get (1);
548 if (state->cplinu) {
549 static int bndtab[16] = {31, 35, 37, 39, 41, 42, 43, 44,
550 45, 45, 46, 46, 47, 47, 48, 48};
551 int cplbegf;
552 int cplendf;
553 int ncplsubnd;
555 for (i = 0; i < nfchans; i++)
556 state->chincpl[i] = bitstream_get (1);
557 switch (state->acmod) {
558 case 0: case 1:
559 return 1;
560 case 2:
561 state->phsflginu = bitstream_get (1);
563 cplbegf = bitstream_get (4);
564 cplendf = bitstream_get (4);
566 if (cplendf + 3 - cplbegf < 0)
567 return 1;
568 state->ncplbnd = ncplsubnd = cplendf + 3 - cplbegf;
569 state->cplstrtbnd = bndtab[cplbegf];
570 state->cplstrtmant = cplbegf * 12 + 37;
571 state->cplendmant = cplendf * 12 + 73;
573 for (i = 0; i < ncplsubnd - 1; i++) {
574 state->cplbndstrc[i] = bitstream_get (1);
575 state->ncplbnd -= state->cplbndstrc[i];
577 state->cplbndstrc[i] = 0; /* last value is a sentinel */
581 if (state->cplinu) {
582 int j, cplcoe;
584 cplcoe = 0;
585 for (i = 0; i < nfchans; i++)
586 if (state->chincpl[i])
587 if (bitstream_get (1)) { /* cplcoe */
588 int mstrcplco, cplcoexp, cplcomant;
590 cplcoe = 1;
591 mstrcplco = 3 * bitstream_get (2);
592 for (j = 0; j < state->ncplbnd; j++) {
593 cplcoexp = bitstream_get (4);
594 cplcomant = bitstream_get (4);
595 if (cplcoexp == 15)
596 cplcomant <<= 14;
597 else
598 cplcomant = (cplcomant | 0x10) << 13;
599 state->cplco[i][j] =
600 cplcomant * scale_factor[cplcoexp + mstrcplco];
603 if ((state->acmod == 2) && state->phsflginu && cplcoe)
604 for (j = 0; j < state->ncplbnd; j++)
605 if (bitstream_get (1)) /* phsflg */
606 state->cplco[1][j] = -state->cplco[1][j];
609 if ((state->acmod == 2) && (bitstream_get (1))) { /* rematstr */
610 int end;
612 end = (state->cplinu) ? state->cplstrtmant : 253;
613 i = 0;
615 state->rematflg[i] = bitstream_get (1);
616 while (rematrix_band[i++] < end);
619 cplexpstr = EXP_REUSE;
620 lfeexpstr = EXP_REUSE;
621 if (state->cplinu)
622 cplexpstr = bitstream_get (2);
623 for (i = 0; i < nfchans; i++)
624 chexpstr[i] = bitstream_get (2);
625 if (state->lfeon)
626 lfeexpstr = bitstream_get (1);
628 for (i = 0; i < nfchans; i++)
629 if (chexpstr[i] != EXP_REUSE) {
630 if (state->cplinu && state->chincpl[i])
631 state->endmant[i] = state->cplstrtmant;
632 else {
633 int chbwcod;
635 chbwcod = bitstream_get (6);
636 if (chbwcod > 60)
637 return 1;
638 state->endmant[i] = chbwcod * 3 + 73;
642 do_bit_alloc = 0;
644 if (cplexpstr != EXP_REUSE) {
645 int cplabsexp, ncplgrps;
647 do_bit_alloc = 64;
648 ncplgrps = ((state->cplendmant - state->cplstrtmant) /
649 (3 << (cplexpstr - 1)));
650 cplabsexp = bitstream_get (4) << 1;
651 if (parse_exponents (cplexpstr, ncplgrps, cplabsexp,
652 state->cpl_exp + state->cplstrtmant))
653 return 1;
655 for (i = 0; i < nfchans; i++)
656 if (chexpstr[i] != EXP_REUSE) {
657 int grp_size, nchgrps;
659 do_bit_alloc |= 1 << i;
660 grp_size = 3 << (chexpstr[i] - 1);
661 nchgrps = (state->endmant[i] + grp_size - 4) / grp_size;
662 state->fbw_exp[i][0] = bitstream_get (4);
663 if (parse_exponents (chexpstr[i], nchgrps, state->fbw_exp[i][0],
664 state->fbw_exp[i] + 1))
665 return 1;
666 bitstream_skip (2); /* gainrng */
668 if (lfeexpstr != EXP_REUSE) {
669 do_bit_alloc |= 32;
670 state->lfe_exp[0] = bitstream_get (4);
671 if (parse_exponents (lfeexpstr, 2, state->lfe_exp[0],
672 state->lfe_exp + 1))
673 return 1;
676 if (bitstream_get (1)) { /* baie */
677 do_bit_alloc = -1;
678 state->sdcycod = bitstream_get (2);
679 state->fdcycod = bitstream_get (2);
680 state->sgaincod = bitstream_get (2);
681 state->dbpbcod = bitstream_get (2);
682 state->floorcod = bitstream_get (3);
684 if (bitstream_get (1)) { /* snroffste */
685 do_bit_alloc = -1;
686 state->csnroffst = bitstream_get (6);
687 if (state->cplinu) {
688 state->cplba.fsnroffst = bitstream_get (4);
689 state->cplba.fgaincod = bitstream_get (3);
691 for (i = 0; i < nfchans; i++) {
692 state->ba[i].fsnroffst = bitstream_get (4);
693 state->ba[i].fgaincod = bitstream_get (3);
695 if (state->lfeon) {
696 state->lfeba.fsnroffst = bitstream_get (4);
697 state->lfeba.fgaincod = bitstream_get (3);
700 if ((state->cplinu) && (bitstream_get (1))) { /* cplleake */
701 do_bit_alloc |= 64;
702 state->cplfleak = 2304 - (bitstream_get (3) << 8);
703 state->cplsleak = 2304 - (bitstream_get (3) << 8);
706 if (bitstream_get (1)) { /* deltbaie */
707 do_bit_alloc = -1;
708 if (state->cplinu)
709 state->cplba.deltbae = bitstream_get (2);
710 for (i = 0; i < nfchans; i++)
711 state->ba[i].deltbae = bitstream_get (2);
712 if (state->cplinu && (state->cplba.deltbae == DELTA_BIT_NEW) &&
713 parse_deltba (state->cplba.deltba))
714 return 1;
715 for (i = 0; i < nfchans; i++)
716 if ((state->ba[i].deltbae == DELTA_BIT_NEW) &&
717 parse_deltba (state->ba[i].deltba))
718 return 1;
721 if (do_bit_alloc) {
722 if (zero_snr_offsets (nfchans, state)) {
723 memset (state->cpl_bap, 0, sizeof (state->cpl_bap));
724 memset (state->fbw_bap, 0, sizeof (state->fbw_bap));
725 memset (state->lfe_bap, 0, sizeof (state->lfe_bap));
726 } else {
727 if (state->cplinu && (do_bit_alloc & 64))
728 bit_allocate (state, &state->cplba, state->cplstrtbnd,
729 state->cplstrtmant, state->cplendmant,
730 state->cplfleak, state->cplsleak,
731 state->cpl_exp, state->cpl_bap);
732 for (i = 0; i < nfchans; i++)
733 if (do_bit_alloc & (1 << i))
734 bit_allocate (state, state->ba + i, 0, 0,
735 state->endmant[i], 0, 0, state->fbw_exp[i],
736 state->fbw_bap[i]);
737 if (state->lfeon && (do_bit_alloc & 32)) {
738 state->lfeba.deltbae = DELTA_BIT_NONE;
739 bit_allocate (state, &state->lfeba, 0, 0, 7, 0, 0,
740 state->lfe_exp, state->lfe_bap);
745 if (bitstream_get (1)) { /* skiple */
746 i = bitstream_get (9); /* skipl */
747 while (i--)
748 bitstream_skip (8);
751 if (state->output & A52_LFE)
752 samples += 256; /* shift for LFE channel */
754 chanbias = downmix_coeff (coeff, state->acmod, state->output,
755 state->dynrng, state->clev, state->slev);
757 quantizer.q1_ptr = quantizer.q2_ptr = quantizer.q4_ptr = -1;
758 done_cpl = 0;
760 for (i = 0; i < nfchans; i++) {
761 int j;
763 coeff_get (samples + 256 * i, state->fbw_exp[i], state->fbw_bap[i],
764 &quantizer, coeff[i], dithflag[i], state->endmant[i]);
766 if (state->cplinu && state->chincpl[i]) {
767 if (!done_cpl) {
768 done_cpl = 1;
769 coeff_get_coupling (state, nfchans, coeff,
770 (sample_t (*)[256])samples, &quantizer,
771 dithflag);
773 j = state->cplendmant;
774 } else
775 j = state->endmant[i];
777 (samples + 256 * i)[j] = 0;
778 while (++j < 256);
781 if (state->acmod == 2) {
782 int j, end, band;
784 end = ((state->endmant[0] < state->endmant[1]) ?
785 state->endmant[0] : state->endmant[1]);
787 i = 0;
788 j = 13;
789 do {
790 if (!state->rematflg[i]) {
791 j = rematrix_band[i++];
792 continue;
794 band = rematrix_band[i++];
795 if (band > end)
796 band = end;
797 do {
798 sample_t tmp0, tmp1;
800 tmp0 = samples[j];
801 tmp1 = (samples+256)[j];
802 samples[j] = tmp0 + tmp1;
803 (samples+256)[j] = tmp0 - tmp1;
804 } while (++j < band);
805 } while (j < end);
808 if (state->lfeon) {
809 if (state->output & A52_LFE) {
810 coeff_get (samples - 256, state->lfe_exp, state->lfe_bap,
811 &quantizer, state->dynrng, 0, 7);
812 for (i = 7; i < 256; i++)
813 (samples-256)[i] = 0;
814 imdct_512 (samples - 256, samples + 1536 - 256, state->bias);
815 } else {
816 /* just skip the LFE coefficients */
817 coeff_get (samples + 1280, state->lfe_exp, state->lfe_bap,
818 &quantizer, 0, 0, 7);
822 i = 0;
823 if (nfchans_tbl[state->output & A52_CHANNEL_MASK] < nfchans)
824 for (i = 1; i < nfchans; i++)
825 if (blksw[i] != blksw[0])
826 break;
828 if (i < nfchans) {
829 if (samples[2 * 1536 - 1] == (sample_t)0x776b6e21) {
830 samples[2 * 1536 - 1] = 0;
831 upmix (samples + 1536, state->acmod, state->output);
834 for (i = 0; i < nfchans; i++) {
835 sample_t bias;
837 bias = 0;
838 if (!(chanbias & (1 << i)))
839 bias = state->bias;
841 if (coeff[i]) {
842 if (blksw[i])
843 imdct_256 (samples + 256 * i, samples + 1536 + 256 * i,
844 bias);
845 else
846 imdct_512 (samples + 256 * i, samples + 1536 + 256 * i,
847 bias);
848 } else {
849 int j;
851 for (j = 0; j < 256; j++)
852 (samples + 256 * i)[j] = bias;
856 downmix (samples, state->acmod, state->output, state->bias,
857 state->clev, state->slev);
858 } else {
859 nfchans = nfchans_tbl[state->output & A52_CHANNEL_MASK];
861 downmix (samples, state->acmod, state->output, 0,
862 state->clev, state->slev);
864 if (samples[2 * 1536 - 1] != (sample_t)0x776b6e21) {
865 downmix (samples + 1536, state->acmod, state->output, 0,
866 state->clev, state->slev);
867 samples[2 * 1536 - 1] = (sample_t)0x776b6e21;
870 if (blksw[0])
871 for (i = 0; i < nfchans; i++)
872 imdct_256 (samples + 256 * i, samples + 1536 + 256 * i,
873 state->bias);
874 else
875 for (i = 0; i < nfchans; i++)
876 imdct_512 (samples + 256 * i, samples + 1536 + 256 * i,
877 state->bias);
880 return 0;