annotate eac3dec.c @ 8590:7a463923ecd1 libavcodec

Change semantic of CONFIG_*, HAVE_* and ARCH_*. They are now always defined to either 0 or 1.
author aurel
date Tue, 13 Jan 2009 23:44:16 +0000
parents a5402e89a80c
children 323e4f591d7a
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
7666
d407738f9a71 add more OKed parts of the E-AC-3 decoder
jbr
parents:
diff changeset
1 /*
d407738f9a71 add more OKed parts of the E-AC-3 decoder
jbr
parents:
diff changeset
2 * E-AC-3 decoder
d407738f9a71 add more OKed parts of the E-AC-3 decoder
jbr
parents:
diff changeset
3 * Copyright (c) 2007 Bartlomiej Wolowiec <bartek.wolowiec@gmail.com>
d407738f9a71 add more OKed parts of the E-AC-3 decoder
jbr
parents:
diff changeset
4 * Copyright (c) 2008 Justin Ruggles
d407738f9a71 add more OKed parts of the E-AC-3 decoder
jbr
parents:
diff changeset
5 *
d407738f9a71 add more OKed parts of the E-AC-3 decoder
jbr
parents:
diff changeset
6 * This file is part of FFmpeg.
d407738f9a71 add more OKed parts of the E-AC-3 decoder
jbr
parents:
diff changeset
7 *
d407738f9a71 add more OKed parts of the E-AC-3 decoder
jbr
parents:
diff changeset
8 * FFmpeg is free software; you can redistribute it and/or
7679
e27395cc7321 change eac3dec.c license to LGPL
jbr
parents: 7666
diff changeset
9 * modify it under the terms of the GNU Lesser General Public
7666
d407738f9a71 add more OKed parts of the E-AC-3 decoder
jbr
parents:
diff changeset
10 * License as published by the Free Software Foundation; either
7679
e27395cc7321 change eac3dec.c license to LGPL
jbr
parents: 7666
diff changeset
11 * version 2.1 of the License, or (at your option) any later version.
7666
d407738f9a71 add more OKed parts of the E-AC-3 decoder
jbr
parents:
diff changeset
12 *
d407738f9a71 add more OKed parts of the E-AC-3 decoder
jbr
parents:
diff changeset
13 * FFmpeg is distributed in the hope that it will be useful,
d407738f9a71 add more OKed parts of the E-AC-3 decoder
jbr
parents:
diff changeset
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
d407738f9a71 add more OKed parts of the E-AC-3 decoder
jbr
parents:
diff changeset
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
7679
e27395cc7321 change eac3dec.c license to LGPL
jbr
parents: 7666
diff changeset
16 * Lesser General Public License for more details.
7666
d407738f9a71 add more OKed parts of the E-AC-3 decoder
jbr
parents:
diff changeset
17 *
7679
e27395cc7321 change eac3dec.c license to LGPL
jbr
parents: 7666
diff changeset
18 * You should have received a copy of the GNU Lesser General Public
7666
d407738f9a71 add more OKed parts of the E-AC-3 decoder
jbr
parents:
diff changeset
19 * License along with FFmpeg; if not, write to the Free Software
d407738f9a71 add more OKed parts of the E-AC-3 decoder
jbr
parents:
diff changeset
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
d407738f9a71 add more OKed parts of the E-AC-3 decoder
jbr
parents:
diff changeset
21 */
d407738f9a71 add more OKed parts of the E-AC-3 decoder
jbr
parents:
diff changeset
22
d407738f9a71 add more OKed parts of the E-AC-3 decoder
jbr
parents:
diff changeset
23 #include "avcodec.h"
8281
f93efc084e41 Make av_log_missing_feature an internal function, and change its name
stefano
parents: 8273
diff changeset
24 #include "internal.h"
8545
a5402e89a80c Factorise enum of AC3 error types to be usable by AAC in the ADTS patch that
superdump
parents: 8281
diff changeset
25 #include "aac_ac3_parser.h"
7666
d407738f9a71 add more OKed parts of the E-AC-3 decoder
jbr
parents:
diff changeset
26 #include "ac3.h"
d407738f9a71 add more OKed parts of the E-AC-3 decoder
jbr
parents:
diff changeset
27 #include "ac3_parser.h"
d407738f9a71 add more OKed parts of the E-AC-3 decoder
jbr
parents:
diff changeset
28 #include "ac3dec.h"
d407738f9a71 add more OKed parts of the E-AC-3 decoder
jbr
parents:
diff changeset
29 #include "ac3dec_data.h"
d407738f9a71 add more OKed parts of the E-AC-3 decoder
jbr
parents:
diff changeset
30
d407738f9a71 add more OKed parts of the E-AC-3 decoder
jbr
parents:
diff changeset
31 /** gain adaptive quantization mode */
d407738f9a71 add more OKed parts of the E-AC-3 decoder
jbr
parents:
diff changeset
32 typedef enum {
d407738f9a71 add more OKed parts of the E-AC-3 decoder
jbr
parents:
diff changeset
33 EAC3_GAQ_NO =0,
d407738f9a71 add more OKed parts of the E-AC-3 decoder
jbr
parents:
diff changeset
34 EAC3_GAQ_12,
d407738f9a71 add more OKed parts of the E-AC-3 decoder
jbr
parents:
diff changeset
35 EAC3_GAQ_14,
d407738f9a71 add more OKed parts of the E-AC-3 decoder
jbr
parents:
diff changeset
36 EAC3_GAQ_124
d407738f9a71 add more OKed parts of the E-AC-3 decoder
jbr
parents:
diff changeset
37 } EAC3GaqMode;
d407738f9a71 add more OKed parts of the E-AC-3 decoder
jbr
parents:
diff changeset
38
d407738f9a71 add more OKed parts of the E-AC-3 decoder
jbr
parents:
diff changeset
39 #define EAC3_SR_CODE_REDUCED 3
d407738f9a71 add more OKed parts of the E-AC-3 decoder
jbr
parents:
diff changeset
40
d407738f9a71 add more OKed parts of the E-AC-3 decoder
jbr
parents:
diff changeset
41 /** lrint(M_SQRT2*cos(2*M_PI/12)*(1<<23)) */
d407738f9a71 add more OKed parts of the E-AC-3 decoder
jbr
parents:
diff changeset
42 #define COEFF_0 10273905LL
d407738f9a71 add more OKed parts of the E-AC-3 decoder
jbr
parents:
diff changeset
43
d407738f9a71 add more OKed parts of the E-AC-3 decoder
jbr
parents:
diff changeset
44 /** lrint(M_SQRT2*cos(0*M_PI/12)*(1<<23)) = lrint(M_SQRT2*(1<<23)) */
d407738f9a71 add more OKed parts of the E-AC-3 decoder
jbr
parents:
diff changeset
45 #define COEFF_1 11863283LL
d407738f9a71 add more OKed parts of the E-AC-3 decoder
jbr
parents:
diff changeset
46
d407738f9a71 add more OKed parts of the E-AC-3 decoder
jbr
parents:
diff changeset
47 /** lrint(M_SQRT2*cos(5*M_PI/12)*(1<<23)) */
d407738f9a71 add more OKed parts of the E-AC-3 decoder
jbr
parents:
diff changeset
48 #define COEFF_2 3070444LL
d407738f9a71 add more OKed parts of the E-AC-3 decoder
jbr
parents:
diff changeset
49
d407738f9a71 add more OKed parts of the E-AC-3 decoder
jbr
parents:
diff changeset
50 /**
d407738f9a71 add more OKed parts of the E-AC-3 decoder
jbr
parents:
diff changeset
51 * Calculate 6-point IDCT of the pre-mantissas.
d407738f9a71 add more OKed parts of the E-AC-3 decoder
jbr
parents:
diff changeset
52 * All calculations are 24-bit fixed-point.
d407738f9a71 add more OKed parts of the E-AC-3 decoder
jbr
parents:
diff changeset
53 */
d407738f9a71 add more OKed parts of the E-AC-3 decoder
jbr
parents:
diff changeset
54 static void idct6(int pre_mant[6])
d407738f9a71 add more OKed parts of the E-AC-3 decoder
jbr
parents:
diff changeset
55 {
d407738f9a71 add more OKed parts of the E-AC-3 decoder
jbr
parents:
diff changeset
56 int tmp;
d407738f9a71 add more OKed parts of the E-AC-3 decoder
jbr
parents:
diff changeset
57 int even0, even1, even2, odd0, odd1, odd2;
d407738f9a71 add more OKed parts of the E-AC-3 decoder
jbr
parents:
diff changeset
58
d407738f9a71 add more OKed parts of the E-AC-3 decoder
jbr
parents:
diff changeset
59 odd1 = pre_mant[1] - pre_mant[3] - pre_mant[5];
d407738f9a71 add more OKed parts of the E-AC-3 decoder
jbr
parents:
diff changeset
60
d407738f9a71 add more OKed parts of the E-AC-3 decoder
jbr
parents:
diff changeset
61 even2 = ( pre_mant[2] * COEFF_0) >> 23;
d407738f9a71 add more OKed parts of the E-AC-3 decoder
jbr
parents:
diff changeset
62 tmp = ( pre_mant[4] * COEFF_1) >> 23;
d407738f9a71 add more OKed parts of the E-AC-3 decoder
jbr
parents:
diff changeset
63 odd0 = ((pre_mant[1] + pre_mant[5]) * COEFF_2) >> 23;
d407738f9a71 add more OKed parts of the E-AC-3 decoder
jbr
parents:
diff changeset
64
d407738f9a71 add more OKed parts of the E-AC-3 decoder
jbr
parents:
diff changeset
65 even0 = pre_mant[0] + (tmp >> 1);
d407738f9a71 add more OKed parts of the E-AC-3 decoder
jbr
parents:
diff changeset
66 even1 = pre_mant[0] - tmp;
d407738f9a71 add more OKed parts of the E-AC-3 decoder
jbr
parents:
diff changeset
67
d407738f9a71 add more OKed parts of the E-AC-3 decoder
jbr
parents:
diff changeset
68 tmp = even0;
d407738f9a71 add more OKed parts of the E-AC-3 decoder
jbr
parents:
diff changeset
69 even0 = tmp + even2;
d407738f9a71 add more OKed parts of the E-AC-3 decoder
jbr
parents:
diff changeset
70 even2 = tmp - even2;
d407738f9a71 add more OKed parts of the E-AC-3 decoder
jbr
parents:
diff changeset
71
d407738f9a71 add more OKed parts of the E-AC-3 decoder
jbr
parents:
diff changeset
72 tmp = odd0;
d407738f9a71 add more OKed parts of the E-AC-3 decoder
jbr
parents:
diff changeset
73 odd0 = tmp + pre_mant[1] + pre_mant[3];
d407738f9a71 add more OKed parts of the E-AC-3 decoder
jbr
parents:
diff changeset
74 odd2 = tmp + pre_mant[5] - pre_mant[3];
d407738f9a71 add more OKed parts of the E-AC-3 decoder
jbr
parents:
diff changeset
75
d407738f9a71 add more OKed parts of the E-AC-3 decoder
jbr
parents:
diff changeset
76 pre_mant[0] = even0 + odd0;
d407738f9a71 add more OKed parts of the E-AC-3 decoder
jbr
parents:
diff changeset
77 pre_mant[1] = even1 + odd1;
d407738f9a71 add more OKed parts of the E-AC-3 decoder
jbr
parents:
diff changeset
78 pre_mant[2] = even2 + odd2;
d407738f9a71 add more OKed parts of the E-AC-3 decoder
jbr
parents:
diff changeset
79 pre_mant[3] = even2 - odd2;
d407738f9a71 add more OKed parts of the E-AC-3 decoder
jbr
parents:
diff changeset
80 pre_mant[4] = even1 - odd1;
d407738f9a71 add more OKed parts of the E-AC-3 decoder
jbr
parents:
diff changeset
81 pre_mant[5] = even0 - odd0;
d407738f9a71 add more OKed parts of the E-AC-3 decoder
jbr
parents:
diff changeset
82 }
7745
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
83
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
84 void ff_eac3_decode_transform_coeffs_aht_ch(AC3DecodeContext *s, int ch)
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
85 {
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
86 int bin, blk, gs;
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
87 int end_bap, gaq_mode;
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
88 GetBitContext *gbc = &s->gbc;
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
89 int gaq_gain[AC3_MAX_COEFS];
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
90
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
91 gaq_mode = get_bits(gbc, 2);
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
92 end_bap = (gaq_mode < 2) ? 12 : 17;
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
93
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
94 /* if GAQ gain is used, decode gain codes for bins with hebap between
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
95 8 and end_bap */
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
96 gs = 0;
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
97 if (gaq_mode == EAC3_GAQ_12 || gaq_mode == EAC3_GAQ_14) {
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
98 /* read 1-bit GAQ gain codes */
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
99 for (bin = s->start_freq[ch]; bin < s->end_freq[ch]; bin++) {
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
100 if (s->bap[ch][bin] > 7 && s->bap[ch][bin] < end_bap)
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
101 gaq_gain[gs++] = get_bits1(gbc) << (gaq_mode-1);
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
102 }
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
103 } else if (gaq_mode == EAC3_GAQ_124) {
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
104 /* read 1.67-bit GAQ gain codes (3 codes in 5 bits) */
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
105 int gc = 2;
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
106 for (bin = s->start_freq[ch]; bin < s->end_freq[ch]; bin++) {
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
107 if (s->bap[ch][bin] > 7 && s->bap[ch][bin] < 17) {
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
108 if (gc++ == 2) {
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
109 int group_code = get_bits(gbc, 5);
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
110 if (group_code > 26) {
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
111 av_log(s->avctx, AV_LOG_WARNING, "GAQ gain group code out-of-range\n");
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
112 group_code = 26;
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
113 }
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
114 gaq_gain[gs++] = ff_ac3_ungroup_3_in_5_bits_tab[group_code][0];
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
115 gaq_gain[gs++] = ff_ac3_ungroup_3_in_5_bits_tab[group_code][1];
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
116 gaq_gain[gs++] = ff_ac3_ungroup_3_in_5_bits_tab[group_code][2];
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
117 gc = 0;
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
118 }
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
119 }
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
120 }
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
121 }
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
122
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
123 gs=0;
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
124 for (bin = s->start_freq[ch]; bin < s->end_freq[ch]; bin++) {
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
125 int hebap = s->bap[ch][bin];
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
126 int bits = ff_eac3_bits_vs_hebap[hebap];
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
127 if (!hebap) {
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
128 /* zero-mantissa dithering */
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
129 for (blk = 0; blk < 6; blk++) {
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
130 s->pre_mantissa[ch][bin][blk] = (av_lfg_get(&s->dith_state) & 0x7FFFFF) - 0x400000;
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
131 }
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
132 } else if (hebap < 8) {
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
133 /* Vector Quantization */
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
134 int v = get_bits(gbc, bits);
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
135 for (blk = 0; blk < 6; blk++) {
7754
b7c59017beb8 use correct table name
jbr
parents: 7752
diff changeset
136 s->pre_mantissa[ch][bin][blk] = ff_eac3_mantissa_vq[hebap][v][blk] << 8;
7745
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
137 }
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
138 } else {
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
139 /* Gain Adaptive Quantization */
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
140 int gbits, log_gain;
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
141 if (gaq_mode != EAC3_GAQ_NO && hebap < end_bap) {
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
142 log_gain = gaq_gain[gs++];
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
143 } else {
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
144 log_gain = 0;
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
145 }
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
146 gbits = bits - log_gain;
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
147
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
148 for (blk = 0; blk < 6; blk++) {
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
149 int mant = get_sbits(gbc, gbits);
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
150 if (mant == -(1 << (gbits-1))) {
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
151 /* large mantissa */
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
152 int b;
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
153 mant = get_sbits(gbc, bits-2+log_gain) << (26-log_gain-bits);
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
154 /* remap mantissa value to correct for asymmetric quantization */
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
155 if (mant >= 0)
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
156 b = 32768 >> (log_gain+8);
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
157 else
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
158 b = ff_eac3_gaq_remap_2_4_b[hebap-8][log_gain-1];
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
159 mant += (ff_eac3_gaq_remap_2_4_a[hebap-8][log_gain-1] * (mant>>8) + b) >> 7;
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
160 } else {
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
161 /* small mantissa, no GAQ, or Gk=1 */
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
162 mant <<= 24 - bits;
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
163 if (!log_gain) {
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
164 /* remap mantissa value for no GAQ or Gk=1 */
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
165 mant += (ff_eac3_gaq_remap_1[hebap-8] * (mant>>8)) >> 7;
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
166 }
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
167 }
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
168 s->pre_mantissa[ch][bin][blk] = mant;
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
169 }
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
170 }
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
171 idct6(s->pre_mantissa[ch][bin]);
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
172 }
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
173 }
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
174
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
175 int ff_eac3_parse_header(AC3DecodeContext *s)
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
176 {
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
177 int i, blk, ch;
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
178 int ac3_exponent_strategy, parse_aht_info, parse_spx_atten_data;
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
179 int parse_transient_proc_info;
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
180 int num_cpl_blocks;
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
181 GetBitContext *gbc = &s->gbc;
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
182
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
183 /* An E-AC-3 stream can have multiple independent streams which the
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
184 application can select from. each independent stream can also contain
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
185 dependent streams which are used to add or replace channels. */
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
186 if (s->frame_type == EAC3_FRAME_TYPE_DEPENDENT) {
8281
f93efc084e41 Make av_log_missing_feature an internal function, and change its name
stefano
parents: 8273
diff changeset
187 ff_log_missing_feature(s->avctx, "Dependent substream decoding", 1);
8545
a5402e89a80c Factorise enum of AC3 error types to be usable by AAC in the ADTS patch that
superdump
parents: 8281
diff changeset
188 return AAC_AC3_PARSE_ERROR_FRAME_TYPE;
7745
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
189 } else if (s->frame_type == EAC3_FRAME_TYPE_RESERVED) {
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
190 av_log(s->avctx, AV_LOG_ERROR, "Reserved frame type\n");
8545
a5402e89a80c Factorise enum of AC3 error types to be usable by AAC in the ADTS patch that
superdump
parents: 8281
diff changeset
191 return AAC_AC3_PARSE_ERROR_FRAME_TYPE;
7745
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
192 }
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
193
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
194 /* The substream id indicates which substream this frame belongs to. each
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
195 independent stream has its own substream id, and the dependent streams
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
196 associated to an independent stream have matching substream id's. */
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
197 if (s->substreamid) {
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
198 /* only decode substream with id=0. skip any additional substreams. */
8281
f93efc084e41 Make av_log_missing_feature an internal function, and change its name
stefano
parents: 8273
diff changeset
199 ff_log_missing_feature(s->avctx, "Additional substreams", 1);
8545
a5402e89a80c Factorise enum of AC3 error types to be usable by AAC in the ADTS patch that
superdump
parents: 8281
diff changeset
200 return AAC_AC3_PARSE_ERROR_FRAME_TYPE;
7745
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
201 }
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
202
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
203 if (s->bit_alloc_params.sr_code == EAC3_SR_CODE_REDUCED) {
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
204 /* The E-AC-3 specification does not tell how to handle reduced sample
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
205 rates in bit allocation. The best assumption would be that it is
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
206 handled like AC-3 DolbyNet, but we cannot be sure until we have a
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
207 sample which utilizes this feature. */
8281
f93efc084e41 Make av_log_missing_feature an internal function, and change its name
stefano
parents: 8273
diff changeset
208 ff_log_missing_feature(s->avctx, "Reduced sampling rates", 1);
7745
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
209 return -1;
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
210 }
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
211 skip_bits(gbc, 5); // skip bitstream id
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
212
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
213 /* volume control params */
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
214 for (i = 0; i < (s->channel_mode ? 1 : 2); i++) {
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
215 skip_bits(gbc, 5); // skip dialog normalization
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
216 if (get_bits1(gbc)) {
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
217 skip_bits(gbc, 8); // skip compression gain word
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
218 }
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
219 }
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
220
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
221 /* dependent stream channel map */
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
222 if (s->frame_type == EAC3_FRAME_TYPE_DEPENDENT) {
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
223 if (get_bits1(gbc)) {
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
224 skip_bits(gbc, 16); // skip custom channel map
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
225 }
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
226 }
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
227
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
228 /* mixing metadata */
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
229 if (get_bits1(gbc)) {
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
230 /* center and surround mix levels */
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
231 if (s->channel_mode > AC3_CHMODE_STEREO) {
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
232 skip_bits(gbc, 2); // skip preferred stereo downmix mode
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
233 if (s->channel_mode & 1) {
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
234 /* if three front channels exist */
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
235 skip_bits(gbc, 3); //skip Lt/Rt center mix level
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
236 s->center_mix_level = get_bits(gbc, 3);
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
237 }
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
238 if (s->channel_mode & 4) {
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
239 /* if a surround channel exists */
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
240 skip_bits(gbc, 3); //skip Lt/Rt surround mix level
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
241 s->surround_mix_level = get_bits(gbc, 3);
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
242 }
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
243 }
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
244
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
245 /* lfe mix level */
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
246 if (s->lfe_on && get_bits1(gbc)) {
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
247 // TODO: use LFE mix level
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
248 skip_bits(gbc, 5); // skip LFE mix level code
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
249 }
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
250
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
251 /* info for mixing with other streams and substreams */
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
252 if (s->frame_type == EAC3_FRAME_TYPE_INDEPENDENT) {
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
253 for (i = 0; i < (s->channel_mode ? 1 : 2); i++) {
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
254 // TODO: apply program scale factor
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
255 if (get_bits1(gbc)) {
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
256 skip_bits(gbc, 6); // skip program scale factor
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
257 }
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
258 }
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
259 if (get_bits1(gbc)) {
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
260 skip_bits(gbc, 6); // skip external program scale factor
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
261 }
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
262 /* skip mixing parameter data */
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
263 switch(get_bits(gbc, 2)) {
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
264 case 1: skip_bits(gbc, 5); break;
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
265 case 2: skip_bits(gbc, 12); break;
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
266 case 3: {
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
267 int mix_data_size = (get_bits(gbc, 5) + 2) << 3;
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
268 skip_bits_long(gbc, mix_data_size);
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
269 break;
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
270 }
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
271 }
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
272 /* skip pan information for mono or dual mono source */
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
273 if (s->channel_mode < AC3_CHMODE_STEREO) {
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
274 for (i = 0; i < (s->channel_mode ? 1 : 2); i++) {
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
275 if (get_bits1(gbc)) {
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
276 /* note: this is not in the ATSC A/52B specification
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
277 reference: ETSI TS 102 366 V1.1.1
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
278 section: E.1.3.1.25 */
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
279 skip_bits(gbc, 8); // skip pan mean direction index
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
280 skip_bits(gbc, 6); // skip reserved paninfo bits
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
281 }
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
282 }
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
283 }
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
284 /* skip mixing configuration information */
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
285 if (get_bits1(gbc)) {
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
286 for (blk = 0; blk < s->num_blocks; blk++) {
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
287 if (s->num_blocks == 1 || get_bits1(gbc)) {
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
288 skip_bits(gbc, 5);
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
289 }
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
290 }
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
291 }
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
292 }
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
293 }
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
294
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
295 /* informational metadata */
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
296 if (get_bits1(gbc)) {
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
297 skip_bits(gbc, 3); // skip bit stream mode
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
298 skip_bits(gbc, 2); // skip copyright bit and original bitstream bit
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
299 if (s->channel_mode == AC3_CHMODE_STEREO) {
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
300 skip_bits(gbc, 4); // skip Dolby surround and headphone mode
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
301 }
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
302 if (s->channel_mode >= AC3_CHMODE_2F2R) {
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
303 skip_bits(gbc, 2); // skip Dolby surround EX mode
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
304 }
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
305 for (i = 0; i < (s->channel_mode ? 1 : 2); i++) {
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
306 if (get_bits1(gbc)) {
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
307 skip_bits(gbc, 8); // skip mix level, room type, and A/D converter type
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
308 }
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
309 }
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
310 if (s->bit_alloc_params.sr_code != EAC3_SR_CODE_REDUCED) {
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
311 skip_bits1(gbc); // skip source sample rate code
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
312 }
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
313 }
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
314
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
315 /* converter synchronization flag
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
316 If frames are less than six blocks, this bit should be turned on
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
317 once every 6 blocks to indicate the start of a frame set.
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
318 reference: RFC 4598, Section 2.1.3 Frame Sets */
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
319 if (s->frame_type == EAC3_FRAME_TYPE_INDEPENDENT && s->num_blocks != 6) {
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
320 skip_bits1(gbc); // skip converter synchronization flag
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
321 }
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
322
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
323 /* original frame size code if this stream was converted from AC-3 */
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
324 if (s->frame_type == EAC3_FRAME_TYPE_AC3_CONVERT &&
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
325 (s->num_blocks == 6 || get_bits1(gbc))) {
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
326 skip_bits(gbc, 6); // skip frame size code
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
327 }
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
328
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
329 /* additional bitstream info */
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
330 if (get_bits1(gbc)) {
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
331 int addbsil = get_bits(gbc, 6);
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
332 for (i = 0; i < addbsil + 1; i++) {
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
333 skip_bits(gbc, 8); // skip additional bit stream info
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
334 }
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
335 }
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
336
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
337 /* audio frame syntax flags, strategy data, and per-frame data */
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
338
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
339 if (s->num_blocks == 6) {
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
340 ac3_exponent_strategy = get_bits1(gbc);
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
341 parse_aht_info = get_bits1(gbc);
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
342 } else {
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
343 /* less than 6 blocks, so use AC-3-style exponent strategy syntax, and
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
344 do not use AHT */
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
345 ac3_exponent_strategy = 1;
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
346 parse_aht_info = 0;
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
347 }
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
348
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
349 s->snr_offset_strategy = get_bits(gbc, 2);
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
350 parse_transient_proc_info = get_bits1(gbc);
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
351
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
352 s->block_switch_syntax = get_bits1(gbc);
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
353 if (!s->block_switch_syntax)
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
354 memset(s->block_switch, 0, sizeof(s->block_switch));
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
355
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
356 s->dither_flag_syntax = get_bits1(gbc);
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
357 if (!s->dither_flag_syntax) {
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
358 for (ch = 1; ch <= s->fbw_channels; ch++)
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
359 s->dither_flag[ch] = 1;
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
360 }
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
361 s->dither_flag[CPL_CH] = s->dither_flag[s->lfe_ch] = 0;
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
362
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
363 s->bit_allocation_syntax = get_bits1(gbc);
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
364 if (!s->bit_allocation_syntax) {
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
365 /* set default bit allocation parameters */
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
366 s->bit_alloc_params.slow_decay = ff_ac3_slow_decay_tab[2];
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
367 s->bit_alloc_params.fast_decay = ff_ac3_fast_decay_tab[1];
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
368 s->bit_alloc_params.slow_gain = ff_ac3_slow_gain_tab [1];
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
369 s->bit_alloc_params.db_per_bit = ff_ac3_db_per_bit_tab[2];
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
370 s->bit_alloc_params.floor = ff_ac3_floor_tab [7];
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
371 }
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
372
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
373 s->fast_gain_syntax = get_bits1(gbc);
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
374 s->dba_syntax = get_bits1(gbc);
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
375 s->skip_syntax = get_bits1(gbc);
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
376 parse_spx_atten_data = get_bits1(gbc);
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
377
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
378 /* coupling strategy occurance and coupling use per block */
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
379 num_cpl_blocks = 0;
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
380 if (s->channel_mode > 1) {
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
381 for (blk = 0; blk < s->num_blocks; blk++) {
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
382 s->cpl_strategy_exists[blk] = (!blk || get_bits1(gbc));
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
383 if (s->cpl_strategy_exists[blk]) {
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
384 s->cpl_in_use[blk] = get_bits1(gbc);
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
385 } else {
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
386 s->cpl_in_use[blk] = s->cpl_in_use[blk-1];
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
387 }
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
388 num_cpl_blocks += s->cpl_in_use[blk];
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
389 }
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
390 } else {
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
391 memset(s->cpl_in_use, 0, sizeof(s->cpl_in_use));
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
392 }
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
393
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
394 /* exponent strategy data */
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
395 if (ac3_exponent_strategy) {
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
396 /* AC-3-style exponent strategy syntax */
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
397 for (blk = 0; blk < s->num_blocks; blk++) {
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
398 for (ch = !s->cpl_in_use[blk]; ch <= s->fbw_channels; ch++) {
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
399 s->exp_strategy[blk][ch] = get_bits(gbc, 2);
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
400 }
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
401 }
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
402 } else {
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
403 /* LUT-based exponent strategy syntax */
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
404 for (ch = !((s->channel_mode > 1) && num_cpl_blocks); ch <= s->fbw_channels; ch++) {
7750
f9bd775992d4 merge declaration and init. variable is not used outside the loop.
jbr
parents: 7745
diff changeset
405 int frmchexpstr = get_bits(gbc, 5);
7745
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
406 for (blk = 0; blk < 6; blk++) {
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
407 s->exp_strategy[blk][ch] = ff_eac3_frm_expstr[frmchexpstr][blk];
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
408 }
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
409 }
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
410 }
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
411 /* LFE exponent strategy */
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
412 if (s->lfe_on) {
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
413 for (blk = 0; blk < s->num_blocks; blk++) {
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
414 s->exp_strategy[blk][s->lfe_ch] = get_bits1(gbc);
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
415 }
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
416 }
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
417 /* original exponent strategies if this stream was converted from AC-3 */
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
418 if (s->frame_type == EAC3_FRAME_TYPE_INDEPENDENT &&
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
419 (s->num_blocks == 6 || get_bits1(gbc))) {
7752
e3fb2606d5b5 skip converter exponent strategy for all channels at once
jbr
parents: 7750
diff changeset
420 skip_bits(gbc, 5 * s->fbw_channels); // skip converter channel exponent strategy
7745
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
421 }
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
422
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
423 /* determine which channels use AHT */
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
424 if (parse_aht_info) {
7755
1c0e498ac7bd simplify code and comment regarding determination whether or not AHT is used.
jbr
parents: 7754
diff changeset
425 /* For AHT to be used, all non-zero blocks must reuse exponents from
1c0e498ac7bd simplify code and comment regarding determination whether or not AHT is used.
jbr
parents: 7754
diff changeset
426 the first block. Furthermore, for AHT to be used in the coupling
1c0e498ac7bd simplify code and comment regarding determination whether or not AHT is used.
jbr
parents: 7754
diff changeset
427 channel, all blocks must use coupling and use the same coupling
1c0e498ac7bd simplify code and comment regarding determination whether or not AHT is used.
jbr
parents: 7754
diff changeset
428 strategy. */
7745
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
429 s->channel_uses_aht[CPL_CH]=0;
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
430 for (ch = (num_cpl_blocks != 6); ch <= s->channels; ch++) {
7755
1c0e498ac7bd simplify code and comment regarding determination whether or not AHT is used.
jbr
parents: 7754
diff changeset
431 int use_aht = 1;
1c0e498ac7bd simplify code and comment regarding determination whether or not AHT is used.
jbr
parents: 7754
diff changeset
432 for (blk = 1; blk < 6; blk++) {
1c0e498ac7bd simplify code and comment regarding determination whether or not AHT is used.
jbr
parents: 7754
diff changeset
433 if ((s->exp_strategy[blk][ch] != EXP_REUSE) ||
1c0e498ac7bd simplify code and comment regarding determination whether or not AHT is used.
jbr
parents: 7754
diff changeset
434 (!ch && s->cpl_strategy_exists[blk])) {
1c0e498ac7bd simplify code and comment regarding determination whether or not AHT is used.
jbr
parents: 7754
diff changeset
435 use_aht = 0;
1c0e498ac7bd simplify code and comment regarding determination whether or not AHT is used.
jbr
parents: 7754
diff changeset
436 break;
1c0e498ac7bd simplify code and comment regarding determination whether or not AHT is used.
jbr
parents: 7754
diff changeset
437 }
7745
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
438 }
7755
1c0e498ac7bd simplify code and comment regarding determination whether or not AHT is used.
jbr
parents: 7754
diff changeset
439 s->channel_uses_aht[ch] = use_aht && get_bits1(gbc);
7745
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
440 }
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
441 } else {
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
442 memset(s->channel_uses_aht, 0, sizeof(s->channel_uses_aht));
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
443 }
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
444
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
445 /* per-frame SNR offset */
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
446 if (!s->snr_offset_strategy) {
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
447 int csnroffst = (get_bits(gbc, 6) - 15) << 4;
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
448 int snroffst = (csnroffst + get_bits(gbc, 4)) << 2;
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
449 for (ch = 0; ch <= s->channels; ch++)
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
450 s->snr_offset[ch] = snroffst;
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
451 }
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
452
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
453 /* transient pre-noise processing data */
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
454 if (parse_transient_proc_info) {
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
455 for (ch = 1; ch <= s->fbw_channels; ch++) {
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
456 if (get_bits1(gbc)) { // channel in transient processing
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
457 skip_bits(gbc, 10); // skip transient processing location
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
458 skip_bits(gbc, 8); // skip transient processing length
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
459 }
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
460 }
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
461 }
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
462
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
463 /* spectral extension attenuation data */
8142
f17b1eb9ccd1 revert r15812 (E-AC-3 Spectral Extension) pending further review
jbr
parents: 8136
diff changeset
464 if (parse_spx_atten_data) {
8281
f93efc084e41 Make av_log_missing_feature an internal function, and change its name
stefano
parents: 8273
diff changeset
465 ff_log_missing_feature(s->avctx, "Spectral extension attenuation", 1);
8142
f17b1eb9ccd1 revert r15812 (E-AC-3 Spectral Extension) pending further review
jbr
parents: 8136
diff changeset
466 for (ch = 1; ch <= s->fbw_channels; ch++) {
f17b1eb9ccd1 revert r15812 (E-AC-3 Spectral Extension) pending further review
jbr
parents: 8136
diff changeset
467 if (get_bits1(gbc)) { // channel has spx attenuation
f17b1eb9ccd1 revert r15812 (E-AC-3 Spectral Extension) pending further review
jbr
parents: 8136
diff changeset
468 skip_bits(gbc, 5); // skip spx attenuation code
f17b1eb9ccd1 revert r15812 (E-AC-3 Spectral Extension) pending further review
jbr
parents: 8136
diff changeset
469 }
f17b1eb9ccd1 revert r15812 (E-AC-3 Spectral Extension) pending further review
jbr
parents: 8136
diff changeset
470 }
f17b1eb9ccd1 revert r15812 (E-AC-3 Spectral Extension) pending further review
jbr
parents: 8136
diff changeset
471 }
7745
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
472
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
473 /* block start information */
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
474 if (s->num_blocks > 1 && get_bits1(gbc)) {
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
475 /* reference: Section E2.3.2.27
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
476 nblkstrtbits = (numblks - 1) * (4 + ceiling(log2(words_per_frame)))
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
477 The spec does not say what this data is or what it's used for.
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
478 It is likely the offset of each block within the frame. */
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
479 int block_start_bits = (s->num_blocks-1) * (4 + av_log2(s->frame_size-2));
8272
c15abcb0209a ac3dec: use skip_bits_long() for block start bits
jbr
parents: 8142
diff changeset
480 skip_bits_long(gbc, block_start_bits);
8281
f93efc084e41 Make av_log_missing_feature an internal function, and change its name
stefano
parents: 8273
diff changeset
481 ff_log_missing_feature(s->avctx, "Block start info", 1);
7745
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
482 }
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
483
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
484 /* syntax state initialization */
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
485 for (ch = 1; ch <= s->fbw_channels; ch++) {
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
486 s->first_cpl_coords[ch] = 1;
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
487 }
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
488 s->first_cpl_leak = 1;
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
489
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
490 return 0;
b09973d487e6 commit more OKed parts of the E-AC-3 decoder
jbr
parents: 7679
diff changeset
491 }