annotate ac3.c @ 4679:acdd4b24f5c5 libavcodec

hardcode ff_ac3_frame_sizes table
author jbr
date Sun, 18 Mar 2007 04:53:21 +0000
parents 5683b496ffbc
children 6ec0afffc572
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
1 /*
4642
7e140e4cd8cb Create ac3.c which will be used for AC-3 common code.
jbr
parents: 4641
diff changeset
2 * Common code between AC3 encoder and decoder
429
718a22dc121f license/copyright change
glantau
parents: 396
diff changeset
3 * Copyright (c) 2000 Fabrice Bellard.
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
4 *
3947
c8c591fe26f8 Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 3668
diff changeset
5 * This file is part of FFmpeg.
c8c591fe26f8 Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 3668
diff changeset
6 *
c8c591fe26f8 Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 3668
diff changeset
7 * FFmpeg is free software; you can redistribute it and/or
429
718a22dc121f license/copyright change
glantau
parents: 396
diff changeset
8 * modify it under the terms of the GNU Lesser General Public
718a22dc121f license/copyright change
glantau
parents: 396
diff changeset
9 * License as published by the Free Software Foundation; either
3947
c8c591fe26f8 Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 3668
diff changeset
10 * version 2.1 of the License, or (at your option) any later version.
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
11 *
3947
c8c591fe26f8 Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 3668
diff changeset
12 * FFmpeg is distributed in the hope that it will be useful,
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
429
718a22dc121f license/copyright change
glantau
parents: 396
diff changeset
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
718a22dc121f license/copyright change
glantau
parents: 396
diff changeset
15 * Lesser General Public License for more details.
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
16 *
429
718a22dc121f license/copyright change
glantau
parents: 396
diff changeset
17 * You should have received a copy of the GNU Lesser General Public
3947
c8c591fe26f8 Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 3668
diff changeset
18 * License along with FFmpeg; if not, write to the Free Software
3036
0b546eab515d Update licensing information: The FSF changed postal address.
diego
parents: 2979
diff changeset
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
20 */
1106
1e39f273ecd6 per file doxy
michaelni
parents: 1064
diff changeset
21
1e39f273ecd6 per file doxy
michaelni
parents: 1064
diff changeset
22 /**
4642
7e140e4cd8cb Create ac3.c which will be used for AC-3 common code.
jbr
parents: 4641
diff changeset
23 * @file ac3.c
7e140e4cd8cb Create ac3.c which will be used for AC-3 common code.
jbr
parents: 4641
diff changeset
24 * Common code between AC3 encoder and decoder.
1106
1e39f273ecd6 per file doxy
michaelni
parents: 1064
diff changeset
25 */
782
dd7d5748d064 preparing integration of new AC3 decoder
bellard
parents: 429
diff changeset
26
4642
7e140e4cd8cb Create ac3.c which will be used for AC-3 common code.
jbr
parents: 4641
diff changeset
27 #include "avcodec.h"
7e140e4cd8cb Create ac3.c which will be used for AC-3 common code.
jbr
parents: 4641
diff changeset
28 #include "ac3.h"
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
29 #include "ac3tab.h"
4648
5683b496ffbc move AC-3 header parsing to ac3.c
jbr
parents: 4645
diff changeset
30 #include "bitstream.h"
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
31
4641
5bc169ed9db6 simplify AC-3 bit allocation
jbr
parents: 4640
diff changeset
32 static inline int calc_lowcomp1(int a, int b0, int b1, int c)
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
33 {
986e461dc072 Initial revision
glantau
parents:
diff changeset
34 if ((b0 + 256) == b1) {
4641
5bc169ed9db6 simplify AC-3 bit allocation
jbr
parents: 4640
diff changeset
35 a = c;
2967
ef2149182f1c COSMETICS: Remove all trailing whitespace.
diego
parents: 2644
diff changeset
36 } else if (b0 > b1) {
4641
5bc169ed9db6 simplify AC-3 bit allocation
jbr
parents: 4640
diff changeset
37 a = FFMAX(a - 64, 0);
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
38 }
986e461dc072 Initial revision
glantau
parents:
diff changeset
39 return a;
986e461dc072 Initial revision
glantau
parents:
diff changeset
40 }
986e461dc072 Initial revision
glantau
parents:
diff changeset
41
986e461dc072 Initial revision
glantau
parents:
diff changeset
42 static inline int calc_lowcomp(int a, int b0, int b1, int bin)
986e461dc072 Initial revision
glantau
parents:
diff changeset
43 {
986e461dc072 Initial revision
glantau
parents:
diff changeset
44 if (bin < 7) {
4641
5bc169ed9db6 simplify AC-3 bit allocation
jbr
parents: 4640
diff changeset
45 return calc_lowcomp1(a, b0, b1, 384);
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
46 } else if (bin < 20) {
4641
5bc169ed9db6 simplify AC-3 bit allocation
jbr
parents: 4640
diff changeset
47 return calc_lowcomp1(a, b0, b1, 320);
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
48 } else {
4641
5bc169ed9db6 simplify AC-3 bit allocation
jbr
parents: 4640
diff changeset
49 return FFMAX(a - 128, 0);
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
50 }
986e461dc072 Initial revision
glantau
parents:
diff changeset
51 }
986e461dc072 Initial revision
glantau
parents:
diff changeset
52
986e461dc072 Initial revision
glantau
parents:
diff changeset
53 /* AC3 bit allocation. The algorithm is the one described in the AC3
782
dd7d5748d064 preparing integration of new AC3 decoder
bellard
parents: 429
diff changeset
54 spec. */
1064
b32afefe7d33 * UINTX -> uintx_t INTX -> intx_t
kabi
parents: 1057
diff changeset
55 void ac3_parametric_bit_allocation(AC3BitAllocParameters *s, uint8_t *bap,
b32afefe7d33 * UINTX -> uintx_t INTX -> intx_t
kabi
parents: 1057
diff changeset
56 int8_t *exp, int start, int end,
782
dd7d5748d064 preparing integration of new AC3 decoder
bellard
parents: 429
diff changeset
57 int snroffset, int fgain, int is_lfe,
2967
ef2149182f1c COSMETICS: Remove all trailing whitespace.
diego
parents: 2644
diff changeset
58 int deltbae,int deltnseg,
1064
b32afefe7d33 * UINTX -> uintx_t INTX -> intx_t
kabi
parents: 1057
diff changeset
59 uint8_t *deltoffst, uint8_t *deltlen, uint8_t *deltba)
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
60 {
4641
5bc169ed9db6 simplify AC-3 bit allocation
jbr
parents: 4640
diff changeset
61 int bin,i,j,k,end1,v,bndstrt,bndend,lowcomp,begin;
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
62 int fastleak,slowleak,address,tmp;
1064
b32afefe7d33 * UINTX -> uintx_t INTX -> intx_t
kabi
parents: 1057
diff changeset
63 int16_t psd[256]; /* scaled exponents */
b32afefe7d33 * UINTX -> uintx_t INTX -> intx_t
kabi
parents: 1057
diff changeset
64 int16_t bndpsd[50]; /* interpolated exponents */
b32afefe7d33 * UINTX -> uintx_t INTX -> intx_t
kabi
parents: 1057
diff changeset
65 int16_t excite[50]; /* excitation */
b32afefe7d33 * UINTX -> uintx_t INTX -> intx_t
kabi
parents: 1057
diff changeset
66 int16_t mask[50]; /* masking value */
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
67
986e461dc072 Initial revision
glantau
parents:
diff changeset
68 /* exponent mapping to PSD */
986e461dc072 Initial revision
glantau
parents:
diff changeset
69 for(bin=start;bin<end;bin++) {
986e461dc072 Initial revision
glantau
parents:
diff changeset
70 psd[bin]=(3072 - (exp[bin] << 7));
986e461dc072 Initial revision
glantau
parents:
diff changeset
71 }
986e461dc072 Initial revision
glantau
parents:
diff changeset
72
986e461dc072 Initial revision
glantau
parents:
diff changeset
73 /* PSD integration */
986e461dc072 Initial revision
glantau
parents:
diff changeset
74 j=start;
986e461dc072 Initial revision
glantau
parents:
diff changeset
75 k=masktab[start];
986e461dc072 Initial revision
glantau
parents:
diff changeset
76 do {
986e461dc072 Initial revision
glantau
parents:
diff changeset
77 v=psd[j];
986e461dc072 Initial revision
glantau
parents:
diff changeset
78 j++;
4641
5bc169ed9db6 simplify AC-3 bit allocation
jbr
parents: 4640
diff changeset
79 end1 = FFMIN(bndtab[k+1], end);
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
80 for(i=j;i<end1;i++) {
986e461dc072 Initial revision
glantau
parents:
diff changeset
81 /* logadd */
4641
5bc169ed9db6 simplify AC-3 bit allocation
jbr
parents: 4640
diff changeset
82 int adr = FFMIN(FFABS(v - psd[j]) >> 1, 255);
5bc169ed9db6 simplify AC-3 bit allocation
jbr
parents: 4640
diff changeset
83 v = FFMAX(v, psd[j]) + latab[adr];
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
84 j++;
986e461dc072 Initial revision
glantau
parents:
diff changeset
85 }
986e461dc072 Initial revision
glantau
parents:
diff changeset
86 bndpsd[k]=v;
986e461dc072 Initial revision
glantau
parents:
diff changeset
87 k++;
986e461dc072 Initial revision
glantau
parents:
diff changeset
88 } while (end > bndtab[k]);
986e461dc072 Initial revision
glantau
parents:
diff changeset
89
986e461dc072 Initial revision
glantau
parents:
diff changeset
90 /* excitation function */
986e461dc072 Initial revision
glantau
parents:
diff changeset
91 bndstrt = masktab[start];
986e461dc072 Initial revision
glantau
parents:
diff changeset
92 bndend = masktab[end-1] + 1;
2967
ef2149182f1c COSMETICS: Remove all trailing whitespace.
diego
parents: 2644
diff changeset
93
782
dd7d5748d064 preparing integration of new AC3 decoder
bellard
parents: 429
diff changeset
94 if (bndstrt == 0) {
dd7d5748d064 preparing integration of new AC3 decoder
bellard
parents: 429
diff changeset
95 lowcomp = 0;
4641
5bc169ed9db6 simplify AC-3 bit allocation
jbr
parents: 4640
diff changeset
96 lowcomp = calc_lowcomp1(lowcomp, bndpsd[0], bndpsd[1], 384);
4640
d539eb4db3d2 cosmetics. remove space before semi-colon.
jbr
parents: 4230
diff changeset
97 excite[0] = bndpsd[0] - fgain - lowcomp;
4641
5bc169ed9db6 simplify AC-3 bit allocation
jbr
parents: 4640
diff changeset
98 lowcomp = calc_lowcomp1(lowcomp, bndpsd[1], bndpsd[2], 384);
4640
d539eb4db3d2 cosmetics. remove space before semi-colon.
jbr
parents: 4230
diff changeset
99 excite[1] = bndpsd[1] - fgain - lowcomp;
d539eb4db3d2 cosmetics. remove space before semi-colon.
jbr
parents: 4230
diff changeset
100 begin = 7;
782
dd7d5748d064 preparing integration of new AC3 decoder
bellard
parents: 429
diff changeset
101 for (bin = 2; bin < 7; bin++) {
dd7d5748d064 preparing integration of new AC3 decoder
bellard
parents: 429
diff changeset
102 if (!(is_lfe && bin == 6))
4641
5bc169ed9db6 simplify AC-3 bit allocation
jbr
parents: 4640
diff changeset
103 lowcomp = calc_lowcomp1(lowcomp, bndpsd[bin], bndpsd[bin+1], 384);
4640
d539eb4db3d2 cosmetics. remove space before semi-colon.
jbr
parents: 4230
diff changeset
104 fastleak = bndpsd[bin] - fgain;
d539eb4db3d2 cosmetics. remove space before semi-colon.
jbr
parents: 4230
diff changeset
105 slowleak = bndpsd[bin] - s->sgain;
d539eb4db3d2 cosmetics. remove space before semi-colon.
jbr
parents: 4230
diff changeset
106 excite[bin] = fastleak - lowcomp;
782
dd7d5748d064 preparing integration of new AC3 decoder
bellard
parents: 429
diff changeset
107 if (!(is_lfe && bin == 6)) {
dd7d5748d064 preparing integration of new AC3 decoder
bellard
parents: 429
diff changeset
108 if (bndpsd[bin] <= bndpsd[bin+1]) {
4640
d539eb4db3d2 cosmetics. remove space before semi-colon.
jbr
parents: 4230
diff changeset
109 begin = bin + 1;
d539eb4db3d2 cosmetics. remove space before semi-colon.
jbr
parents: 4230
diff changeset
110 break;
782
dd7d5748d064 preparing integration of new AC3 decoder
bellard
parents: 429
diff changeset
111 }
dd7d5748d064 preparing integration of new AC3 decoder
bellard
parents: 429
diff changeset
112 }
dd7d5748d064 preparing integration of new AC3 decoder
bellard
parents: 429
diff changeset
113 }
2967
ef2149182f1c COSMETICS: Remove all trailing whitespace.
diego
parents: 2644
diff changeset
114
782
dd7d5748d064 preparing integration of new AC3 decoder
bellard
parents: 429
diff changeset
115 end1=bndend;
dd7d5748d064 preparing integration of new AC3 decoder
bellard
parents: 429
diff changeset
116 if (end1 > 22) end1=22;
2967
ef2149182f1c COSMETICS: Remove all trailing whitespace.
diego
parents: 2644
diff changeset
117
782
dd7d5748d064 preparing integration of new AC3 decoder
bellard
parents: 429
diff changeset
118 for (bin = begin; bin < end1; bin++) {
dd7d5748d064 preparing integration of new AC3 decoder
bellard
parents: 429
diff changeset
119 if (!(is_lfe && bin == 6))
4640
d539eb4db3d2 cosmetics. remove space before semi-colon.
jbr
parents: 4230
diff changeset
120 lowcomp = calc_lowcomp(lowcomp, bndpsd[bin], bndpsd[bin+1], bin);
2967
ef2149182f1c COSMETICS: Remove all trailing whitespace.
diego
parents: 2644
diff changeset
121
4641
5bc169ed9db6 simplify AC-3 bit allocation
jbr
parents: 4640
diff changeset
122 fastleak = FFMAX(fastleak - s->fdecay, bndpsd[bin] - fgain);
5bc169ed9db6 simplify AC-3 bit allocation
jbr
parents: 4640
diff changeset
123 slowleak = FFMAX(slowleak - s->sdecay, bndpsd[bin] - s->sgain);
5bc169ed9db6 simplify AC-3 bit allocation
jbr
parents: 4640
diff changeset
124 excite[bin] = FFMAX(fastleak - lowcomp, slowleak);
782
dd7d5748d064 preparing integration of new AC3 decoder
bellard
parents: 429
diff changeset
125 }
dd7d5748d064 preparing integration of new AC3 decoder
bellard
parents: 429
diff changeset
126 begin = 22;
dd7d5748d064 preparing integration of new AC3 decoder
bellard
parents: 429
diff changeset
127 } else {
dd7d5748d064 preparing integration of new AC3 decoder
bellard
parents: 429
diff changeset
128 /* coupling channel */
dd7d5748d064 preparing integration of new AC3 decoder
bellard
parents: 429
diff changeset
129 begin = bndstrt;
2967
ef2149182f1c COSMETICS: Remove all trailing whitespace.
diego
parents: 2644
diff changeset
130
782
dd7d5748d064 preparing integration of new AC3 decoder
bellard
parents: 429
diff changeset
131 fastleak = (s->cplfleak << 8) + 768;
dd7d5748d064 preparing integration of new AC3 decoder
bellard
parents: 429
diff changeset
132 slowleak = (s->cplsleak << 8) + 768;
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
133 }
986e461dc072 Initial revision
glantau
parents:
diff changeset
134
782
dd7d5748d064 preparing integration of new AC3 decoder
bellard
parents: 429
diff changeset
135 for (bin = begin; bin < bndend; bin++) {
4641
5bc169ed9db6 simplify AC-3 bit allocation
jbr
parents: 4640
diff changeset
136 fastleak = FFMAX(fastleak - s->fdecay, bndpsd[bin] - fgain);
5bc169ed9db6 simplify AC-3 bit allocation
jbr
parents: 4640
diff changeset
137 slowleak = FFMAX(slowleak - s->sdecay, bndpsd[bin] - s->sgain);
5bc169ed9db6 simplify AC-3 bit allocation
jbr
parents: 4640
diff changeset
138 excite[bin] = FFMAX(fastleak, slowleak);
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
139 }
986e461dc072 Initial revision
glantau
parents:
diff changeset
140
986e461dc072 Initial revision
glantau
parents:
diff changeset
141 /* compute masking curve */
986e461dc072 Initial revision
glantau
parents:
diff changeset
142
986e461dc072 Initial revision
glantau
parents:
diff changeset
143 for (bin = bndstrt; bin < bndend; bin++) {
986e461dc072 Initial revision
glantau
parents:
diff changeset
144 tmp = s->dbknee - bndpsd[bin];
986e461dc072 Initial revision
glantau
parents:
diff changeset
145 if (tmp > 0) {
4641
5bc169ed9db6 simplify AC-3 bit allocation
jbr
parents: 4640
diff changeset
146 excite[bin] += tmp >> 2;
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
147 }
4641
5bc169ed9db6 simplify AC-3 bit allocation
jbr
parents: 4640
diff changeset
148 mask[bin] = FFMAX(hth[bin >> s->halfratecod][s->fscod], excite[bin]);
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
149 }
986e461dc072 Initial revision
glantau
parents:
diff changeset
150
782
dd7d5748d064 preparing integration of new AC3 decoder
bellard
parents: 429
diff changeset
151 /* delta bit allocation */
dd7d5748d064 preparing integration of new AC3 decoder
bellard
parents: 429
diff changeset
152
dd7d5748d064 preparing integration of new AC3 decoder
bellard
parents: 429
diff changeset
153 if (deltbae == 0 || deltbae == 1) {
dd7d5748d064 preparing integration of new AC3 decoder
bellard
parents: 429
diff changeset
154 int band, seg, delta;
4640
d539eb4db3d2 cosmetics. remove space before semi-colon.
jbr
parents: 4230
diff changeset
155 band = 0;
782
dd7d5748d064 preparing integration of new AC3 decoder
bellard
parents: 429
diff changeset
156 for (seg = 0; seg < deltnseg; seg++) {
4640
d539eb4db3d2 cosmetics. remove space before semi-colon.
jbr
parents: 4230
diff changeset
157 band += deltoffst[seg];
782
dd7d5748d064 preparing integration of new AC3 decoder
bellard
parents: 429
diff changeset
158 if (deltba[seg] >= 4) {
dd7d5748d064 preparing integration of new AC3 decoder
bellard
parents: 429
diff changeset
159 delta = (deltba[seg] - 3) << 7;
dd7d5748d064 preparing integration of new AC3 decoder
bellard
parents: 429
diff changeset
160 } else {
dd7d5748d064 preparing integration of new AC3 decoder
bellard
parents: 429
diff changeset
161 delta = (deltba[seg] - 4) << 7;
dd7d5748d064 preparing integration of new AC3 decoder
bellard
parents: 429
diff changeset
162 }
dd7d5748d064 preparing integration of new AC3 decoder
bellard
parents: 429
diff changeset
163 for (k = 0; k < deltlen[seg]; k++) {
4640
d539eb4db3d2 cosmetics. remove space before semi-colon.
jbr
parents: 4230
diff changeset
164 mask[band] += delta;
d539eb4db3d2 cosmetics. remove space before semi-colon.
jbr
parents: 4230
diff changeset
165 band++;
782
dd7d5748d064 preparing integration of new AC3 decoder
bellard
parents: 429
diff changeset
166 }
dd7d5748d064 preparing integration of new AC3 decoder
bellard
parents: 429
diff changeset
167 }
dd7d5748d064 preparing integration of new AC3 decoder
bellard
parents: 429
diff changeset
168 }
dd7d5748d064 preparing integration of new AC3 decoder
bellard
parents: 429
diff changeset
169
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
170 /* compute bit allocation */
2967
ef2149182f1c COSMETICS: Remove all trailing whitespace.
diego
parents: 2644
diff changeset
171
4640
d539eb4db3d2 cosmetics. remove space before semi-colon.
jbr
parents: 4230
diff changeset
172 i = start;
d539eb4db3d2 cosmetics. remove space before semi-colon.
jbr
parents: 4230
diff changeset
173 j = masktab[start];
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
174 do {
4641
5bc169ed9db6 simplify AC-3 bit allocation
jbr
parents: 4640
diff changeset
175 v = (FFMAX(mask[j] - snroffset - s->floor, 0) & 0x1FE0) + s->floor;
5bc169ed9db6 simplify AC-3 bit allocation
jbr
parents: 4640
diff changeset
176 end1 = FFMIN(bndtab[j] + bndsz[j], end);
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
177 for (k = i; k < end1; k++) {
4641
5bc169ed9db6 simplify AC-3 bit allocation
jbr
parents: 4640
diff changeset
178 address = av_clip((psd[i] - v) >> 5, 0, 63);
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
179 bap[i] = baptab[address];
986e461dc072 Initial revision
glantau
parents:
diff changeset
180 i++;
986e461dc072 Initial revision
glantau
parents:
diff changeset
181 }
4640
d539eb4db3d2 cosmetics. remove space before semi-colon.
jbr
parents: 4230
diff changeset
182 } while (end > bndtab[j++]);
0
986e461dc072 Initial revision
glantau
parents:
diff changeset
183 }
986e461dc072 Initial revision
glantau
parents:
diff changeset
184
4645
056127e5df89 remove redundancy in AC-3 parser by using common tables from ac3tab.h
jbr
parents: 4642
diff changeset
185 /**
056127e5df89 remove redundancy in AC-3 parser by using common tables from ac3tab.h
jbr
parents: 4642
diff changeset
186 * Initializes some tables.
056127e5df89 remove redundancy in AC-3 parser by using common tables from ac3tab.h
jbr
parents: 4642
diff changeset
187 * note: This function must remain thread safe because it is called by the
056127e5df89 remove redundancy in AC-3 parser by using common tables from ac3tab.h
jbr
parents: 4642
diff changeset
188 * AVParser init code.
056127e5df89 remove redundancy in AC-3 parser by using common tables from ac3tab.h
jbr
parents: 4642
diff changeset
189 */
4197
bbe0bc387a19 revert bad checkin
mru
parents: 4196
diff changeset
190 void ac3_common_init(void)
782
dd7d5748d064 preparing integration of new AC3 decoder
bellard
parents: 429
diff changeset
191 {
dd7d5748d064 preparing integration of new AC3 decoder
bellard
parents: 429
diff changeset
192 int i, j, k, l, v;
dd7d5748d064 preparing integration of new AC3 decoder
bellard
parents: 429
diff changeset
193 /* compute bndtab and masktab from bandsz */
dd7d5748d064 preparing integration of new AC3 decoder
bellard
parents: 429
diff changeset
194 k = 0;
dd7d5748d064 preparing integration of new AC3 decoder
bellard
parents: 429
diff changeset
195 l = 0;
dd7d5748d064 preparing integration of new AC3 decoder
bellard
parents: 429
diff changeset
196 for(i=0;i<50;i++) {
dd7d5748d064 preparing integration of new AC3 decoder
bellard
parents: 429
diff changeset
197 bndtab[i] = l;
dd7d5748d064 preparing integration of new AC3 decoder
bellard
parents: 429
diff changeset
198 v = bndsz[i];
dd7d5748d064 preparing integration of new AC3 decoder
bellard
parents: 429
diff changeset
199 for(j=0;j<v;j++) masktab[k++]=i;
dd7d5748d064 preparing integration of new AC3 decoder
bellard
parents: 429
diff changeset
200 l += v;
dd7d5748d064 preparing integration of new AC3 decoder
bellard
parents: 429
diff changeset
201 }
3668
34d76180e5d0 Fix 2 bit allocation bugs. One fix enables using a higher bandwidth code. The other fixes an issue with floorcod=7.
jbr
parents: 3280
diff changeset
202 bndtab[50] = l;
782
dd7d5748d064 preparing integration of new AC3 decoder
bellard
parents: 429
diff changeset
203 }
4648
5683b496ffbc move AC-3 header parsing to ac3.c
jbr
parents: 4645
diff changeset
204
5683b496ffbc move AC-3 header parsing to ac3.c
jbr
parents: 4645
diff changeset
205 int ff_ac3_parse_header(const uint8_t buf[7], AC3HeaderInfo *hdr)
5683b496ffbc move AC-3 header parsing to ac3.c
jbr
parents: 4645
diff changeset
206 {
5683b496ffbc move AC-3 header parsing to ac3.c
jbr
parents: 4645
diff changeset
207 GetBitContext gbc;
5683b496ffbc move AC-3 header parsing to ac3.c
jbr
parents: 4645
diff changeset
208
5683b496ffbc move AC-3 header parsing to ac3.c
jbr
parents: 4645
diff changeset
209 memset(hdr, 0, sizeof(*hdr));
5683b496ffbc move AC-3 header parsing to ac3.c
jbr
parents: 4645
diff changeset
210
5683b496ffbc move AC-3 header parsing to ac3.c
jbr
parents: 4645
diff changeset
211 init_get_bits(&gbc, buf, 54);
5683b496ffbc move AC-3 header parsing to ac3.c
jbr
parents: 4645
diff changeset
212
5683b496ffbc move AC-3 header parsing to ac3.c
jbr
parents: 4645
diff changeset
213 hdr->sync_word = get_bits(&gbc, 16);
5683b496ffbc move AC-3 header parsing to ac3.c
jbr
parents: 4645
diff changeset
214 if(hdr->sync_word != 0x0B77)
5683b496ffbc move AC-3 header parsing to ac3.c
jbr
parents: 4645
diff changeset
215 return -1;
5683b496ffbc move AC-3 header parsing to ac3.c
jbr
parents: 4645
diff changeset
216
5683b496ffbc move AC-3 header parsing to ac3.c
jbr
parents: 4645
diff changeset
217 /* read ahead to bsid to make sure this is AC-3, not E-AC-3 */
5683b496ffbc move AC-3 header parsing to ac3.c
jbr
parents: 4645
diff changeset
218 hdr->bsid = show_bits_long(&gbc, 29) & 0x1F;
5683b496ffbc move AC-3 header parsing to ac3.c
jbr
parents: 4645
diff changeset
219 if(hdr->bsid > 10)
5683b496ffbc move AC-3 header parsing to ac3.c
jbr
parents: 4645
diff changeset
220 return -2;
5683b496ffbc move AC-3 header parsing to ac3.c
jbr
parents: 4645
diff changeset
221
5683b496ffbc move AC-3 header parsing to ac3.c
jbr
parents: 4645
diff changeset
222 hdr->crc1 = get_bits(&gbc, 16);
5683b496ffbc move AC-3 header parsing to ac3.c
jbr
parents: 4645
diff changeset
223 hdr->fscod = get_bits(&gbc, 2);
5683b496ffbc move AC-3 header parsing to ac3.c
jbr
parents: 4645
diff changeset
224 if(hdr->fscod == 3)
5683b496ffbc move AC-3 header parsing to ac3.c
jbr
parents: 4645
diff changeset
225 return -3;
5683b496ffbc move AC-3 header parsing to ac3.c
jbr
parents: 4645
diff changeset
226
5683b496ffbc move AC-3 header parsing to ac3.c
jbr
parents: 4645
diff changeset
227 hdr->frmsizecod = get_bits(&gbc, 6);
5683b496ffbc move AC-3 header parsing to ac3.c
jbr
parents: 4645
diff changeset
228 if(hdr->frmsizecod > 37)
5683b496ffbc move AC-3 header parsing to ac3.c
jbr
parents: 4645
diff changeset
229 return -4;
5683b496ffbc move AC-3 header parsing to ac3.c
jbr
parents: 4645
diff changeset
230
5683b496ffbc move AC-3 header parsing to ac3.c
jbr
parents: 4645
diff changeset
231 skip_bits(&gbc, 5); // skip bsid, already got it
5683b496ffbc move AC-3 header parsing to ac3.c
jbr
parents: 4645
diff changeset
232
5683b496ffbc move AC-3 header parsing to ac3.c
jbr
parents: 4645
diff changeset
233 hdr->bsmod = get_bits(&gbc, 3);
5683b496ffbc move AC-3 header parsing to ac3.c
jbr
parents: 4645
diff changeset
234 hdr->acmod = get_bits(&gbc, 3);
5683b496ffbc move AC-3 header parsing to ac3.c
jbr
parents: 4645
diff changeset
235 if((hdr->acmod & 1) && hdr->acmod != 1) {
5683b496ffbc move AC-3 header parsing to ac3.c
jbr
parents: 4645
diff changeset
236 hdr->cmixlev = get_bits(&gbc, 2);
5683b496ffbc move AC-3 header parsing to ac3.c
jbr
parents: 4645
diff changeset
237 }
5683b496ffbc move AC-3 header parsing to ac3.c
jbr
parents: 4645
diff changeset
238 if(hdr->acmod & 4) {
5683b496ffbc move AC-3 header parsing to ac3.c
jbr
parents: 4645
diff changeset
239 hdr->surmixlev = get_bits(&gbc, 2);
5683b496ffbc move AC-3 header parsing to ac3.c
jbr
parents: 4645
diff changeset
240 }
5683b496ffbc move AC-3 header parsing to ac3.c
jbr
parents: 4645
diff changeset
241 if(hdr->acmod == 2) {
5683b496ffbc move AC-3 header parsing to ac3.c
jbr
parents: 4645
diff changeset
242 hdr->dsurmod = get_bits(&gbc, 2);
5683b496ffbc move AC-3 header parsing to ac3.c
jbr
parents: 4645
diff changeset
243 }
5683b496ffbc move AC-3 header parsing to ac3.c
jbr
parents: 4645
diff changeset
244 hdr->lfeon = get_bits1(&gbc);
5683b496ffbc move AC-3 header parsing to ac3.c
jbr
parents: 4645
diff changeset
245
5683b496ffbc move AC-3 header parsing to ac3.c
jbr
parents: 4645
diff changeset
246 hdr->halfratecod = FFMAX(hdr->bsid, 8) - 8;
5683b496ffbc move AC-3 header parsing to ac3.c
jbr
parents: 4645
diff changeset
247 hdr->sample_rate = ff_ac3_freqs[hdr->fscod] >> hdr->halfratecod;
5683b496ffbc move AC-3 header parsing to ac3.c
jbr
parents: 4645
diff changeset
248 hdr->bit_rate = (ff_ac3_bitratetab[hdr->frmsizecod>>1] * 1000) >> hdr->halfratecod;
5683b496ffbc move AC-3 header parsing to ac3.c
jbr
parents: 4645
diff changeset
249 hdr->channels = ff_ac3_channels[hdr->acmod] + hdr->lfeon;
5683b496ffbc move AC-3 header parsing to ac3.c
jbr
parents: 4645
diff changeset
250 hdr->frame_size = ff_ac3_frame_sizes[hdr->frmsizecod][hdr->fscod] * 2;
5683b496ffbc move AC-3 header parsing to ac3.c
jbr
parents: 4645
diff changeset
251
5683b496ffbc move AC-3 header parsing to ac3.c
jbr
parents: 4645
diff changeset
252 return 0;
5683b496ffbc move AC-3 header parsing to ac3.c
jbr
parents: 4645
diff changeset
253 }