OSDN Git Service

Merge remote-tracking branch 'qatar/master'
[coroid/ffmpeg_saccubus.git] / libavcodec / ac3enc.c
1 /*
2  * The simplest AC-3 encoder
3  * Copyright (c) 2000 Fabrice Bellard
4  * Copyright (c) 2006-2010 Justin Ruggles <justin.ruggles@gmail.com>
5  * Copyright (c) 2006-2010 Prakash Punnoor <prakash@punnoor.de>
6  *
7  * This file is part of FFmpeg.
8  *
9  * FFmpeg is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU Lesser General Public
11  * License as published by the Free Software Foundation; either
12  * version 2.1 of the License, or (at your option) any later version.
13  *
14  * FFmpeg 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 GNU
17  * Lesser General Public License for more details.
18  *
19  * You should have received a copy of the GNU Lesser General Public
20  * License along with FFmpeg; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
22  */
23
24 /**
25  * @file
26  * The simplest AC-3 encoder.
27  */
28
29 //#define ASSERT_LEVEL 2
30
31 #include <stdint.h>
32
33 #include "libavutil/audioconvert.h"
34 #include "libavutil/avassert.h"
35 #include "libavutil/avstring.h"
36 #include "libavutil/crc.h"
37 #include "libavutil/opt.h"
38 #include "avcodec.h"
39 #include "put_bits.h"
40 #include "dsputil.h"
41 #include "ac3dsp.h"
42 #include "ac3.h"
43 #include "audioconvert.h"
44 #include "fft.h"
45 #include "ac3enc.h"
46 #include "eac3enc.h"
47
48 typedef struct AC3Mant {
49     int16_t *qmant1_ptr, *qmant2_ptr, *qmant4_ptr; ///< mantissa pointers for bap=1,2,4
50     int mant1_cnt, mant2_cnt, mant4_cnt;    ///< mantissa counts for bap=1,2,4
51 } AC3Mant;
52
53 #define CMIXLEV_NUM_OPTIONS 3
54 static const float cmixlev_options[CMIXLEV_NUM_OPTIONS] = {
55     LEVEL_MINUS_3DB, LEVEL_MINUS_4POINT5DB, LEVEL_MINUS_6DB
56 };
57
58 #define SURMIXLEV_NUM_OPTIONS 3
59 static const float surmixlev_options[SURMIXLEV_NUM_OPTIONS] = {
60     LEVEL_MINUS_3DB, LEVEL_MINUS_6DB, LEVEL_ZERO
61 };
62
63 #define EXTMIXLEV_NUM_OPTIONS 8
64 static const float extmixlev_options[EXTMIXLEV_NUM_OPTIONS] = {
65     LEVEL_PLUS_3DB,  LEVEL_PLUS_1POINT5DB,  LEVEL_ONE,       LEVEL_MINUS_4POINT5DB,
66     LEVEL_MINUS_3DB, LEVEL_MINUS_4POINT5DB, LEVEL_MINUS_6DB, LEVEL_ZERO
67 };
68
69
70 /**
71  * LUT for number of exponent groups.
72  * exponent_group_tab[coupling][exponent strategy-1][number of coefficients]
73  */
74 static uint8_t exponent_group_tab[2][3][256];
75
76
77 /**
78  * List of supported channel layouts.
79  */
80 const int64_t ff_ac3_channel_layouts[19] = {
81      AV_CH_LAYOUT_MONO,
82      AV_CH_LAYOUT_STEREO,
83      AV_CH_LAYOUT_2_1,
84      AV_CH_LAYOUT_SURROUND,
85      AV_CH_LAYOUT_2_2,
86      AV_CH_LAYOUT_QUAD,
87      AV_CH_LAYOUT_4POINT0,
88      AV_CH_LAYOUT_5POINT0,
89      AV_CH_LAYOUT_5POINT0_BACK,
90     (AV_CH_LAYOUT_MONO     | AV_CH_LOW_FREQUENCY),
91     (AV_CH_LAYOUT_STEREO   | AV_CH_LOW_FREQUENCY),
92     (AV_CH_LAYOUT_2_1      | AV_CH_LOW_FREQUENCY),
93     (AV_CH_LAYOUT_SURROUND | AV_CH_LOW_FREQUENCY),
94     (AV_CH_LAYOUT_2_2      | AV_CH_LOW_FREQUENCY),
95     (AV_CH_LAYOUT_QUAD     | AV_CH_LOW_FREQUENCY),
96     (AV_CH_LAYOUT_4POINT0  | AV_CH_LOW_FREQUENCY),
97      AV_CH_LAYOUT_5POINT1,
98      AV_CH_LAYOUT_5POINT1_BACK,
99      0
100 };
101
102
103 /**
104  * LUT to select the bandwidth code based on the bit rate, sample rate, and
105  * number of full-bandwidth channels.
106  * bandwidth_tab[fbw_channels-1][sample rate code][bit rate code]
107  */
108 static const uint8_t ac3_bandwidth_tab[5][3][19] = {
109 //      32  40  48  56  64  80  96 112 128 160 192 224 256 320 384 448 512 576 640
110
111     { {  0,  0,  0, 12, 16, 32, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48 },
112       {  0,  0,  0, 16, 20, 36, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56 },
113       {  0,  0,  0, 32, 40, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60 } },
114
115     { {  0,  0,  0,  0,  0,  0,  0, 20, 24, 32, 48, 48, 48, 48, 48, 48, 48, 48, 48 },
116       {  0,  0,  0,  0,  0,  0,  4, 24, 28, 36, 56, 56, 56, 56, 56, 56, 56, 56, 56 },
117       {  0,  0,  0,  0,  0,  0, 20, 44, 52, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60 } },
118
119     { {  0,  0,  0,  0,  0,  0,  0,  0,  0, 16, 24, 32, 40, 48, 48, 48, 48, 48, 48 },
120       {  0,  0,  0,  0,  0,  0,  0,  0,  4, 20, 28, 36, 44, 56, 56, 56, 56, 56, 56 },
121       {  0,  0,  0,  0,  0,  0,  0,  0, 20, 40, 48, 60, 60, 60, 60, 60, 60, 60, 60 } },
122
123     { {  0,  0,  0,  0,  0,  0,  0,  0,  0,  0, 12, 24, 32, 48, 48, 48, 48, 48, 48 },
124       {  0,  0,  0,  0,  0,  0,  0,  0,  0,  0, 16, 28, 36, 56, 56, 56, 56, 56, 56 },
125       {  0,  0,  0,  0,  0,  0,  0,  0,  0,  0, 32, 48, 60, 60, 60, 60, 60, 60, 60 } },
126
127     { {  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  8, 20, 32, 40, 48, 48, 48, 48 },
128       {  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0, 12, 24, 36, 44, 56, 56, 56, 56 },
129       {  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0, 28, 44, 60, 60, 60, 60, 60, 60 } }
130 };
131
132
133 /**
134  * LUT to select the coupling start band based on the bit rate, sample rate, and
135  * number of full-bandwidth channels. -1 = coupling off
136  * ac3_coupling_start_tab[channel_mode-2][sample rate code][bit rate code]
137  *
138  * TODO: more testing for optimal parameters.
139  *       multi-channel tests at 44.1kHz and 32kHz.
140  */
141 static const int8_t ac3_coupling_start_tab[6][3][19] = {
142 //      32  40  48  56  64  80  96 112 128 160 192 224 256 320 384 448 512 576 640
143
144     // 2/0
145     { {  0,  0,  0,  0,  0,  0,  0,  1,  1,  7,  8, 11, 12, -1, -1, -1, -1, -1, -1 },
146       {  0,  0,  0,  0,  0,  0,  1,  3,  5,  7, 10, 12, 13, -1, -1, -1, -1, -1, -1 },
147       {  0,  0,  0,  0,  1,  2,  2,  9, 13, 15, -1, -1, -1, -1, -1, -1, -1, -1, -1 } },
148
149     // 3/0
150     { {  0,  0,  0,  0,  0,  0,  0,  0,  2,  2,  6,  9, 11, 12, 13, -1, -1, -1, -1 },
151       {  0,  0,  0,  0,  0,  0,  0,  0,  2,  2,  6,  9, 11, 12, 13, -1, -1, -1, -1 },
152       { -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1 } },
153
154     // 2/1 - untested
155     { {  0,  0,  0,  0,  0,  0,  0,  0,  2,  2,  6,  9, 11, 12, 13, -1, -1, -1, -1 },
156       {  0,  0,  0,  0,  0,  0,  0,  0,  2,  2,  6,  9, 11, 12, 13, -1, -1, -1, -1 },
157       { -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1 } },
158
159     // 3/1
160     { {  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  3,  2, 10, 11, 11, 12, 12, 14, -1 },
161       {  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  3,  2, 10, 11, 11, 12, 12, 14, -1 },
162       { -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1 } },
163
164     // 2/2 - untested
165     { {  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  3,  2, 10, 11, 11, 12, 12, 14, -1 },
166       {  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  3,  2, 10, 11, 11, 12, 12, 14, -1 },
167       { -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1 } },
168
169     // 3/2
170     { {  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  1,  6,  8, 11, 12, 12, -1, -1 },
171       {  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  1,  6,  8, 11, 12, 12, -1, -1 },
172       { -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1 } },
173 };
174
175
176 /**
177  * Adjust the frame size to make the average bit rate match the target bit rate.
178  * This is only needed for 11025, 22050, and 44100 sample rates or any E-AC-3.
179  */
180 void ff_ac3_adjust_frame_size(AC3EncodeContext *s)
181 {
182     while (s->bits_written >= s->bit_rate && s->samples_written >= s->sample_rate) {
183         s->bits_written    -= s->bit_rate;
184         s->samples_written -= s->sample_rate;
185     }
186     s->frame_size = s->frame_size_min +
187                     2 * (s->bits_written * s->sample_rate < s->samples_written * s->bit_rate);
188     s->bits_written    += s->frame_size * 8;
189     s->samples_written += AC3_FRAME_SIZE;
190 }
191
192
193 void ff_ac3_compute_coupling_strategy(AC3EncodeContext *s)
194 {
195     int blk, ch;
196     int got_cpl_snr;
197
198     /* set coupling use flags for each block/channel */
199     /* TODO: turn coupling on/off and adjust start band based on bit usage */
200     for (blk = 0; blk < AC3_MAX_BLOCKS; blk++) {
201         AC3Block *block = &s->blocks[blk];
202         for (ch = 1; ch <= s->fbw_channels; ch++)
203             block->channel_in_cpl[ch] = s->cpl_on;
204     }
205
206     /* enable coupling for each block if at least 2 channels have coupling
207        enabled for that block */
208     got_cpl_snr = 0;
209     for (blk = 0; blk < AC3_MAX_BLOCKS; blk++) {
210         AC3Block *block = &s->blocks[blk];
211         block->num_cpl_channels = 0;
212         for (ch = 1; ch <= s->fbw_channels; ch++)
213             block->num_cpl_channels += block->channel_in_cpl[ch];
214         block->cpl_in_use = block->num_cpl_channels > 1;
215         if (!block->cpl_in_use) {
216             block->num_cpl_channels = 0;
217             for (ch = 1; ch <= s->fbw_channels; ch++)
218                 block->channel_in_cpl[ch] = 0;
219         }
220
221         block->new_cpl_strategy = !blk;
222         if (blk) {
223             for (ch = 1; ch <= s->fbw_channels; ch++) {
224                 if (block->channel_in_cpl[ch] != s->blocks[blk-1].channel_in_cpl[ch]) {
225                     block->new_cpl_strategy = 1;
226                     break;
227                 }
228             }
229         }
230         block->new_cpl_leak = block->new_cpl_strategy;
231
232         if (!blk || (block->cpl_in_use && !got_cpl_snr)) {
233             block->new_snr_offsets = 1;
234             if (block->cpl_in_use)
235                 got_cpl_snr = 1;
236         } else {
237             block->new_snr_offsets = 0;
238         }
239     }
240
241     /* set bandwidth for each channel */
242     for (blk = 0; blk < AC3_MAX_BLOCKS; blk++) {
243         AC3Block *block = &s->blocks[blk];
244         for (ch = 1; ch <= s->fbw_channels; ch++) {
245             if (block->channel_in_cpl[ch])
246                 block->end_freq[ch] = s->start_freq[CPL_CH];
247             else
248                 block->end_freq[ch] = s->bandwidth_code * 3 + 73;
249         }
250     }
251 }
252
253
254 /**
255  * Apply stereo rematrixing to coefficients based on rematrixing flags.
256  */
257 void ff_ac3_apply_rematrixing(AC3EncodeContext *s)
258 {
259     int nb_coefs;
260     int blk, bnd, i;
261     int start, end;
262     uint8_t *flags;
263
264     if (!s->rematrixing_enabled)
265         return;
266
267     for (blk = 0; blk < AC3_MAX_BLOCKS; blk++) {
268         AC3Block *block = &s->blocks[blk];
269         if (block->new_rematrixing_strategy)
270             flags = block->rematrixing_flags;
271         nb_coefs = FFMIN(block->end_freq[1], block->end_freq[2]);
272         for (bnd = 0; bnd < block->num_rematrixing_bands; bnd++) {
273             if (flags[bnd]) {
274                 start = ff_ac3_rematrix_band_tab[bnd];
275                 end   = FFMIN(nb_coefs, ff_ac3_rematrix_band_tab[bnd+1]);
276                 for (i = start; i < end; i++) {
277                     int32_t lt = block->fixed_coef[1][i];
278                     int32_t rt = block->fixed_coef[2][i];
279                     block->fixed_coef[1][i] = (lt + rt) >> 1;
280                     block->fixed_coef[2][i] = (lt - rt) >> 1;
281                 }
282             }
283         }
284     }
285 }
286
287
288 /**
289  * Initialize exponent tables.
290  */
291 static av_cold void exponent_init(AC3EncodeContext *s)
292 {
293     int expstr, i, grpsize;
294
295     for (expstr = EXP_D15-1; expstr <= EXP_D45-1; expstr++) {
296         grpsize = 3 << expstr;
297         for (i = 12; i < 256; i++) {
298             exponent_group_tab[0][expstr][i] = (i + grpsize - 4) / grpsize;
299             exponent_group_tab[1][expstr][i] = (i              ) / grpsize;
300         }
301     }
302     /* LFE */
303     exponent_group_tab[0][0][7] = 2;
304 }
305
306
307 /**
308  * Extract exponents from the MDCT coefficients.
309  * This takes into account the normalization that was done to the input samples
310  * by adjusting the exponents by the exponent shift values.
311  */
312 static void extract_exponents(AC3EncodeContext *s)
313 {
314     int ch        = !s->cpl_on;
315     int chan_size = AC3_MAX_COEFS * AC3_MAX_BLOCKS * (s->channels - ch + 1);
316     AC3Block *block = &s->blocks[0];
317
318     s->ac3dsp.extract_exponents(block->exp[ch], block->fixed_coef[ch], chan_size);
319 }
320
321
322 /**
323  * Exponent Difference Threshold.
324  * New exponents are sent if their SAD exceed this number.
325  */
326 #define EXP_DIFF_THRESHOLD 500
327
328
329 /**
330  * Calculate exponent strategies for all channels.
331  * Array arrangement is reversed to simplify the per-channel calculation.
332  */
333 static void compute_exp_strategy(AC3EncodeContext *s)
334 {
335     int ch, blk, blk1;
336
337     for (ch = !s->cpl_on; ch <= s->fbw_channels; ch++) {
338         uint8_t *exp_strategy = s->exp_strategy[ch];
339         uint8_t *exp          = s->blocks[0].exp[ch];
340         int exp_diff;
341
342         /* estimate if the exponent variation & decide if they should be
343            reused in the next frame */
344         exp_strategy[0] = EXP_NEW;
345         exp += AC3_MAX_COEFS;
346         for (blk = 1; blk < AC3_MAX_BLOCKS; blk++, exp += AC3_MAX_COEFS) {
347             if ((ch == CPL_CH && (!s->blocks[blk].cpl_in_use || !s->blocks[blk-1].cpl_in_use)) ||
348                 (ch  > CPL_CH && (s->blocks[blk].channel_in_cpl[ch] != s->blocks[blk-1].channel_in_cpl[ch]))) {
349                 exp_strategy[blk] = EXP_NEW;
350                 continue;
351             }
352             exp_diff = s->dsp.sad[0](NULL, exp, exp - AC3_MAX_COEFS, 16, 16);
353             exp_strategy[blk] = EXP_REUSE;
354             if (ch == CPL_CH && exp_diff > (EXP_DIFF_THRESHOLD * (s->blocks[blk].end_freq[ch] - s->start_freq[ch]) / AC3_MAX_COEFS))
355                 exp_strategy[blk] = EXP_NEW;
356             else if (ch > CPL_CH && exp_diff > EXP_DIFF_THRESHOLD)
357                 exp_strategy[blk] = EXP_NEW;
358         }
359
360         /* now select the encoding strategy type : if exponents are often
361            recoded, we use a coarse encoding */
362         blk = 0;
363         while (blk < AC3_MAX_BLOCKS) {
364             blk1 = blk + 1;
365             while (blk1 < AC3_MAX_BLOCKS && exp_strategy[blk1] == EXP_REUSE)
366                 blk1++;
367             switch (blk1 - blk) {
368             case 1:  exp_strategy[blk] = EXP_D45; break;
369             case 2:
370             case 3:  exp_strategy[blk] = EXP_D25; break;
371             default: exp_strategy[blk] = EXP_D15; break;
372             }
373             blk = blk1;
374         }
375     }
376     if (s->lfe_on) {
377         ch = s->lfe_channel;
378         s->exp_strategy[ch][0] = EXP_D15;
379         for (blk = 1; blk < AC3_MAX_BLOCKS; blk++)
380             s->exp_strategy[ch][blk] = EXP_REUSE;
381     }
382 }
383
384
385 /**
386  * Update the exponents so that they are the ones the decoder will decode.
387  */
388 static void encode_exponents_blk_ch(uint8_t *exp, int nb_exps, int exp_strategy,
389                                     int cpl)
390 {
391     int nb_groups, i, k;
392
393     nb_groups = exponent_group_tab[cpl][exp_strategy-1][nb_exps] * 3;
394
395     /* for each group, compute the minimum exponent */
396     switch(exp_strategy) {
397     case EXP_D25:
398         for (i = 1, k = 1-cpl; i <= nb_groups; i++) {
399             uint8_t exp_min = exp[k];
400             if (exp[k+1] < exp_min)
401                 exp_min = exp[k+1];
402             exp[i-cpl] = exp_min;
403             k += 2;
404         }
405         break;
406     case EXP_D45:
407         for (i = 1, k = 1-cpl; i <= nb_groups; i++) {
408             uint8_t exp_min = exp[k];
409             if (exp[k+1] < exp_min)
410                 exp_min = exp[k+1];
411             if (exp[k+2] < exp_min)
412                 exp_min = exp[k+2];
413             if (exp[k+3] < exp_min)
414                 exp_min = exp[k+3];
415             exp[i-cpl] = exp_min;
416             k += 4;
417         }
418         break;
419     }
420
421     /* constraint for DC exponent */
422     if (!cpl && exp[0] > 15)
423         exp[0] = 15;
424
425     /* decrease the delta between each groups to within 2 so that they can be
426        differentially encoded */
427     for (i = 1; i <= nb_groups; i++)
428         exp[i] = FFMIN(exp[i], exp[i-1] + 2);
429     i--;
430     while (--i >= 0)
431         exp[i] = FFMIN(exp[i], exp[i+1] + 2);
432
433     if (cpl)
434         exp[-1] = exp[0] & ~1;
435
436     /* now we have the exponent values the decoder will see */
437     switch (exp_strategy) {
438     case EXP_D25:
439         for (i = nb_groups, k = (nb_groups * 2)-cpl; i > 0; i--) {
440             uint8_t exp1 = exp[i-cpl];
441             exp[k--] = exp1;
442             exp[k--] = exp1;
443         }
444         break;
445     case EXP_D45:
446         for (i = nb_groups, k = (nb_groups * 4)-cpl; i > 0; i--) {
447             exp[k] = exp[k-1] = exp[k-2] = exp[k-3] = exp[i-cpl];
448             k -= 4;
449         }
450         break;
451     }
452 }
453
454
455 /**
456  * Encode exponents from original extracted form to what the decoder will see.
457  * This copies and groups exponents based on exponent strategy and reduces
458  * deltas between adjacent exponent groups so that they can be differentially
459  * encoded.
460  */
461 static void encode_exponents(AC3EncodeContext *s)
462 {
463     int blk, blk1, ch, cpl;
464     uint8_t *exp, *exp_strategy;
465     int nb_coefs, num_reuse_blocks;
466
467     for (ch = !s->cpl_on; ch <= s->channels; ch++) {
468         exp          = s->blocks[0].exp[ch] + s->start_freq[ch];
469         exp_strategy = s->exp_strategy[ch];
470
471         cpl = (ch == CPL_CH);
472         blk = 0;
473         while (blk < AC3_MAX_BLOCKS) {
474             AC3Block *block = &s->blocks[blk];
475             if (cpl && !block->cpl_in_use) {
476                 exp += AC3_MAX_COEFS;
477                 blk++;
478                 continue;
479             }
480             nb_coefs = block->end_freq[ch] - s->start_freq[ch];
481             blk1 = blk + 1;
482
483             /* count the number of EXP_REUSE blocks after the current block
484                and set exponent reference block numbers */
485             s->exp_ref_block[ch][blk] = blk;
486             while (blk1 < AC3_MAX_BLOCKS && exp_strategy[blk1] == EXP_REUSE) {
487                 s->exp_ref_block[ch][blk1] = blk;
488                 blk1++;
489             }
490             num_reuse_blocks = blk1 - blk - 1;
491
492             /* for the EXP_REUSE case we select the min of the exponents */
493             s->ac3dsp.ac3_exponent_min(exp-s->start_freq[ch], num_reuse_blocks,
494                                        AC3_MAX_COEFS);
495
496             encode_exponents_blk_ch(exp, nb_coefs, exp_strategy[blk], cpl);
497
498             exp += AC3_MAX_COEFS * (num_reuse_blocks + 1);
499             blk = blk1;
500         }
501     }
502
503     /* reference block numbers have been changed, so reset ref_bap_set */
504     s->ref_bap_set = 0;
505 }
506
507
508 /**
509  * Group exponents.
510  * 3 delta-encoded exponents are in each 7-bit group. The number of groups
511  * varies depending on exponent strategy and bandwidth.
512  */
513 static void group_exponents(AC3EncodeContext *s)
514 {
515     int blk, ch, i, cpl;
516     int group_size, nb_groups, bit_count;
517     uint8_t *p;
518     int delta0, delta1, delta2;
519     int exp0, exp1;
520
521     bit_count = 0;
522     for (blk = 0; blk < AC3_MAX_BLOCKS; blk++) {
523         AC3Block *block = &s->blocks[blk];
524         for (ch = !block->cpl_in_use; ch <= s->channels; ch++) {
525             int exp_strategy = s->exp_strategy[ch][blk];
526             if (exp_strategy == EXP_REUSE)
527                 continue;
528             cpl = (ch == CPL_CH);
529             group_size = exp_strategy + (exp_strategy == EXP_D45);
530             nb_groups = exponent_group_tab[cpl][exp_strategy-1][block->end_freq[ch]-s->start_freq[ch]];
531             bit_count += 4 + (nb_groups * 7);
532             p = block->exp[ch] + s->start_freq[ch] - cpl;
533
534             /* DC exponent */
535             exp1 = *p++;
536             block->grouped_exp[ch][0] = exp1;
537
538             /* remaining exponents are delta encoded */
539             for (i = 1; i <= nb_groups; i++) {
540                 /* merge three delta in one code */
541                 exp0   = exp1;
542                 exp1   = p[0];
543                 p     += group_size;
544                 delta0 = exp1 - exp0 + 2;
545                 av_assert2(delta0 >= 0 && delta0 <= 4);
546
547                 exp0   = exp1;
548                 exp1   = p[0];
549                 p     += group_size;
550                 delta1 = exp1 - exp0 + 2;
551                 av_assert2(delta1 >= 0 && delta1 <= 4);
552
553                 exp0   = exp1;
554                 exp1   = p[0];
555                 p     += group_size;
556                 delta2 = exp1 - exp0 + 2;
557                 av_assert2(delta2 >= 0 && delta2 <= 4);
558
559                 block->grouped_exp[ch][i] = ((delta0 * 5 + delta1) * 5) + delta2;
560             }
561         }
562     }
563
564     s->exponent_bits = bit_count;
565 }
566
567
568 /**
569  * Calculate final exponents from the supplied MDCT coefficients and exponent shift.
570  * Extract exponents from MDCT coefficients, calculate exponent strategies,
571  * and encode final exponents.
572  */
573 void ff_ac3_process_exponents(AC3EncodeContext *s)
574 {
575     extract_exponents(s);
576
577     compute_exp_strategy(s);
578
579     encode_exponents(s);
580
581     group_exponents(s);
582
583     emms_c();
584 }
585
586
587 /**
588  * Count frame bits that are based solely on fixed parameters.
589  * This only has to be run once when the encoder is initialized.
590  */
591 static void count_frame_bits_fixed(AC3EncodeContext *s)
592 {
593     static const int frame_bits_inc[8] = { 0, 0, 2, 2, 2, 4, 2, 4 };
594     int blk;
595     int frame_bits;
596
597     /* assumptions:
598      *   no dynamic range codes
599      *   bit allocation parameters do not change between blocks
600      *   no delta bit allocation
601      *   no skipped data
602      *   no auxilliary data
603      *   no E-AC-3 metadata
604      */
605
606     /* header */
607     frame_bits = 16; /* sync info */
608     if (s->eac3) {
609         /* bitstream info header */
610         frame_bits += 35;
611         frame_bits += 1 + 1 + 1;
612         /* audio frame header */
613         frame_bits += 2;
614         frame_bits += 10;
615         /* exponent strategy */
616         for (blk = 0; blk < AC3_MAX_BLOCKS; blk++)
617             frame_bits += 2 * s->fbw_channels + s->lfe_on;
618         /* converter exponent strategy */
619         frame_bits += s->fbw_channels * 5;
620         /* snr offsets */
621         frame_bits += 10;
622         /* block start info */
623         frame_bits++;
624     } else {
625         frame_bits += 49;
626         frame_bits += frame_bits_inc[s->channel_mode];
627     }
628
629     /* audio blocks */
630     for (blk = 0; blk < AC3_MAX_BLOCKS; blk++) {
631         if (!s->eac3) {
632             /* block switch flags */
633             frame_bits += s->fbw_channels;
634
635             /* dither flags */
636             frame_bits += s->fbw_channels;
637         }
638
639         /* dynamic range */
640         frame_bits++;
641
642         /* spectral extension */
643         if (s->eac3)
644             frame_bits++;
645
646         if (!s->eac3) {
647             /* exponent strategy */
648             frame_bits += 2 * s->fbw_channels;
649             if (s->lfe_on)
650                 frame_bits++;
651
652             /* bit allocation params */
653             frame_bits++;
654             if (!blk)
655                 frame_bits += 2 + 2 + 2 + 2 + 3;
656         }
657
658         /* converter snr offset */
659         if (s->eac3)
660             frame_bits++;
661
662         if (!s->eac3) {
663             /* delta bit allocation */
664             frame_bits++;
665
666             /* skipped data */
667             frame_bits++;
668         }
669     }
670
671     /* auxiliary data */
672     frame_bits++;
673
674     /* CRC */
675     frame_bits += 1 + 16;
676
677     s->frame_bits_fixed = frame_bits;
678 }
679
680
681 /**
682  * Initialize bit allocation.
683  * Set default parameter codes and calculate parameter values.
684  */
685 static void bit_alloc_init(AC3EncodeContext *s)
686 {
687     int ch;
688
689     /* init default parameters */
690     s->slow_decay_code = 2;
691     s->fast_decay_code = 1;
692     s->slow_gain_code  = 1;
693     s->db_per_bit_code = s->eac3 ? 2 : 3;
694     s->floor_code      = 7;
695     for (ch = 0; ch <= s->channels; ch++)
696         s->fast_gain_code[ch] = 4;
697
698     /* initial snr offset */
699     s->coarse_snr_offset = 40;
700
701     /* compute real values */
702     /* currently none of these values change during encoding, so we can just
703        set them once at initialization */
704     s->bit_alloc.slow_decay = ff_ac3_slow_decay_tab[s->slow_decay_code] >> s->bit_alloc.sr_shift;
705     s->bit_alloc.fast_decay = ff_ac3_fast_decay_tab[s->fast_decay_code] >> s->bit_alloc.sr_shift;
706     s->bit_alloc.slow_gain  = ff_ac3_slow_gain_tab[s->slow_gain_code];
707     s->bit_alloc.db_per_bit = ff_ac3_db_per_bit_tab[s->db_per_bit_code];
708     s->bit_alloc.floor      = ff_ac3_floor_tab[s->floor_code];
709     s->bit_alloc.cpl_fast_leak = 0;
710     s->bit_alloc.cpl_slow_leak = 0;
711
712     count_frame_bits_fixed(s);
713 }
714
715
716 /**
717  * Count the bits used to encode the frame, minus exponents and mantissas.
718  * Bits based on fixed parameters have already been counted, so now we just
719  * have to add the bits based on parameters that change during encoding.
720  */
721 static void count_frame_bits(AC3EncodeContext *s)
722 {
723     AC3EncOptions *opt = &s->options;
724     int blk, ch;
725     int frame_bits = 0;
726
727     /* header */
728     if (s->eac3) {
729         /* coupling */
730         if (s->channel_mode > AC3_CHMODE_MONO) {
731             frame_bits++;
732             for (blk = 1; blk < AC3_MAX_BLOCKS; blk++) {
733                 AC3Block *block = &s->blocks[blk];
734                 frame_bits++;
735                 if (block->new_cpl_strategy)
736                     frame_bits++;
737             }
738         }
739         /* coupling exponent strategy */
740         for (blk = 0; blk < AC3_MAX_BLOCKS; blk++)
741             frame_bits += 2 * s->blocks[blk].cpl_in_use;
742     } else {
743         if (opt->audio_production_info)
744             frame_bits += 7;
745         if (s->bitstream_id == 6) {
746             if (opt->extended_bsi_1)
747                 frame_bits += 14;
748             if (opt->extended_bsi_2)
749                 frame_bits += 14;
750         }
751     }
752
753     /* audio blocks */
754     for (blk = 0; blk < AC3_MAX_BLOCKS; blk++) {
755         AC3Block *block = &s->blocks[blk];
756
757         /* coupling strategy */
758         if (!s->eac3)
759             frame_bits++;
760         if (block->new_cpl_strategy) {
761             if (!s->eac3)
762                 frame_bits++;
763             if (block->cpl_in_use) {
764                 if (s->eac3)
765                     frame_bits++;
766                 if (!s->eac3 || s->channel_mode != AC3_CHMODE_STEREO)
767                     frame_bits += s->fbw_channels;
768                 if (s->channel_mode == AC3_CHMODE_STEREO)
769                     frame_bits++;
770                 frame_bits += 4 + 4;
771                 if (s->eac3)
772                     frame_bits++;
773                 else
774                     frame_bits += s->num_cpl_subbands - 1;
775             }
776         }
777
778         /* coupling coordinates */
779         if (block->cpl_in_use) {
780             for (ch = 1; ch <= s->fbw_channels; ch++) {
781                 if (block->channel_in_cpl[ch]) {
782                     if (!s->eac3 || block->new_cpl_coords != 2)
783                         frame_bits++;
784                     if (block->new_cpl_coords) {
785                         frame_bits += 2;
786                         frame_bits += (4 + 4) * s->num_cpl_bands;
787                     }
788                 }
789             }
790         }
791
792         /* stereo rematrixing */
793         if (s->channel_mode == AC3_CHMODE_STEREO) {
794             if (!s->eac3 || blk > 0)
795                 frame_bits++;
796             if (s->blocks[blk].new_rematrixing_strategy)
797                 frame_bits += block->num_rematrixing_bands;
798         }
799
800         /* bandwidth codes & gain range */
801         for (ch = 1; ch <= s->fbw_channels; ch++) {
802             if (s->exp_strategy[ch][blk] != EXP_REUSE) {
803                 if (!block->channel_in_cpl[ch])
804                     frame_bits += 6;
805                 frame_bits += 2;
806             }
807         }
808
809         /* coupling exponent strategy */
810         if (!s->eac3 && block->cpl_in_use)
811             frame_bits += 2;
812
813         /* snr offsets and fast gain codes */
814         if (!s->eac3) {
815             frame_bits++;
816             if (block->new_snr_offsets)
817                 frame_bits += 6 + (s->channels + block->cpl_in_use) * (4 + 3);
818         }
819
820         /* coupling leak info */
821         if (block->cpl_in_use) {
822             if (!s->eac3 || block->new_cpl_leak != 2)
823                 frame_bits++;
824             if (block->new_cpl_leak)
825                 frame_bits += 3 + 3;
826         }
827     }
828
829     s->frame_bits = s->frame_bits_fixed + frame_bits;
830 }
831
832
833 /**
834  * Calculate masking curve based on the final exponents.
835  * Also calculate the power spectral densities to use in future calculations.
836  */
837 static void bit_alloc_masking(AC3EncodeContext *s)
838 {
839     int blk, ch;
840
841     for (blk = 0; blk < AC3_MAX_BLOCKS; blk++) {
842         AC3Block *block = &s->blocks[blk];
843         for (ch = !block->cpl_in_use; ch <= s->channels; ch++) {
844             /* We only need psd and mask for calculating bap.
845                Since we currently do not calculate bap when exponent
846                strategy is EXP_REUSE we do not need to calculate psd or mask. */
847             if (s->exp_strategy[ch][blk] != EXP_REUSE) {
848                 ff_ac3_bit_alloc_calc_psd(block->exp[ch], s->start_freq[ch],
849                                           block->end_freq[ch], block->psd[ch],
850                                           block->band_psd[ch]);
851                 ff_ac3_bit_alloc_calc_mask(&s->bit_alloc, block->band_psd[ch],
852                                            s->start_freq[ch], block->end_freq[ch],
853                                            ff_ac3_fast_gain_tab[s->fast_gain_code[ch]],
854                                            ch == s->lfe_channel,
855                                            DBA_NONE, 0, NULL, NULL, NULL,
856                                            block->mask[ch]);
857             }
858         }
859     }
860 }
861
862
863 /**
864  * Ensure that bap for each block and channel point to the current bap_buffer.
865  * They may have been switched during the bit allocation search.
866  */
867 static void reset_block_bap(AC3EncodeContext *s)
868 {
869     int blk, ch;
870     uint8_t *ref_bap;
871
872     if (s->ref_bap[0][0] == s->bap_buffer && s->ref_bap_set)
873         return;
874
875     ref_bap = s->bap_buffer;
876     for (ch = 0; ch <= s->channels; ch++) {
877         for (blk = 0; blk < AC3_MAX_BLOCKS; blk++)
878             s->ref_bap[ch][blk] = ref_bap + AC3_MAX_COEFS * s->exp_ref_block[ch][blk];
879         ref_bap += AC3_MAX_COEFS * AC3_MAX_BLOCKS;
880     }
881     s->ref_bap_set = 1;
882 }
883
884
885 /**
886  * Initialize mantissa counts.
887  * These are set so that they are padded to the next whole group size when bits
888  * are counted in compute_mantissa_size.
889  */
890 static void count_mantissa_bits_init(uint16_t mant_cnt[AC3_MAX_BLOCKS][16])
891 {
892     int blk;
893
894     for (blk = 0; blk < AC3_MAX_BLOCKS; blk++) {
895         memset(mant_cnt[blk], 0, sizeof(mant_cnt[blk]));
896         mant_cnt[blk][1] = mant_cnt[blk][2] = 2;
897         mant_cnt[blk][4] = 1;
898     }
899 }
900
901
902 /**
903  * Update mantissa bit counts for all blocks in 1 channel in a given bandwidth
904  * range.
905  */
906 static void count_mantissa_bits_update_ch(AC3EncodeContext *s, int ch,
907                                           uint16_t mant_cnt[AC3_MAX_BLOCKS][16],
908                                           int start, int end)
909 {
910     int blk;
911
912     for (blk = 0; blk < AC3_MAX_BLOCKS; blk++) {
913         AC3Block *block = &s->blocks[blk];
914         if (ch == CPL_CH && !block->cpl_in_use)
915             continue;
916         s->ac3dsp.update_bap_counts(mant_cnt[blk],
917                                     s->ref_bap[ch][blk] + start,
918                                     FFMIN(end, block->end_freq[ch]) - start);
919     }
920 }
921
922
923 /**
924  * Count the number of mantissa bits in the frame based on the bap values.
925  */
926 static int count_mantissa_bits(AC3EncodeContext *s)
927 {
928     int ch, max_end_freq;
929     LOCAL_ALIGNED_16(uint16_t, mant_cnt, [AC3_MAX_BLOCKS], [16]);
930
931     count_mantissa_bits_init(mant_cnt);
932
933     max_end_freq = s->bandwidth_code * 3 + 73;
934     for (ch = !s->cpl_enabled; ch <= s->channels; ch++)
935         count_mantissa_bits_update_ch(s, ch, mant_cnt, s->start_freq[ch],
936                                       max_end_freq);
937
938     return s->ac3dsp.compute_mantissa_size(mant_cnt);
939 }
940
941
942 /**
943  * Run the bit allocation with a given SNR offset.
944  * This calculates the bit allocation pointers that will be used to determine
945  * the quantization of each mantissa.
946  * @return the number of bits needed for mantissas if the given SNR offset is
947  *         is used.
948  */
949 static int bit_alloc(AC3EncodeContext *s, int snr_offset)
950 {
951     int blk, ch;
952
953     snr_offset = (snr_offset - 240) << 2;
954
955     reset_block_bap(s);
956     for (blk = 0; blk < AC3_MAX_BLOCKS; blk++) {
957         AC3Block *block = &s->blocks[blk];
958
959         for (ch = !block->cpl_in_use; ch <= s->channels; ch++) {
960             /* Currently the only bit allocation parameters which vary across
961                blocks within a frame are the exponent values.  We can take
962                advantage of that by reusing the bit allocation pointers
963                whenever we reuse exponents. */
964             if (s->exp_strategy[ch][blk] != EXP_REUSE) {
965                 s->ac3dsp.bit_alloc_calc_bap(block->mask[ch], block->psd[ch],
966                                              s->start_freq[ch], block->end_freq[ch],
967                                              snr_offset, s->bit_alloc.floor,
968                                              ff_ac3_bap_tab, s->ref_bap[ch][blk]);
969             }
970         }
971     }
972     return count_mantissa_bits(s);
973 }
974
975
976 /**
977  * Constant bitrate bit allocation search.
978  * Find the largest SNR offset that will allow data to fit in the frame.
979  */
980 static int cbr_bit_allocation(AC3EncodeContext *s)
981 {
982     int ch;
983     int bits_left;
984     int snr_offset, snr_incr;
985
986     bits_left = 8 * s->frame_size - (s->frame_bits + s->exponent_bits);
987     if (bits_left < 0)
988         return AVERROR(EINVAL);
989
990     snr_offset = s->coarse_snr_offset << 4;
991
992     /* if previous frame SNR offset was 1023, check if current frame can also
993        use SNR offset of 1023. if so, skip the search. */
994     if ((snr_offset | s->fine_snr_offset[1]) == 1023) {
995         if (bit_alloc(s, 1023) <= bits_left)
996             return 0;
997     }
998
999     while (snr_offset >= 0 &&
1000            bit_alloc(s, snr_offset) > bits_left) {
1001         snr_offset -= 64;
1002     }
1003     if (snr_offset < 0)
1004         return AVERROR(EINVAL);
1005
1006     FFSWAP(uint8_t *, s->bap_buffer, s->bap1_buffer);
1007     for (snr_incr = 64; snr_incr > 0; snr_incr >>= 2) {
1008         while (snr_offset + snr_incr <= 1023 &&
1009                bit_alloc(s, snr_offset + snr_incr) <= bits_left) {
1010             snr_offset += snr_incr;
1011             FFSWAP(uint8_t *, s->bap_buffer, s->bap1_buffer);
1012         }
1013     }
1014     FFSWAP(uint8_t *, s->bap_buffer, s->bap1_buffer);
1015     reset_block_bap(s);
1016
1017     s->coarse_snr_offset = snr_offset >> 4;
1018     for (ch = !s->cpl_on; ch <= s->channels; ch++)
1019         s->fine_snr_offset[ch] = snr_offset & 0xF;
1020
1021     return 0;
1022 }
1023
1024
1025 /**
1026  * Perform bit allocation search.
1027  * Finds the SNR offset value that maximizes quality and fits in the specified
1028  * frame size.  Output is the SNR offset and a set of bit allocation pointers
1029  * used to quantize the mantissas.
1030  */
1031 int ff_ac3_compute_bit_allocation(AC3EncodeContext *s)
1032 {
1033     count_frame_bits(s);
1034
1035     bit_alloc_masking(s);
1036
1037     return cbr_bit_allocation(s);
1038 }
1039
1040
1041 /**
1042  * Symmetric quantization on 'levels' levels.
1043  */
1044 static inline int sym_quant(int c, int e, int levels)
1045 {
1046     int v = (((levels * c) >> (24 - e)) + levels) >> 1;
1047     av_assert2(v >= 0 && v < levels);
1048     return v;
1049 }
1050
1051
1052 /**
1053  * Asymmetric quantization on 2^qbits levels.
1054  */
1055 static inline int asym_quant(int c, int e, int qbits)
1056 {
1057     int m;
1058
1059     c = (((c << e) >> (24 - qbits)) + 1) >> 1;
1060     m = (1 << (qbits-1));
1061     if (c >= m)
1062         c = m - 1;
1063     av_assert2(c >= -m);
1064     return c;
1065 }
1066
1067
1068 /**
1069  * Quantize a set of mantissas for a single channel in a single block.
1070  */
1071 static void quantize_mantissas_blk_ch(AC3Mant *s, int32_t *fixed_coef,
1072                                       uint8_t *exp, uint8_t *bap,
1073                                       int16_t *qmant, int start_freq,
1074                                       int end_freq)
1075 {
1076     int i;
1077
1078     for (i = start_freq; i < end_freq; i++) {
1079         int v;
1080         int c = fixed_coef[i];
1081         int e = exp[i];
1082         int b = bap[i];
1083         switch (b) {
1084         case 0:
1085             v = 0;
1086             break;
1087         case 1:
1088             v = sym_quant(c, e, 3);
1089             switch (s->mant1_cnt) {
1090             case 0:
1091                 s->qmant1_ptr = &qmant[i];
1092                 v = 9 * v;
1093                 s->mant1_cnt = 1;
1094                 break;
1095             case 1:
1096                 *s->qmant1_ptr += 3 * v;
1097                 s->mant1_cnt = 2;
1098                 v = 128;
1099                 break;
1100             default:
1101                 *s->qmant1_ptr += v;
1102                 s->mant1_cnt = 0;
1103                 v = 128;
1104                 break;
1105             }
1106             break;
1107         case 2:
1108             v = sym_quant(c, e, 5);
1109             switch (s->mant2_cnt) {
1110             case 0:
1111                 s->qmant2_ptr = &qmant[i];
1112                 v = 25 * v;
1113                 s->mant2_cnt = 1;
1114                 break;
1115             case 1:
1116                 *s->qmant2_ptr += 5 * v;
1117                 s->mant2_cnt = 2;
1118                 v = 128;
1119                 break;
1120             default:
1121                 *s->qmant2_ptr += v;
1122                 s->mant2_cnt = 0;
1123                 v = 128;
1124                 break;
1125             }
1126             break;
1127         case 3:
1128             v = sym_quant(c, e, 7);
1129             break;
1130         case 4:
1131             v = sym_quant(c, e, 11);
1132             switch (s->mant4_cnt) {
1133             case 0:
1134                 s->qmant4_ptr = &qmant[i];
1135                 v = 11 * v;
1136                 s->mant4_cnt = 1;
1137                 break;
1138             default:
1139                 *s->qmant4_ptr += v;
1140                 s->mant4_cnt = 0;
1141                 v = 128;
1142                 break;
1143             }
1144             break;
1145         case 5:
1146             v = sym_quant(c, e, 15);
1147             break;
1148         case 14:
1149             v = asym_quant(c, e, 14);
1150             break;
1151         case 15:
1152             v = asym_quant(c, e, 16);
1153             break;
1154         default:
1155             v = asym_quant(c, e, b - 1);
1156             break;
1157         }
1158         qmant[i] = v;
1159     }
1160 }
1161
1162
1163 /**
1164  * Quantize mantissas using coefficients, exponents, and bit allocation pointers.
1165  */
1166 void ff_ac3_quantize_mantissas(AC3EncodeContext *s)
1167 {
1168     int blk, ch, ch0=0, got_cpl;
1169
1170     for (blk = 0; blk < AC3_MAX_BLOCKS; blk++) {
1171         AC3Block *block = &s->blocks[blk];
1172         AC3Mant m = { 0 };
1173
1174         got_cpl = !block->cpl_in_use;
1175         for (ch = 1; ch <= s->channels; ch++) {
1176             if (!got_cpl && ch > 1 && block->channel_in_cpl[ch-1]) {
1177                 ch0     = ch - 1;
1178                 ch      = CPL_CH;
1179                 got_cpl = 1;
1180             }
1181             quantize_mantissas_blk_ch(&m, block->fixed_coef[ch],
1182                                       s->blocks[s->exp_ref_block[ch][blk]].exp[ch],
1183                                       s->ref_bap[ch][blk], block->qmant[ch],
1184                                       s->start_freq[ch], block->end_freq[ch]);
1185             if (ch == CPL_CH)
1186                 ch = ch0;
1187         }
1188     }
1189 }
1190
1191
1192 /**
1193  * Write the AC-3 frame header to the output bitstream.
1194  */
1195 static void ac3_output_frame_header(AC3EncodeContext *s)
1196 {
1197     AC3EncOptions *opt = &s->options;
1198
1199     put_bits(&s->pb, 16, 0x0b77);   /* frame header */
1200     put_bits(&s->pb, 16, 0);        /* crc1: will be filled later */
1201     put_bits(&s->pb, 2,  s->bit_alloc.sr_code);
1202     put_bits(&s->pb, 6,  s->frame_size_code + (s->frame_size - s->frame_size_min) / 2);
1203     put_bits(&s->pb, 5,  s->bitstream_id);
1204     put_bits(&s->pb, 3,  s->bitstream_mode);
1205     put_bits(&s->pb, 3,  s->channel_mode);
1206     if ((s->channel_mode & 0x01) && s->channel_mode != AC3_CHMODE_MONO)
1207         put_bits(&s->pb, 2, s->center_mix_level);
1208     if (s->channel_mode & 0x04)
1209         put_bits(&s->pb, 2, s->surround_mix_level);
1210     if (s->channel_mode == AC3_CHMODE_STEREO)
1211         put_bits(&s->pb, 2, opt->dolby_surround_mode);
1212     put_bits(&s->pb, 1, s->lfe_on); /* LFE */
1213     put_bits(&s->pb, 5, -opt->dialogue_level);
1214     put_bits(&s->pb, 1, 0);         /* no compression control word */
1215     put_bits(&s->pb, 1, 0);         /* no lang code */
1216     put_bits(&s->pb, 1, opt->audio_production_info);
1217     if (opt->audio_production_info) {
1218         put_bits(&s->pb, 5, opt->mixing_level - 80);
1219         put_bits(&s->pb, 2, opt->room_type);
1220     }
1221     put_bits(&s->pb, 1, opt->copyright);
1222     put_bits(&s->pb, 1, opt->original);
1223     if (s->bitstream_id == 6) {
1224         /* alternate bit stream syntax */
1225         put_bits(&s->pb, 1, opt->extended_bsi_1);
1226         if (opt->extended_bsi_1) {
1227             put_bits(&s->pb, 2, opt->preferred_stereo_downmix);
1228             put_bits(&s->pb, 3, s->ltrt_center_mix_level);
1229             put_bits(&s->pb, 3, s->ltrt_surround_mix_level);
1230             put_bits(&s->pb, 3, s->loro_center_mix_level);
1231             put_bits(&s->pb, 3, s->loro_surround_mix_level);
1232         }
1233         put_bits(&s->pb, 1, opt->extended_bsi_2);
1234         if (opt->extended_bsi_2) {
1235             put_bits(&s->pb, 2, opt->dolby_surround_ex_mode);
1236             put_bits(&s->pb, 2, opt->dolby_headphone_mode);
1237             put_bits(&s->pb, 1, opt->ad_converter_type);
1238             put_bits(&s->pb, 9, 0);     /* xbsi2 and encinfo : reserved */
1239         }
1240     } else {
1241     put_bits(&s->pb, 1, 0);         /* no time code 1 */
1242     put_bits(&s->pb, 1, 0);         /* no time code 2 */
1243     }
1244     put_bits(&s->pb, 1, 0);         /* no additional bit stream info */
1245 }
1246
1247
1248 /**
1249  * Write one audio block to the output bitstream.
1250  */
1251 static void output_audio_block(AC3EncodeContext *s, int blk)
1252 {
1253     int ch, i, baie, bnd, got_cpl;
1254     int av_uninit(ch0);
1255     AC3Block *block = &s->blocks[blk];
1256
1257     /* block switching */
1258     if (!s->eac3) {
1259         for (ch = 0; ch < s->fbw_channels; ch++)
1260             put_bits(&s->pb, 1, 0);
1261     }
1262
1263     /* dither flags */
1264     if (!s->eac3) {
1265         for (ch = 0; ch < s->fbw_channels; ch++)
1266             put_bits(&s->pb, 1, 1);
1267     }
1268
1269     /* dynamic range codes */
1270     put_bits(&s->pb, 1, 0);
1271
1272     /* spectral extension */
1273     if (s->eac3)
1274         put_bits(&s->pb, 1, 0);
1275
1276     /* channel coupling */
1277     if (!s->eac3)
1278         put_bits(&s->pb, 1, block->new_cpl_strategy);
1279     if (block->new_cpl_strategy) {
1280         if (!s->eac3)
1281             put_bits(&s->pb, 1, block->cpl_in_use);
1282         if (block->cpl_in_use) {
1283             int start_sub, end_sub;
1284             if (s->eac3)
1285                 put_bits(&s->pb, 1, 0); /* enhanced coupling */
1286             if (!s->eac3 || s->channel_mode != AC3_CHMODE_STEREO) {
1287                 for (ch = 1; ch <= s->fbw_channels; ch++)
1288                     put_bits(&s->pb, 1, block->channel_in_cpl[ch]);
1289             }
1290             if (s->channel_mode == AC3_CHMODE_STEREO)
1291                 put_bits(&s->pb, 1, 0); /* phase flags in use */
1292             start_sub = (s->start_freq[CPL_CH] - 37) / 12;
1293             end_sub   = (s->cpl_end_freq       - 37) / 12;
1294             put_bits(&s->pb, 4, start_sub);
1295             put_bits(&s->pb, 4, end_sub - 3);
1296             /* coupling band structure */
1297             if (s->eac3) {
1298                 put_bits(&s->pb, 1, 0); /* use default */
1299             } else {
1300                 for (bnd = start_sub+1; bnd < end_sub; bnd++)
1301                     put_bits(&s->pb, 1, ff_eac3_default_cpl_band_struct[bnd]);
1302             }
1303         }
1304     }
1305
1306     /* coupling coordinates */
1307     if (block->cpl_in_use) {
1308         for (ch = 1; ch <= s->fbw_channels; ch++) {
1309             if (block->channel_in_cpl[ch]) {
1310                 if (!s->eac3 || block->new_cpl_coords != 2)
1311                     put_bits(&s->pb, 1, block->new_cpl_coords);
1312                 if (block->new_cpl_coords) {
1313                     put_bits(&s->pb, 2, block->cpl_master_exp[ch]);
1314                     for (bnd = 0; bnd < s->num_cpl_bands; bnd++) {
1315                         put_bits(&s->pb, 4, block->cpl_coord_exp [ch][bnd]);
1316                         put_bits(&s->pb, 4, block->cpl_coord_mant[ch][bnd]);
1317                     }
1318                 }
1319             }
1320         }
1321     }
1322
1323     /* stereo rematrixing */
1324     if (s->channel_mode == AC3_CHMODE_STEREO) {
1325         if (!s->eac3 || blk > 0)
1326             put_bits(&s->pb, 1, block->new_rematrixing_strategy);
1327         if (block->new_rematrixing_strategy) {
1328             /* rematrixing flags */
1329             for (bnd = 0; bnd < block->num_rematrixing_bands; bnd++)
1330                 put_bits(&s->pb, 1, block->rematrixing_flags[bnd]);
1331         }
1332     }
1333
1334     /* exponent strategy */
1335     if (!s->eac3) {
1336         for (ch = !block->cpl_in_use; ch <= s->fbw_channels; ch++)
1337             put_bits(&s->pb, 2, s->exp_strategy[ch][blk]);
1338         if (s->lfe_on)
1339             put_bits(&s->pb, 1, s->exp_strategy[s->lfe_channel][blk]);
1340     }
1341
1342     /* bandwidth */
1343     for (ch = 1; ch <= s->fbw_channels; ch++) {
1344         if (s->exp_strategy[ch][blk] != EXP_REUSE && !block->channel_in_cpl[ch])
1345             put_bits(&s->pb, 6, s->bandwidth_code);
1346     }
1347
1348     /* exponents */
1349     for (ch = !block->cpl_in_use; ch <= s->channels; ch++) {
1350         int nb_groups;
1351         int cpl = (ch == CPL_CH);
1352
1353         if (s->exp_strategy[ch][blk] == EXP_REUSE)
1354             continue;
1355
1356         /* DC exponent */
1357         put_bits(&s->pb, 4, block->grouped_exp[ch][0] >> cpl);
1358
1359         /* exponent groups */
1360         nb_groups = exponent_group_tab[cpl][s->exp_strategy[ch][blk]-1][block->end_freq[ch]-s->start_freq[ch]];
1361         for (i = 1; i <= nb_groups; i++)
1362             put_bits(&s->pb, 7, block->grouped_exp[ch][i]);
1363
1364         /* gain range info */
1365         if (ch != s->lfe_channel && !cpl)
1366             put_bits(&s->pb, 2, 0);
1367     }
1368
1369     /* bit allocation info */
1370     if (!s->eac3) {
1371         baie = (blk == 0);
1372         put_bits(&s->pb, 1, baie);
1373         if (baie) {
1374             put_bits(&s->pb, 2, s->slow_decay_code);
1375             put_bits(&s->pb, 2, s->fast_decay_code);
1376             put_bits(&s->pb, 2, s->slow_gain_code);
1377             put_bits(&s->pb, 2, s->db_per_bit_code);
1378             put_bits(&s->pb, 3, s->floor_code);
1379         }
1380     }
1381
1382     /* snr offset */
1383     if (!s->eac3) {
1384         put_bits(&s->pb, 1, block->new_snr_offsets);
1385         if (block->new_snr_offsets) {
1386             put_bits(&s->pb, 6, s->coarse_snr_offset);
1387             for (ch = !block->cpl_in_use; ch <= s->channels; ch++) {
1388                 put_bits(&s->pb, 4, s->fine_snr_offset[ch]);
1389                 put_bits(&s->pb, 3, s->fast_gain_code[ch]);
1390             }
1391         }
1392     } else {
1393         put_bits(&s->pb, 1, 0); /* no converter snr offset */
1394     }
1395
1396     /* coupling leak */
1397     if (block->cpl_in_use) {
1398         if (!s->eac3 || block->new_cpl_leak != 2)
1399             put_bits(&s->pb, 1, block->new_cpl_leak);
1400         if (block->new_cpl_leak) {
1401             put_bits(&s->pb, 3, s->bit_alloc.cpl_fast_leak);
1402             put_bits(&s->pb, 3, s->bit_alloc.cpl_slow_leak);
1403         }
1404     }
1405
1406     if (!s->eac3) {
1407         put_bits(&s->pb, 1, 0); /* no delta bit allocation */
1408         put_bits(&s->pb, 1, 0); /* no data to skip */
1409     }
1410
1411     /* mantissas */
1412     got_cpl = !block->cpl_in_use;
1413     for (ch = 1; ch <= s->channels; ch++) {
1414         int b, q;
1415
1416         if (!got_cpl && ch > 1 && block->channel_in_cpl[ch-1]) {
1417             ch0     = ch - 1;
1418             ch      = CPL_CH;
1419             got_cpl = 1;
1420         }
1421         for (i = s->start_freq[ch]; i < block->end_freq[ch]; i++) {
1422             q = block->qmant[ch][i];
1423             b = s->ref_bap[ch][blk][i];
1424             switch (b) {
1425             case 0:                                          break;
1426             case 1: if (q != 128) put_bits (&s->pb,   5, q); break;
1427             case 2: if (q != 128) put_bits (&s->pb,   7, q); break;
1428             case 3:               put_sbits(&s->pb,   3, q); break;
1429             case 4: if (q != 128) put_bits (&s->pb,   7, q); break;
1430             case 14:              put_sbits(&s->pb,  14, q); break;
1431             case 15:              put_sbits(&s->pb,  16, q); break;
1432             default:              put_sbits(&s->pb, b-1, q); break;
1433             }
1434         }
1435         if (ch == CPL_CH)
1436             ch = ch0;
1437     }
1438 }
1439
1440
1441 /** CRC-16 Polynomial */
1442 #define CRC16_POLY ((1 << 0) | (1 << 2) | (1 << 15) | (1 << 16))
1443
1444
1445 static unsigned int mul_poly(unsigned int a, unsigned int b, unsigned int poly)
1446 {
1447     unsigned int c;
1448
1449     c = 0;
1450     while (a) {
1451         if (a & 1)
1452             c ^= b;
1453         a = a >> 1;
1454         b = b << 1;
1455         if (b & (1 << 16))
1456             b ^= poly;
1457     }
1458     return c;
1459 }
1460
1461
1462 static unsigned int pow_poly(unsigned int a, unsigned int n, unsigned int poly)
1463 {
1464     unsigned int r;
1465     r = 1;
1466     while (n) {
1467         if (n & 1)
1468             r = mul_poly(r, a, poly);
1469         a = mul_poly(a, a, poly);
1470         n >>= 1;
1471     }
1472     return r;
1473 }
1474
1475
1476 /**
1477  * Fill the end of the frame with 0's and compute the two CRCs.
1478  */
1479 static void output_frame_end(AC3EncodeContext *s)
1480 {
1481     const AVCRC *crc_ctx = av_crc_get_table(AV_CRC_16_ANSI);
1482     int frame_size_58, pad_bytes, crc1, crc2_partial, crc2, crc_inv;
1483     uint8_t *frame;
1484
1485     frame_size_58 = ((s->frame_size >> 2) + (s->frame_size >> 4)) << 1;
1486
1487     /* pad the remainder of the frame with zeros */
1488     av_assert2(s->frame_size * 8 - put_bits_count(&s->pb) >= 18);
1489     flush_put_bits(&s->pb);
1490     frame = s->pb.buf;
1491     pad_bytes = s->frame_size - (put_bits_ptr(&s->pb) - frame) - 2;
1492     av_assert2(pad_bytes >= 0);
1493     if (pad_bytes > 0)
1494         memset(put_bits_ptr(&s->pb), 0, pad_bytes);
1495
1496     if (s->eac3) {
1497         /* compute crc2 */
1498         crc2_partial = av_crc(crc_ctx, 0, frame + 2, s->frame_size - 5);
1499     } else {
1500     /* compute crc1 */
1501     /* this is not so easy because it is at the beginning of the data... */
1502     crc1    = av_bswap16(av_crc(crc_ctx, 0, frame + 4, frame_size_58 - 4));
1503     crc_inv = s->crc_inv[s->frame_size > s->frame_size_min];
1504     crc1    = mul_poly(crc_inv, crc1, CRC16_POLY);
1505     AV_WB16(frame + 2, crc1);
1506
1507     /* compute crc2 */
1508     crc2_partial = av_crc(crc_ctx, 0, frame + frame_size_58,
1509                           s->frame_size - frame_size_58 - 3);
1510     }
1511     crc2 = av_crc(crc_ctx, crc2_partial, frame + s->frame_size - 3, 1);
1512     /* ensure crc2 does not match sync word by flipping crcrsv bit if needed */
1513     if (crc2 == 0x770B) {
1514         frame[s->frame_size - 3] ^= 0x1;
1515         crc2 = av_crc(crc_ctx, crc2_partial, frame + s->frame_size - 3, 1);
1516     }
1517     crc2 = av_bswap16(crc2);
1518     AV_WB16(frame + s->frame_size - 2, crc2);
1519 }
1520
1521
1522 /**
1523  * Write the frame to the output bitstream.
1524  */
1525 void ff_ac3_output_frame(AC3EncodeContext *s, unsigned char *frame)
1526 {
1527     int blk;
1528
1529     init_put_bits(&s->pb, frame, AC3_MAX_CODED_FRAME_SIZE);
1530
1531     s->output_frame_header(s);
1532
1533     for (blk = 0; blk < AC3_MAX_BLOCKS; blk++)
1534         output_audio_block(s, blk);
1535
1536     output_frame_end(s);
1537 }
1538
1539
1540 static void dprint_options(AVCodecContext *avctx)
1541 {
1542 #ifdef DEBUG
1543     AC3EncodeContext *s = avctx->priv_data;
1544     AC3EncOptions *opt = &s->options;
1545     char strbuf[32];
1546
1547     switch (s->bitstream_id) {
1548     case  6:  av_strlcpy(strbuf, "AC-3 (alt syntax)",       32); break;
1549     case  8:  av_strlcpy(strbuf, "AC-3 (standard)",         32); break;
1550     case  9:  av_strlcpy(strbuf, "AC-3 (dnet half-rate)",   32); break;
1551     case 10:  av_strlcpy(strbuf, "AC-3 (dnet quater-rate)", 32); break;
1552     case 16:  av_strlcpy(strbuf, "E-AC-3 (enhanced)",       32); break;
1553     default: snprintf(strbuf, 32, "ERROR");
1554     }
1555     av_dlog(avctx, "bitstream_id: %s (%d)\n", strbuf, s->bitstream_id);
1556     av_dlog(avctx, "sample_fmt: %s\n", av_get_sample_fmt_name(avctx->sample_fmt));
1557     av_get_channel_layout_string(strbuf, 32, s->channels, avctx->channel_layout);
1558     av_dlog(avctx, "channel_layout: %s\n", strbuf);
1559     av_dlog(avctx, "sample_rate: %d\n", s->sample_rate);
1560     av_dlog(avctx, "bit_rate: %d\n", s->bit_rate);
1561     if (s->cutoff)
1562         av_dlog(avctx, "cutoff: %d\n", s->cutoff);
1563
1564     av_dlog(avctx, "per_frame_metadata: %s\n",
1565             opt->allow_per_frame_metadata?"on":"off");
1566     if (s->has_center)
1567         av_dlog(avctx, "center_mixlev: %0.3f (%d)\n", opt->center_mix_level,
1568                 s->center_mix_level);
1569     else
1570         av_dlog(avctx, "center_mixlev: {not written}\n");
1571     if (s->has_surround)
1572         av_dlog(avctx, "surround_mixlev: %0.3f (%d)\n", opt->surround_mix_level,
1573                 s->surround_mix_level);
1574     else
1575         av_dlog(avctx, "surround_mixlev: {not written}\n");
1576     if (opt->audio_production_info) {
1577         av_dlog(avctx, "mixing_level: %ddB\n", opt->mixing_level);
1578         switch (opt->room_type) {
1579         case 0:  av_strlcpy(strbuf, "notindicated", 32); break;
1580         case 1:  av_strlcpy(strbuf, "large", 32);        break;
1581         case 2:  av_strlcpy(strbuf, "small", 32);        break;
1582         default: snprintf(strbuf, 32, "ERROR (%d)", opt->room_type);
1583         }
1584         av_dlog(avctx, "room_type: %s\n", strbuf);
1585     } else {
1586         av_dlog(avctx, "mixing_level: {not written}\n");
1587         av_dlog(avctx, "room_type: {not written}\n");
1588     }
1589     av_dlog(avctx, "copyright: %s\n", opt->copyright?"on":"off");
1590     av_dlog(avctx, "dialnorm: %ddB\n", opt->dialogue_level);
1591     if (s->channel_mode == AC3_CHMODE_STEREO) {
1592         switch (opt->dolby_surround_mode) {
1593         case 0:  av_strlcpy(strbuf, "notindicated", 32); break;
1594         case 1:  av_strlcpy(strbuf, "on", 32);           break;
1595         case 2:  av_strlcpy(strbuf, "off", 32);          break;
1596         default: snprintf(strbuf, 32, "ERROR (%d)", opt->dolby_surround_mode);
1597         }
1598         av_dlog(avctx, "dsur_mode: %s\n", strbuf);
1599     } else {
1600         av_dlog(avctx, "dsur_mode: {not written}\n");
1601     }
1602     av_dlog(avctx, "original: %s\n", opt->original?"on":"off");
1603
1604     if (s->bitstream_id == 6) {
1605         if (opt->extended_bsi_1) {
1606             switch (opt->preferred_stereo_downmix) {
1607             case 0:  av_strlcpy(strbuf, "notindicated", 32); break;
1608             case 1:  av_strlcpy(strbuf, "ltrt", 32);         break;
1609             case 2:  av_strlcpy(strbuf, "loro", 32);         break;
1610             default: snprintf(strbuf, 32, "ERROR (%d)", opt->preferred_stereo_downmix);
1611             }
1612             av_dlog(avctx, "dmix_mode: %s\n", strbuf);
1613             av_dlog(avctx, "ltrt_cmixlev: %0.3f (%d)\n",
1614                     opt->ltrt_center_mix_level, s->ltrt_center_mix_level);
1615             av_dlog(avctx, "ltrt_surmixlev: %0.3f (%d)\n",
1616                     opt->ltrt_surround_mix_level, s->ltrt_surround_mix_level);
1617             av_dlog(avctx, "loro_cmixlev: %0.3f (%d)\n",
1618                     opt->loro_center_mix_level, s->loro_center_mix_level);
1619             av_dlog(avctx, "loro_surmixlev: %0.3f (%d)\n",
1620                     opt->loro_surround_mix_level, s->loro_surround_mix_level);
1621         } else {
1622             av_dlog(avctx, "extended bitstream info 1: {not written}\n");
1623         }
1624         if (opt->extended_bsi_2) {
1625             switch (opt->dolby_surround_ex_mode) {
1626             case 0:  av_strlcpy(strbuf, "notindicated", 32); break;
1627             case 1:  av_strlcpy(strbuf, "on", 32);           break;
1628             case 2:  av_strlcpy(strbuf, "off", 32);          break;
1629             default: snprintf(strbuf, 32, "ERROR (%d)", opt->dolby_surround_ex_mode);
1630             }
1631             av_dlog(avctx, "dsurex_mode: %s\n", strbuf);
1632             switch (opt->dolby_headphone_mode) {
1633             case 0:  av_strlcpy(strbuf, "notindicated", 32); break;
1634             case 1:  av_strlcpy(strbuf, "on", 32);           break;
1635             case 2:  av_strlcpy(strbuf, "off", 32);          break;
1636             default: snprintf(strbuf, 32, "ERROR (%d)", opt->dolby_headphone_mode);
1637             }
1638             av_dlog(avctx, "dheadphone_mode: %s\n", strbuf);
1639
1640             switch (opt->ad_converter_type) {
1641             case 0:  av_strlcpy(strbuf, "standard", 32); break;
1642             case 1:  av_strlcpy(strbuf, "hdcd", 32);     break;
1643             default: snprintf(strbuf, 32, "ERROR (%d)", opt->ad_converter_type);
1644             }
1645             av_dlog(avctx, "ad_conv_type: %s\n", strbuf);
1646         } else {
1647             av_dlog(avctx, "extended bitstream info 2: {not written}\n");
1648         }
1649     }
1650 #endif
1651 }
1652
1653
1654 #define FLT_OPTION_THRESHOLD 0.01
1655
1656 static int validate_float_option(float v, const float *v_list, int v_list_size)
1657 {
1658     int i;
1659
1660     for (i = 0; i < v_list_size; i++) {
1661         if (v < (v_list[i] + FLT_OPTION_THRESHOLD) &&
1662             v > (v_list[i] - FLT_OPTION_THRESHOLD))
1663             break;
1664     }
1665     if (i == v_list_size)
1666         return -1;
1667
1668     return i;
1669 }
1670
1671
1672 static void validate_mix_level(void *log_ctx, const char *opt_name,
1673                                float *opt_param, const float *list,
1674                                int list_size, int default_value, int min_value,
1675                                int *ctx_param)
1676 {
1677     int mixlev = validate_float_option(*opt_param, list, list_size);
1678     if (mixlev < min_value) {
1679         mixlev = default_value;
1680         if (*opt_param >= 0.0) {
1681             av_log(log_ctx, AV_LOG_WARNING, "requested %s is not valid. using "
1682                    "default value: %0.3f\n", opt_name, list[mixlev]);
1683         }
1684     }
1685     *opt_param = list[mixlev];
1686     *ctx_param = mixlev;
1687 }
1688
1689
1690 /**
1691  * Validate metadata options as set by AVOption system.
1692  * These values can optionally be changed per-frame.
1693  */
1694 int ff_ac3_validate_metadata(AVCodecContext *avctx)
1695 {
1696     AC3EncodeContext *s = avctx->priv_data;
1697     AC3EncOptions *opt = &s->options;
1698
1699     /* validate mixing levels */
1700     if (s->has_center) {
1701         validate_mix_level(avctx, "center_mix_level", &opt->center_mix_level,
1702                            cmixlev_options, CMIXLEV_NUM_OPTIONS, 1, 0,
1703                            &s->center_mix_level);
1704     }
1705     if (s->has_surround) {
1706         validate_mix_level(avctx, "surround_mix_level", &opt->surround_mix_level,
1707                            surmixlev_options, SURMIXLEV_NUM_OPTIONS, 1, 0,
1708                            &s->surround_mix_level);
1709     }
1710
1711     /* set audio production info flag */
1712     if (opt->mixing_level >= 0 || opt->room_type >= 0) {
1713         if (opt->mixing_level < 0) {
1714             av_log(avctx, AV_LOG_ERROR, "mixing_level must be set if "
1715                    "room_type is set\n");
1716             return AVERROR(EINVAL);
1717         }
1718         if (opt->mixing_level < 80) {
1719             av_log(avctx, AV_LOG_ERROR, "invalid mixing level. must be between "
1720                    "80dB and 111dB\n");
1721             return AVERROR(EINVAL);
1722         }
1723         /* default room type */
1724         if (opt->room_type < 0)
1725             opt->room_type = 0;
1726         opt->audio_production_info = 1;
1727     } else {
1728         opt->audio_production_info = 0;
1729     }
1730
1731     /* set extended bsi 1 flag */
1732     if ((s->has_center || s->has_surround) &&
1733         (opt->preferred_stereo_downmix >= 0 ||
1734          opt->ltrt_center_mix_level   >= 0 ||
1735          opt->ltrt_surround_mix_level >= 0 ||
1736          opt->loro_center_mix_level   >= 0 ||
1737          opt->loro_surround_mix_level >= 0)) {
1738         /* default preferred stereo downmix */
1739         if (opt->preferred_stereo_downmix < 0)
1740             opt->preferred_stereo_downmix = 0;
1741         /* validate Lt/Rt center mix level */
1742         validate_mix_level(avctx, "ltrt_center_mix_level",
1743                            &opt->ltrt_center_mix_level, extmixlev_options,
1744                            EXTMIXLEV_NUM_OPTIONS, 5, 0,
1745                            &s->ltrt_center_mix_level);
1746         /* validate Lt/Rt surround mix level */
1747         validate_mix_level(avctx, "ltrt_surround_mix_level",
1748                            &opt->ltrt_surround_mix_level, extmixlev_options,
1749                            EXTMIXLEV_NUM_OPTIONS, 6, 3,
1750                            &s->ltrt_surround_mix_level);
1751         /* validate Lo/Ro center mix level */
1752         validate_mix_level(avctx, "loro_center_mix_level",
1753                            &opt->loro_center_mix_level, extmixlev_options,
1754                            EXTMIXLEV_NUM_OPTIONS, 5, 0,
1755                            &s->loro_center_mix_level);
1756         /* validate Lo/Ro surround mix level */
1757         validate_mix_level(avctx, "loro_surround_mix_level",
1758                            &opt->loro_surround_mix_level, extmixlev_options,
1759                            EXTMIXLEV_NUM_OPTIONS, 6, 3,
1760                            &s->loro_surround_mix_level);
1761         opt->extended_bsi_1 = 1;
1762     } else {
1763         opt->extended_bsi_1 = 0;
1764     }
1765
1766     /* set extended bsi 2 flag */
1767     if (opt->dolby_surround_ex_mode >= 0 ||
1768         opt->dolby_headphone_mode   >= 0 ||
1769         opt->ad_converter_type      >= 0) {
1770         /* default dolby surround ex mode */
1771         if (opt->dolby_surround_ex_mode < 0)
1772             opt->dolby_surround_ex_mode = 0;
1773         /* default dolby headphone mode */
1774         if (opt->dolby_headphone_mode < 0)
1775             opt->dolby_headphone_mode = 0;
1776         /* default A/D converter type */
1777         if (opt->ad_converter_type < 0)
1778             opt->ad_converter_type = 0;
1779         opt->extended_bsi_2 = 1;
1780     } else {
1781         opt->extended_bsi_2 = 0;
1782     }
1783
1784     /* set bitstream id for alternate bitstream syntax */
1785     if (opt->extended_bsi_1 || opt->extended_bsi_2) {
1786         if (s->bitstream_id > 8 && s->bitstream_id < 11) {
1787             static int warn_once = 1;
1788             if (warn_once) {
1789                 av_log(avctx, AV_LOG_WARNING, "alternate bitstream syntax is "
1790                        "not compatible with reduced samplerates. writing of "
1791                        "extended bitstream information will be disabled.\n");
1792                 warn_once = 0;
1793             }
1794         } else {
1795             s->bitstream_id = 6;
1796         }
1797     }
1798
1799     return 0;
1800 }
1801
1802
1803 /**
1804  * Finalize encoding and free any memory allocated by the encoder.
1805  */
1806 av_cold int ff_ac3_encode_close(AVCodecContext *avctx)
1807 {
1808     int blk, ch;
1809     AC3EncodeContext *s = avctx->priv_data;
1810
1811     av_freep(&s->windowed_samples);
1812     for (ch = 0; ch < s->channels; ch++)
1813         av_freep(&s->planar_samples[ch]);
1814     av_freep(&s->planar_samples);
1815     av_freep(&s->bap_buffer);
1816     av_freep(&s->bap1_buffer);
1817     av_freep(&s->mdct_coef_buffer);
1818     av_freep(&s->fixed_coef_buffer);
1819     av_freep(&s->exp_buffer);
1820     av_freep(&s->grouped_exp_buffer);
1821     av_freep(&s->psd_buffer);
1822     av_freep(&s->band_psd_buffer);
1823     av_freep(&s->mask_buffer);
1824     av_freep(&s->qmant_buffer);
1825     for (blk = 0; blk < AC3_MAX_BLOCKS; blk++) {
1826         AC3Block *block = &s->blocks[blk];
1827         av_freep(&block->mdct_coef);
1828         av_freep(&block->fixed_coef);
1829         av_freep(&block->exp);
1830         av_freep(&block->grouped_exp);
1831         av_freep(&block->psd);
1832         av_freep(&block->band_psd);
1833         av_freep(&block->mask);
1834         av_freep(&block->qmant);
1835     }
1836
1837     s->mdct_end(s->mdct);
1838     av_freep(&s->mdct);
1839
1840     av_freep(&avctx->coded_frame);
1841     return 0;
1842 }
1843
1844
1845 /**
1846  * Set channel information during initialization.
1847  */
1848 static av_cold int set_channel_info(AC3EncodeContext *s, int channels,
1849                                     int64_t *channel_layout)
1850 {
1851     int ch_layout;
1852
1853     if (channels < 1 || channels > AC3_MAX_CHANNELS)
1854         return AVERROR(EINVAL);
1855     if ((uint64_t)*channel_layout > 0x7FF)
1856         return AVERROR(EINVAL);
1857     ch_layout = *channel_layout;
1858     if (!ch_layout)
1859         ch_layout = avcodec_guess_channel_layout(channels, CODEC_ID_AC3, NULL);
1860
1861     s->lfe_on       = !!(ch_layout & AV_CH_LOW_FREQUENCY);
1862     s->channels     = channels;
1863     s->fbw_channels = channels - s->lfe_on;
1864     s->lfe_channel  = s->lfe_on ? s->fbw_channels + 1 : -1;
1865     if (s->lfe_on)
1866         ch_layout -= AV_CH_LOW_FREQUENCY;
1867
1868     switch (ch_layout) {
1869     case AV_CH_LAYOUT_MONO:           s->channel_mode = AC3_CHMODE_MONO;   break;
1870     case AV_CH_LAYOUT_STEREO:         s->channel_mode = AC3_CHMODE_STEREO; break;
1871     case AV_CH_LAYOUT_SURROUND:       s->channel_mode = AC3_CHMODE_3F;     break;
1872     case AV_CH_LAYOUT_2_1:            s->channel_mode = AC3_CHMODE_2F1R;   break;
1873     case AV_CH_LAYOUT_4POINT0:        s->channel_mode = AC3_CHMODE_3F1R;   break;
1874     case AV_CH_LAYOUT_QUAD:
1875     case AV_CH_LAYOUT_2_2:            s->channel_mode = AC3_CHMODE_2F2R;   break;
1876     case AV_CH_LAYOUT_5POINT0:
1877     case AV_CH_LAYOUT_5POINT0_BACK:   s->channel_mode = AC3_CHMODE_3F2R;   break;
1878     default:
1879         return AVERROR(EINVAL);
1880     }
1881     s->has_center   = (s->channel_mode & 0x01) && s->channel_mode != AC3_CHMODE_MONO;
1882     s->has_surround =  s->channel_mode & 0x04;
1883
1884     s->channel_map  = ff_ac3_enc_channel_map[s->channel_mode][s->lfe_on];
1885     *channel_layout = ch_layout;
1886     if (s->lfe_on)
1887         *channel_layout |= AV_CH_LOW_FREQUENCY;
1888
1889     return 0;
1890 }
1891
1892
1893 static av_cold int validate_options(AVCodecContext *avctx, AC3EncodeContext *s)
1894 {
1895     int i, ret, max_sr;
1896
1897     /* validate channel layout */
1898     if (!avctx->channel_layout) {
1899         av_log(avctx, AV_LOG_WARNING, "No channel layout specified. The "
1900                                       "encoder will guess the layout, but it "
1901                                       "might be incorrect.\n");
1902     }
1903     ret = set_channel_info(s, avctx->channels, &avctx->channel_layout);
1904     if (ret) {
1905         av_log(avctx, AV_LOG_ERROR, "invalid channel layout\n");
1906         return ret;
1907     }
1908
1909     /* validate sample rate */
1910     /* note: max_sr could be changed from 2 to 5 for E-AC-3 once we find a
1911              decoder that supports half sample rate so we can validate that
1912              the generated files are correct. */
1913     max_sr = s->eac3 ? 2 : 8;
1914     for (i = 0; i <= max_sr; i++) {
1915         if ((ff_ac3_sample_rate_tab[i % 3] >> (i / 3)) == avctx->sample_rate)
1916             break;
1917     }
1918     if (i > max_sr) {
1919         av_log(avctx, AV_LOG_ERROR, "invalid sample rate\n");
1920         return AVERROR(EINVAL);
1921     }
1922     s->sample_rate        = avctx->sample_rate;
1923     s->bit_alloc.sr_shift = i / 3;
1924     s->bit_alloc.sr_code  = i % 3;
1925     s->bitstream_id       = s->eac3 ? 16 : 8 + s->bit_alloc.sr_shift;
1926
1927     /* validate bit rate */
1928     if (s->eac3) {
1929         int max_br, min_br, wpf, min_br_dist, min_br_code;
1930
1931         /* calculate min/max bitrate */
1932         max_br = 2048 * s->sample_rate / AC3_FRAME_SIZE * 16;
1933         min_br = ((s->sample_rate + (AC3_FRAME_SIZE-1)) / AC3_FRAME_SIZE) * 16;
1934         if (avctx->bit_rate < min_br || avctx->bit_rate > max_br) {
1935             av_log(avctx, AV_LOG_ERROR, "invalid bit rate. must be %d to %d "
1936                    "for this sample rate\n", min_br, max_br);
1937             return AVERROR(EINVAL);
1938         }
1939
1940         /* calculate words-per-frame for the selected bitrate */
1941         wpf = (avctx->bit_rate / 16) * AC3_FRAME_SIZE / s->sample_rate;
1942         av_assert1(wpf > 0 && wpf <= 2048);
1943
1944         /* find the closest AC-3 bitrate code to the selected bitrate.
1945            this is needed for lookup tables for bandwidth and coupling
1946            parameter selection */
1947         min_br_code = -1;
1948         min_br_dist = INT_MAX;
1949         for (i = 0; i < 19; i++) {
1950             int br_dist = abs(ff_ac3_bitrate_tab[i] * 1000 - avctx->bit_rate);
1951             if (br_dist < min_br_dist) {
1952                 min_br_dist = br_dist;
1953                 min_br_code = i;
1954             }
1955         }
1956
1957         /* make sure the minimum frame size is below the average frame size */
1958         s->frame_size_code = min_br_code << 1;
1959         while (wpf > 1 && wpf * s->sample_rate / AC3_FRAME_SIZE * 16 > avctx->bit_rate)
1960             wpf--;
1961         s->frame_size_min = 2 * wpf;
1962     } else {
1963         for (i = 0; i < 19; i++) {
1964             if ((ff_ac3_bitrate_tab[i] >> s->bit_alloc.sr_shift)*1000 == avctx->bit_rate)
1965                 break;
1966         }
1967         if (i == 19) {
1968             av_log(avctx, AV_LOG_ERROR, "invalid bit rate\n");
1969             return AVERROR(EINVAL);
1970         }
1971         s->frame_size_code = i << 1;
1972         s->frame_size_min  = 2 * ff_ac3_frame_size_tab[s->frame_size_code][s->bit_alloc.sr_code];
1973     }
1974     s->bit_rate   = avctx->bit_rate;
1975     s->frame_size = s->frame_size_min;
1976
1977     /* validate cutoff */
1978     if (avctx->cutoff < 0) {
1979         av_log(avctx, AV_LOG_ERROR, "invalid cutoff frequency\n");
1980         return AVERROR(EINVAL);
1981     }
1982     s->cutoff = avctx->cutoff;
1983     if (s->cutoff > (s->sample_rate >> 1))
1984         s->cutoff = s->sample_rate >> 1;
1985
1986     /* validate audio service type / channels combination */
1987     if ((avctx->audio_service_type == AV_AUDIO_SERVICE_TYPE_KARAOKE &&
1988          avctx->channels == 1) ||
1989         ((avctx->audio_service_type == AV_AUDIO_SERVICE_TYPE_COMMENTARY ||
1990           avctx->audio_service_type == AV_AUDIO_SERVICE_TYPE_EMERGENCY  ||
1991           avctx->audio_service_type == AV_AUDIO_SERVICE_TYPE_VOICE_OVER)
1992          && avctx->channels > 1)) {
1993         av_log(avctx, AV_LOG_ERROR, "invalid audio service type for the "
1994                                     "specified number of channels\n");
1995         return AVERROR(EINVAL);
1996     }
1997
1998     if (!s->eac3) {
1999         ret = ff_ac3_validate_metadata(avctx);
2000         if (ret)
2001             return ret;
2002     }
2003
2004     s->rematrixing_enabled = s->options.stereo_rematrixing &&
2005                              (s->channel_mode == AC3_CHMODE_STEREO);
2006
2007     s->cpl_enabled = s->options.channel_coupling &&
2008                      s->channel_mode >= AC3_CHMODE_STEREO && !s->fixed_point;
2009
2010     return 0;
2011 }
2012
2013
2014 /**
2015  * Set bandwidth for all channels.
2016  * The user can optionally supply a cutoff frequency. Otherwise an appropriate
2017  * default value will be used.
2018  */
2019 static av_cold void set_bandwidth(AC3EncodeContext *s)
2020 {
2021     int blk, ch;
2022     int av_uninit(cpl_start);
2023
2024     if (s->cutoff) {
2025         /* calculate bandwidth based on user-specified cutoff frequency */
2026         int fbw_coeffs;
2027         fbw_coeffs     = s->cutoff * 2 * AC3_MAX_COEFS / s->sample_rate;
2028         s->bandwidth_code = av_clip((fbw_coeffs - 73) / 3, 0, 60);
2029     } else {
2030         /* use default bandwidth setting */
2031         s->bandwidth_code = ac3_bandwidth_tab[s->fbw_channels-1][s->bit_alloc.sr_code][s->frame_size_code/2];
2032     }
2033
2034     /* set number of coefficients for each channel */
2035     for (ch = 1; ch <= s->fbw_channels; ch++) {
2036         s->start_freq[ch] = 0;
2037         for (blk = 0; blk < AC3_MAX_BLOCKS; blk++)
2038             s->blocks[blk].end_freq[ch] = s->bandwidth_code * 3 + 73;
2039     }
2040     /* LFE channel always has 7 coefs */
2041     if (s->lfe_on) {
2042         s->start_freq[s->lfe_channel] = 0;
2043         for (blk = 0; blk < AC3_MAX_BLOCKS; blk++)
2044             s->blocks[blk].end_freq[ch] = 7;
2045     }
2046
2047     /* initialize coupling strategy */
2048     if (s->cpl_enabled) {
2049         if (s->options.cpl_start >= 0) {
2050             cpl_start = s->options.cpl_start;
2051         } else {
2052             cpl_start = ac3_coupling_start_tab[s->channel_mode-2][s->bit_alloc.sr_code][s->frame_size_code/2];
2053             if (cpl_start < 0)
2054                 s->cpl_enabled = 0;
2055         }
2056     }
2057     if (s->cpl_enabled) {
2058         int i, cpl_start_band, cpl_end_band;
2059         uint8_t *cpl_band_sizes = s->cpl_band_sizes;
2060
2061         cpl_end_band   = s->bandwidth_code / 4 + 3;
2062         cpl_start_band = av_clip(cpl_start, 0, FFMIN(cpl_end_band-1, 15));
2063
2064         s->num_cpl_subbands = cpl_end_band - cpl_start_band;
2065
2066         s->num_cpl_bands = 1;
2067         *cpl_band_sizes  = 12;
2068         for (i = cpl_start_band + 1; i < cpl_end_band; i++) {
2069             if (ff_eac3_default_cpl_band_struct[i]) {
2070                 *cpl_band_sizes += 12;
2071             } else {
2072                 s->num_cpl_bands++;
2073                 cpl_band_sizes++;
2074                 *cpl_band_sizes = 12;
2075             }
2076         }
2077
2078         s->start_freq[CPL_CH] = cpl_start_band * 12 + 37;
2079         s->cpl_end_freq       = cpl_end_band   * 12 + 37;
2080         for (blk = 0; blk < AC3_MAX_BLOCKS; blk++)
2081             s->blocks[blk].end_freq[CPL_CH] = s->cpl_end_freq;
2082     }
2083 }
2084
2085
2086 static av_cold int allocate_buffers(AVCodecContext *avctx)
2087 {
2088     int blk, ch;
2089     AC3EncodeContext *s = avctx->priv_data;
2090     int channels = s->channels + 1; /* includes coupling channel */
2091
2092     if (s->allocate_sample_buffers(s))
2093         goto alloc_fail;
2094
2095     FF_ALLOC_OR_GOTO(avctx, s->bap_buffer,  AC3_MAX_BLOCKS * channels *
2096                      AC3_MAX_COEFS * sizeof(*s->bap_buffer),  alloc_fail);
2097     FF_ALLOC_OR_GOTO(avctx, s->bap1_buffer, AC3_MAX_BLOCKS * channels *
2098                      AC3_MAX_COEFS * sizeof(*s->bap1_buffer), alloc_fail);
2099     FF_ALLOCZ_OR_GOTO(avctx, s->mdct_coef_buffer, AC3_MAX_BLOCKS * channels *
2100                       AC3_MAX_COEFS * sizeof(*s->mdct_coef_buffer), alloc_fail);
2101     FF_ALLOC_OR_GOTO(avctx, s->exp_buffer, AC3_MAX_BLOCKS * channels *
2102                      AC3_MAX_COEFS * sizeof(*s->exp_buffer), alloc_fail);
2103     FF_ALLOC_OR_GOTO(avctx, s->grouped_exp_buffer, AC3_MAX_BLOCKS * channels *
2104                      128 * sizeof(*s->grouped_exp_buffer), alloc_fail);
2105     FF_ALLOC_OR_GOTO(avctx, s->psd_buffer, AC3_MAX_BLOCKS * channels *
2106                      AC3_MAX_COEFS * sizeof(*s->psd_buffer), alloc_fail);
2107     FF_ALLOC_OR_GOTO(avctx, s->band_psd_buffer, AC3_MAX_BLOCKS * channels *
2108                      64 * sizeof(*s->band_psd_buffer), alloc_fail);
2109     FF_ALLOC_OR_GOTO(avctx, s->mask_buffer, AC3_MAX_BLOCKS * channels *
2110                      64 * sizeof(*s->mask_buffer), alloc_fail);
2111     FF_ALLOC_OR_GOTO(avctx, s->qmant_buffer, AC3_MAX_BLOCKS * channels *
2112                      AC3_MAX_COEFS * sizeof(*s->qmant_buffer), alloc_fail);
2113     if (s->cpl_enabled) {
2114         FF_ALLOC_OR_GOTO(avctx, s->cpl_coord_exp_buffer, AC3_MAX_BLOCKS * channels *
2115                          16 * sizeof(*s->cpl_coord_exp_buffer), alloc_fail);
2116         FF_ALLOC_OR_GOTO(avctx, s->cpl_coord_mant_buffer, AC3_MAX_BLOCKS * channels *
2117                          16 * sizeof(*s->cpl_coord_mant_buffer), alloc_fail);
2118     }
2119     for (blk = 0; blk < AC3_MAX_BLOCKS; blk++) {
2120         AC3Block *block = &s->blocks[blk];
2121         FF_ALLOCZ_OR_GOTO(avctx, block->mdct_coef, channels * sizeof(*block->mdct_coef),
2122                           alloc_fail);
2123         FF_ALLOCZ_OR_GOTO(avctx, block->exp, channels * sizeof(*block->exp),
2124                           alloc_fail);
2125         FF_ALLOCZ_OR_GOTO(avctx, block->grouped_exp, channels * sizeof(*block->grouped_exp),
2126                           alloc_fail);
2127         FF_ALLOCZ_OR_GOTO(avctx, block->psd, channels * sizeof(*block->psd),
2128                           alloc_fail);
2129         FF_ALLOCZ_OR_GOTO(avctx, block->band_psd, channels * sizeof(*block->band_psd),
2130                           alloc_fail);
2131         FF_ALLOCZ_OR_GOTO(avctx, block->mask, channels * sizeof(*block->mask),
2132                           alloc_fail);
2133         FF_ALLOCZ_OR_GOTO(avctx, block->qmant, channels * sizeof(*block->qmant),
2134                           alloc_fail);
2135         if (s->cpl_enabled) {
2136             FF_ALLOCZ_OR_GOTO(avctx, block->cpl_coord_exp, channels * sizeof(*block->cpl_coord_exp),
2137                               alloc_fail);
2138             FF_ALLOCZ_OR_GOTO(avctx, block->cpl_coord_mant, channels * sizeof(*block->cpl_coord_mant),
2139                               alloc_fail);
2140         }
2141
2142         for (ch = 0; ch < channels; ch++) {
2143             /* arrangement: block, channel, coeff */
2144             block->grouped_exp[ch] = &s->grouped_exp_buffer[128           * (blk * channels + ch)];
2145             block->psd[ch]         = &s->psd_buffer        [AC3_MAX_COEFS * (blk * channels + ch)];
2146             block->band_psd[ch]    = &s->band_psd_buffer   [64            * (blk * channels + ch)];
2147             block->mask[ch]        = &s->mask_buffer       [64            * (blk * channels + ch)];
2148             block->qmant[ch]       = &s->qmant_buffer      [AC3_MAX_COEFS * (blk * channels + ch)];
2149             if (s->cpl_enabled) {
2150                 block->cpl_coord_exp[ch]  = &s->cpl_coord_exp_buffer [16  * (blk * channels + ch)];
2151                 block->cpl_coord_mant[ch] = &s->cpl_coord_mant_buffer[16  * (blk * channels + ch)];
2152             }
2153
2154             /* arrangement: channel, block, coeff */
2155             block->exp[ch]         = &s->exp_buffer        [AC3_MAX_COEFS * (AC3_MAX_BLOCKS * ch + blk)];
2156             block->mdct_coef[ch]   = &s->mdct_coef_buffer  [AC3_MAX_COEFS * (AC3_MAX_BLOCKS * ch + blk)];
2157         }
2158     }
2159
2160     if (!s->fixed_point) {
2161         FF_ALLOCZ_OR_GOTO(avctx, s->fixed_coef_buffer, AC3_MAX_BLOCKS * channels *
2162                           AC3_MAX_COEFS * sizeof(*s->fixed_coef_buffer), alloc_fail);
2163         for (blk = 0; blk < AC3_MAX_BLOCKS; blk++) {
2164             AC3Block *block = &s->blocks[blk];
2165             FF_ALLOCZ_OR_GOTO(avctx, block->fixed_coef, channels *
2166                               sizeof(*block->fixed_coef), alloc_fail);
2167             for (ch = 0; ch < channels; ch++)
2168                 block->fixed_coef[ch] = &s->fixed_coef_buffer[AC3_MAX_COEFS * (AC3_MAX_BLOCKS * ch + blk)];
2169         }
2170     } else {
2171         for (blk = 0; blk < AC3_MAX_BLOCKS; blk++) {
2172             AC3Block *block = &s->blocks[blk];
2173             FF_ALLOCZ_OR_GOTO(avctx, block->fixed_coef, channels *
2174                               sizeof(*block->fixed_coef), alloc_fail);
2175             for (ch = 0; ch < channels; ch++)
2176                 block->fixed_coef[ch] = (int32_t *)block->mdct_coef[ch];
2177         }
2178     }
2179
2180     return 0;
2181 alloc_fail:
2182     return AVERROR(ENOMEM);
2183 }
2184
2185
2186 /**
2187  * Initialize the encoder.
2188  */
2189 av_cold int ff_ac3_encode_init(AVCodecContext *avctx)
2190 {
2191     AC3EncodeContext *s = avctx->priv_data;
2192     int ret, frame_size_58;
2193
2194     s->avctx = avctx;
2195
2196     s->eac3 = avctx->codec_id == CODEC_ID_EAC3;
2197
2198     avctx->frame_size = AC3_FRAME_SIZE;
2199
2200     ff_ac3_common_init();
2201
2202     ret = validate_options(avctx, s);
2203     if (ret)
2204         return ret;
2205
2206     s->bitstream_mode = avctx->audio_service_type;
2207     if (s->bitstream_mode == AV_AUDIO_SERVICE_TYPE_KARAOKE)
2208         s->bitstream_mode = 0x7;
2209
2210     s->bits_written    = 0;
2211     s->samples_written = 0;
2212
2213     /* calculate crc_inv for both possible frame sizes */
2214     frame_size_58 = (( s->frame_size    >> 2) + ( s->frame_size    >> 4)) << 1;
2215     s->crc_inv[0] = pow_poly((CRC16_POLY >> 1), (8 * frame_size_58) - 16, CRC16_POLY);
2216     if (s->bit_alloc.sr_code == 1) {
2217         frame_size_58 = (((s->frame_size+2) >> 2) + ((s->frame_size+2) >> 4)) << 1;
2218         s->crc_inv[1] = pow_poly((CRC16_POLY >> 1), (8 * frame_size_58) - 16, CRC16_POLY);
2219     }
2220
2221     /* set function pointers */
2222     if (CONFIG_AC3_FIXED_ENCODER && s->fixed_point) {
2223         s->mdct_end                     = ff_ac3_fixed_mdct_end;
2224         s->mdct_init                    = ff_ac3_fixed_mdct_init;
2225         s->allocate_sample_buffers      = ff_ac3_fixed_allocate_sample_buffers;
2226     } else if (CONFIG_AC3_ENCODER || CONFIG_EAC3_ENCODER) {
2227         s->mdct_end                     = ff_ac3_float_mdct_end;
2228         s->mdct_init                    = ff_ac3_float_mdct_init;
2229         s->allocate_sample_buffers      = ff_ac3_float_allocate_sample_buffers;
2230     }
2231     if (CONFIG_EAC3_ENCODER && s->eac3)
2232         s->output_frame_header = ff_eac3_output_frame_header;
2233     else
2234         s->output_frame_header = ac3_output_frame_header;
2235
2236     set_bandwidth(s);
2237
2238     exponent_init(s);
2239
2240     bit_alloc_init(s);
2241
2242     FF_ALLOCZ_OR_GOTO(avctx, s->mdct, sizeof(AC3MDCTContext), init_fail);
2243     ret = s->mdct_init(avctx, s->mdct, 9);
2244     if (ret)
2245         goto init_fail;
2246
2247     ret = allocate_buffers(avctx);
2248     if (ret)
2249         goto init_fail;
2250
2251     avctx->coded_frame= avcodec_alloc_frame();
2252
2253     dsputil_init(&s->dsp, avctx);
2254     ff_ac3dsp_init(&s->ac3dsp, avctx->flags & CODEC_FLAG_BITEXACT);
2255
2256     dprint_options(avctx);
2257
2258     return 0;
2259 init_fail:
2260     ff_ac3_encode_close(avctx);
2261     return ret;
2262 }