FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
ac3enc_template.c
Go to the documentation of this file.
1 /*
2  * AC-3 encoder float/fixed template
3  * Copyright (c) 2000 Fabrice Bellard
4  * Copyright (c) 2006-2011 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  * AC-3 encoder float/fixed template
27  */
28 
29 #include <stdint.h>
30 
31 #include "libavutil/attributes.h"
32 #include "libavutil/internal.h"
33 
34 #include "audiodsp.h"
35 #include "internal.h"
36 #include "ac3enc.h"
37 #include "eac3enc.h"
38 
39 /* prototypes for static functions in ac3enc_fixed.c and ac3enc_float.c */
40 
42 
44 
46  unsigned int len);
47 
48 static CoefType calc_cpl_coord(CoefSumType energy_ch, CoefSumType energy_cpl);
49 
51  const CoefType *coef0, const CoefType *coef1,
52  int len);
53 
55 {
56  int ch;
57 
58  FF_ALLOC_OR_GOTO(s->avctx, s->windowed_samples, AC3_WINDOW_SIZE *
59  sizeof(*s->windowed_samples), alloc_fail);
60  FF_ALLOC_ARRAY_OR_GOTO(s->avctx, s->planar_samples, s->channels, sizeof(*s->planar_samples),
61  alloc_fail);
62  for (ch = 0; ch < s->channels; ch++) {
63  FF_ALLOCZ_OR_GOTO(s->avctx, s->planar_samples[ch],
64  (AC3_FRAME_SIZE+AC3_BLOCK_SIZE) * sizeof(**s->planar_samples),
65  alloc_fail);
66  }
67 
68  return 0;
69 alloc_fail:
70  return AVERROR(ENOMEM);
71 }
72 
73 
74 /*
75  * Copy input samples.
76  * Channels are reordered from FFmpeg's default order to AC-3 order.
77  */
79 {
80  int ch;
81 
82  /* copy and remap input samples */
83  for (ch = 0; ch < s->channels; ch++) {
84  /* copy last 256 samples of previous frame to the start of the current frame */
85  memcpy(&s->planar_samples[ch][0], &s->planar_samples[ch][AC3_BLOCK_SIZE * s->num_blocks],
86  AC3_BLOCK_SIZE * sizeof(s->planar_samples[0][0]));
87 
88  /* copy new samples for current frame */
89  memcpy(&s->planar_samples[ch][AC3_BLOCK_SIZE],
90  samples[s->channel_map[ch]],
91  AC3_BLOCK_SIZE * s->num_blocks * sizeof(s->planar_samples[0][0]));
92  }
93 }
94 
95 
96 /*
97  * Apply the MDCT to input samples to generate frequency coefficients.
98  * This applies the KBD window and normalizes the input to reduce precision
99  * loss due to fixed-point calculations.
100  */
102 {
103  int blk, ch;
104 
105  for (ch = 0; ch < s->channels; ch++) {
106  for (blk = 0; blk < s->num_blocks; blk++) {
107  AC3Block *block = &s->blocks[blk];
108  const SampleType *input_samples = &s->planar_samples[ch][blk * AC3_BLOCK_SIZE];
109 
110 #if CONFIG_AC3ENC_FLOAT
111  s->fdsp->vector_fmul(s->windowed_samples, input_samples,
113 #else
114  s->ac3dsp.apply_window_int16(s->windowed_samples, input_samples,
116 #endif
117 
118  if (s->fixed_point)
119  block->coeff_shift[ch+1] = normalize_samples(s);
120 
121  s->mdct.mdct_calcw(&s->mdct, block->mdct_coef[ch+1],
122  s->windowed_samples);
123  }
124  }
125 }
126 
127 
128 /*
129  * Calculate coupling channel and coupling coordinates.
130  */
132 {
134 #if CONFIG_AC3ENC_FLOAT
135  LOCAL_ALIGNED_16(int32_t, fixed_cpl_coords, [AC3_MAX_BLOCKS], [AC3_MAX_CHANNELS][16]);
136 #else
137  int32_t (*fixed_cpl_coords)[AC3_MAX_CHANNELS][16] = cpl_coords;
138 #endif
139  int av_uninit(blk), ch, bnd, i, j;
140  CoefSumType energy[AC3_MAX_BLOCKS][AC3_MAX_CHANNELS][16] = {{{0}}};
141  int cpl_start, num_cpl_coefs;
142 
143  memset(cpl_coords, 0, AC3_MAX_BLOCKS * sizeof(*cpl_coords));
144 #if CONFIG_AC3ENC_FLOAT
145  memset(fixed_cpl_coords, 0, AC3_MAX_BLOCKS * sizeof(*cpl_coords));
146 #endif
147 
148  /* align start to 16-byte boundary. align length to multiple of 32.
149  note: coupling start bin % 4 will always be 1 */
150  cpl_start = s->start_freq[CPL_CH] - 1;
151  num_cpl_coefs = FFALIGN(s->num_cpl_subbands * 12 + 1, 32);
152  cpl_start = FFMIN(256, cpl_start + num_cpl_coefs) - num_cpl_coefs;
153 
154  /* calculate coupling channel from fbw channels */
155  for (blk = 0; blk < s->num_blocks; blk++) {
156  AC3Block *block = &s->blocks[blk];
157  CoefType *cpl_coef = &block->mdct_coef[CPL_CH][cpl_start];
158  if (!block->cpl_in_use)
159  continue;
160  memset(cpl_coef, 0, num_cpl_coefs * sizeof(*cpl_coef));
161  for (ch = 1; ch <= s->fbw_channels; ch++) {
162  CoefType *ch_coef = &block->mdct_coef[ch][cpl_start];
163  if (!block->channel_in_cpl[ch])
164  continue;
165  for (i = 0; i < num_cpl_coefs; i++)
166  cpl_coef[i] += ch_coef[i];
167  }
168 
169  /* coefficients must be clipped in order to be encoded */
170  clip_coefficients(&s->adsp, cpl_coef, num_cpl_coefs);
171  }
172 
173  /* calculate energy in each band in coupling channel and each fbw channel */
174  /* TODO: possibly use SIMD to speed up energy calculation */
175  bnd = 0;
176  i = s->start_freq[CPL_CH];
177  while (i < s->cpl_end_freq) {
178  int band_size = s->cpl_band_sizes[bnd];
179  for (ch = CPL_CH; ch <= s->fbw_channels; ch++) {
180  for (blk = 0; blk < s->num_blocks; blk++) {
181  AC3Block *block = &s->blocks[blk];
182  if (!block->cpl_in_use || (ch > CPL_CH && !block->channel_in_cpl[ch]))
183  continue;
184  for (j = 0; j < band_size; j++) {
185  CoefType v = block->mdct_coef[ch][i+j];
186  MAC_COEF(energy[blk][ch][bnd], v, v);
187  }
188  }
189  }
190  i += band_size;
191  bnd++;
192  }
193 
194  /* calculate coupling coordinates for all blocks for all channels */
195  for (blk = 0; blk < s->num_blocks; blk++) {
196  AC3Block *block = &s->blocks[blk];
197  if (!block->cpl_in_use)
198  continue;
199  for (ch = 1; ch <= s->fbw_channels; ch++) {
200  if (!block->channel_in_cpl[ch])
201  continue;
202  for (bnd = 0; bnd < s->num_cpl_bands; bnd++) {
203  cpl_coords[blk][ch][bnd] = calc_cpl_coord(energy[blk][ch][bnd],
204  energy[blk][CPL_CH][bnd]);
205  }
206  }
207  }
208 
209  /* determine which blocks to send new coupling coordinates for */
210  for (blk = 0; blk < s->num_blocks; blk++) {
211  AC3Block *block = &s->blocks[blk];
212  AC3Block *block0 = blk ? &s->blocks[blk-1] : NULL;
213 
214  memset(block->new_cpl_coords, 0, sizeof(block->new_cpl_coords));
215 
216  if (block->cpl_in_use) {
217  /* send new coordinates if this is the first block, if previous
218  * block did not use coupling but this block does, the channels
219  * using coupling has changed from the previous block, or the
220  * coordinate difference from the last block for any channel is
221  * greater than a threshold value. */
222  if (blk == 0 || !block0->cpl_in_use) {
223  for (ch = 1; ch <= s->fbw_channels; ch++)
224  block->new_cpl_coords[ch] = 1;
225  } else {
226  for (ch = 1; ch <= s->fbw_channels; ch++) {
227  if (!block->channel_in_cpl[ch])
228  continue;
229  if (!block0->channel_in_cpl[ch]) {
230  block->new_cpl_coords[ch] = 1;
231  } else {
232  CoefSumType coord_diff = 0;
233  for (bnd = 0; bnd < s->num_cpl_bands; bnd++) {
234  coord_diff += FFABS(cpl_coords[blk-1][ch][bnd] -
235  cpl_coords[blk ][ch][bnd]);
236  }
237  coord_diff /= s->num_cpl_bands;
238  if (coord_diff > NEW_CPL_COORD_THRESHOLD)
239  block->new_cpl_coords[ch] = 1;
240  }
241  }
242  }
243  }
244  }
245 
246  /* calculate final coupling coordinates, taking into account reusing of
247  coordinates in successive blocks */
248  for (bnd = 0; bnd < s->num_cpl_bands; bnd++) {
249  blk = 0;
250  while (blk < s->num_blocks) {
251  int av_uninit(blk1);
252  AC3Block *block = &s->blocks[blk];
253 
254  if (!block->cpl_in_use) {
255  blk++;
256  continue;
257  }
258 
259  for (ch = 1; ch <= s->fbw_channels; ch++) {
260  CoefSumType energy_ch, energy_cpl;
261  if (!block->channel_in_cpl[ch])
262  continue;
263  energy_cpl = energy[blk][CPL_CH][bnd];
264  energy_ch = energy[blk][ch][bnd];
265  blk1 = blk+1;
266  while (blk1 < s->num_blocks && !s->blocks[blk1].new_cpl_coords[ch]) {
267  if (s->blocks[blk1].cpl_in_use) {
268  energy_cpl += energy[blk1][CPL_CH][bnd];
269  energy_ch += energy[blk1][ch][bnd];
270  }
271  blk1++;
272  }
273  cpl_coords[blk][ch][bnd] = calc_cpl_coord(energy_ch, energy_cpl);
274  }
275  blk = blk1;
276  }
277  }
278 
279  /* calculate exponents/mantissas for coupling coordinates */
280  for (blk = 0; blk < s->num_blocks; blk++) {
281  AC3Block *block = &s->blocks[blk];
282  if (!block->cpl_in_use)
283  continue;
284 
285 #if CONFIG_AC3ENC_FLOAT
286  s->ac3dsp.float_to_fixed24(fixed_cpl_coords[blk][1],
287  cpl_coords[blk][1],
288  s->fbw_channels * 16);
289 #endif
291  fixed_cpl_coords[blk][1],
292  s->fbw_channels * 16);
293 
294  for (ch = 1; ch <= s->fbw_channels; ch++) {
295  int bnd, min_exp, max_exp, master_exp;
296 
297  if (!block->new_cpl_coords[ch])
298  continue;
299 
300  /* determine master exponent */
301  min_exp = max_exp = block->cpl_coord_exp[ch][0];
302  for (bnd = 1; bnd < s->num_cpl_bands; bnd++) {
303  int exp = block->cpl_coord_exp[ch][bnd];
304  min_exp = FFMIN(exp, min_exp);
305  max_exp = FFMAX(exp, max_exp);
306  }
307  master_exp = ((max_exp - 15) + 2) / 3;
308  master_exp = FFMAX(master_exp, 0);
309  while (min_exp < master_exp * 3)
310  master_exp--;
311  for (bnd = 0; bnd < s->num_cpl_bands; bnd++) {
312  block->cpl_coord_exp[ch][bnd] = av_clip(block->cpl_coord_exp[ch][bnd] -
313  master_exp * 3, 0, 15);
314  }
315  block->cpl_master_exp[ch] = master_exp;
316 
317  /* quantize mantissas */
318  for (bnd = 0; bnd < s->num_cpl_bands; bnd++) {
319  int cpl_exp = block->cpl_coord_exp[ch][bnd];
320  int cpl_mant = (fixed_cpl_coords[blk][ch][bnd] << (5 + cpl_exp + master_exp * 3)) >> 24;
321  if (cpl_exp == 15)
322  cpl_mant >>= 1;
323  else
324  cpl_mant -= 16;
325 
326  block->cpl_coord_mant[ch][bnd] = cpl_mant;
327  }
328  }
329  }
330 
331  if (CONFIG_EAC3_ENCODER && s->eac3)
333 }
334 
335 
336 /*
337  * Determine rematrixing flags for each block and band.
338  */
340 {
341  int nb_coefs;
342  int blk, bnd;
343  AC3Block *block, *block0 = NULL;
344 
346  return;
347 
348  for (blk = 0; blk < s->num_blocks; blk++) {
349  block = &s->blocks[blk];
350  block->new_rematrixing_strategy = !blk;
351 
352  block->num_rematrixing_bands = 4;
353  if (block->cpl_in_use) {
354  block->num_rematrixing_bands -= (s->start_freq[CPL_CH] <= 61);
355  block->num_rematrixing_bands -= (s->start_freq[CPL_CH] == 37);
356  if (blk && block->num_rematrixing_bands != block0->num_rematrixing_bands)
357  block->new_rematrixing_strategy = 1;
358  }
359  nb_coefs = FFMIN(block->end_freq[1], block->end_freq[2]);
360 
361  if (!s->rematrixing_enabled) {
362  block0 = block;
363  continue;
364  }
365 
366  for (bnd = 0; bnd < block->num_rematrixing_bands; bnd++) {
367  /* calculate sum of squared coeffs for one band in one block */
368  int start = ff_ac3_rematrix_band_tab[bnd];
369  int end = FFMIN(nb_coefs, ff_ac3_rematrix_band_tab[bnd+1]);
370  CoefSumType sum[4];
371  sum_square_butterfly(s, sum, block->mdct_coef[1] + start,
372  block->mdct_coef[2] + start, end - start);
373 
374  /* compare sums to determine if rematrixing will be used for this band */
375  if (FFMIN(sum[2], sum[3]) < FFMIN(sum[0], sum[1]))
376  block->rematrixing_flags[bnd] = 1;
377  else
378  block->rematrixing_flags[bnd] = 0;
379 
380  /* determine if new rematrixing flags will be sent */
381  if (blk &&
382  block->rematrixing_flags[bnd] != block0->rematrixing_flags[bnd]) {
383  block->new_rematrixing_strategy = 1;
384  }
385  }
386  block0 = block;
387  }
388 }
389 
390 
392  const AVFrame *frame, int *got_packet_ptr)
393 {
395  int ret;
396 
398  ret = ff_ac3_validate_metadata(s);
399  if (ret)
400  return ret;
401  }
402 
403  if (s->bit_alloc.sr_code == 1 || s->eac3)
405 
407 
408  apply_mdct(s);
409 
410  if (s->fixed_point)
412 
413  clip_coefficients(&s->adsp, s->blocks[0].mdct_coef[1],
414  AC3_MAX_COEFS * s->num_blocks * s->channels);
415 
416  s->cpl_on = s->cpl_enabled;
418 
419  if (s->cpl_on)
421 
423 
424  if (!s->fixed_point)
426 
428 
430 
432  if (ret) {
433  av_log(avctx, AV_LOG_ERROR, "Bit allocation failed. Try increasing the bitrate.\n");
434  return ret;
435  }
436 
438 
440 
441  if ((ret = ff_alloc_packet2(avctx, avpkt, s->frame_size)) < 0)
442  return ret;
443  ff_ac3_output_frame(s, avpkt->data);
444 
445  if (frame->pts != AV_NOPTS_VALUE)
447 
448  *got_packet_ptr = 1;
449  return 0;
450 }
static void scale_coefficients(AC3EncodeContext *s)
uint8_t new_rematrixing_strategy
send new rematrixing flags in this block
Definition: ac3enc.h:145
#define NULL
Definition: coverity.c:32
int ff_alloc_packet2(AVCodecContext *avctx, AVPacket *avpkt, int64_t size)
Check AVPacket size and/or allocate data.
Definition: utils.c:1736
static CoefType calc_cpl_coord(CoefSumType energy_ch, CoefSumType energy_cpl)
float v
const char * s
Definition: avisynth_c.h:631
AVFloatDSPContext * fdsp
Definition: ac3enc.h:168
void(* float_to_fixed24)(int32_t *dst, const float *src, unsigned int len)
Convert an array of float in range [-1.0,1.0] to int32_t with range [-(1<<24),(1<<24)].
Definition: ac3dsp.h:89
This structure describes decoded (raw) audio or video data.
Definition: frame.h:171
int AC3_NAME() allocate_sample_buffers(AC3EncodeContext *s)
static void apply_mdct(AC3EncodeContext *s)
uint8_t ** cpl_coord_exp
coupling coord exponents (cplcoexp)
Definition: ac3enc.h:142
#define AC3_MAX_COEFS
Definition: ac3.h:34
#define AC3_WINDOW_SIZE
Definition: ac3.h:38
static void clip_coefficients(AudioDSPContext *adsp, CoefType *coef, unsigned int len)
void ff_ac3_process_exponents(AC3EncodeContext *s)
Calculate final exponents from the supplied MDCT coefficients and exponent shift. ...
Definition: ac3enc.c:637
void ff_eac3_set_cpl_states(AC3EncodeContext *s)
Set coupling states.
Definition: eac3enc.c:95
uint8_t ** cpl_coord_mant
coupling coord mantissas (cplcomant)
Definition: ac3enc.h:143
int start_freq[AC3_MAX_CHANNELS]
start frequency bin (strtmant)
Definition: ac3enc.h:211
#define blk(i)
Definition: sha.c:185
AC3BitAllocParameters bit_alloc
bit allocation parameters
Definition: ac3enc.h:228
Macro definitions for various function/variable attributes.
#define FFALIGN(x, a)
Definition: common.h:71
int ff_ac3_validate_metadata(AC3EncodeContext *s)
Validate metadata options as set by AVOption system.
Definition: ac3enc.c:1833
int rematrixing_enabled
stereo rematrixing enabled
Definition: ac3enc.h:220
static void apply_channel_coupling(AC3EncodeContext *s)
int channel_mode
channel mode (acmod)
Definition: ac3enc.h:199
int num_cpl_subbands
number of coupling subbands (ncplsubnd)
Definition: ac3enc.h:216
uint8_t rematrixing_flags[4]
rematrixing flags
Definition: ac3enc.h:147
int fbw_channels
number of full-bandwidth channels (nfchans)
Definition: ac3enc.h:193
uint8_t new_cpl_coords[AC3_MAX_CHANNELS]
send new coupling coordinates (cplcoe)
Definition: ac3enc.h:152
static av_cold int end(AVCodecContext *avctx)
Definition: avrndec.c:67
int64_t pts
Presentation timestamp in time_base units (time when frame should be shown to user).
Definition: frame.h:257
static AVFrame * frame
uint8_t cpl_master_exp[AC3_MAX_CHANNELS]
coupling coord master exponents (mstrcplco)
Definition: ac3enc.h:153
int num_rematrixing_bands
number of rematrixing bands
Definition: ac3enc.h:146
AC3DSPContext ac3dsp
AC-3 optimized functions.
Definition: ac3enc.h:170
int num_cpl_bands
number of coupling bands (ncplbnd)
Definition: ac3enc.h:217
#define av_log(a,...)
int64_t CoefSumType
Definition: ac3enc.h:72
CoefType ** mdct_coef
MDCT coefficients.
Definition: ac3enc.h:134
uint8_t channel_in_cpl[AC3_MAX_CHANNELS]
channel in coupling (chincpl)
Definition: ac3enc.h:150
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:176
AC3EncOptions options
encoding options
Definition: ac3enc.h:164
void(* vector_fmul)(float *dst, const float *src0, const float *src1, int len)
Calculate the entry wise product of two vectors of floats and store the result in a vector of floats...
Definition: float_dsp.h:38
#define AVERROR(e)
Definition: error.h:43
int channels
total number of channels (nchans)
Definition: ac3enc.h:194
int initial_padding
Audio only.
Definition: avcodec.h:3015
#define AC3_MAX_CHANNELS
maximum number of channels, including coupling channel
Definition: ac3.h:31
#define AC3_NAME(x)
Definition: ac3enc.h:65
int cpl_on
coupling turned on for this frame
Definition: ac3enc.h:214
int fixed_point
indicates if fixed-point encoder is being used
Definition: ac3enc.h:176
#define FFMAX(a, b)
Definition: common.h:64
int cpl_in_use
coupling in use for this block (cplinu)
Definition: ac3enc.h:149
int cpl_enabled
coupling enabled for all frames
Definition: ac3enc.h:215
#define AC3_BLOCK_SIZE
Definition: ac3.h:35
int16_t SampleType
Definition: ac3enc.h:70
static int normalize_samples(AC3EncodeContext *s)
Data for a single audio block.
Definition: ac3enc.h:133
common internal API header
int ff_ac3_compute_bit_allocation(AC3EncodeContext *s)
Definition: ac3enc.c:1146
#define FFMIN(a, b)
Definition: common.h:66
AudioDSPContext adsp
Definition: ac3enc.h:167
int eac3
indicates if this is E-AC-3 vs. AC-3
Definition: ac3enc.h:177
ret
Definition: avfilter.c:974
int32_t
#define FFABS(a)
Definition: common.h:61
void ff_ac3_adjust_frame_size(AC3EncodeContext *s)
Adjust the frame size to make the average bit rate match the target bit rate.
Definition: ac3enc.c:183
FFTContext mdct
FFT context for MDCT calculation.
Definition: ac3enc.h:171
void(* extract_exponents)(uint8_t *exp, int32_t *coef, int nb_coefs)
Definition: ac3dsp.h:127
int AC3_NAME() encode_frame(AVCodecContext *avctx, AVPacket *avpkt, const AVFrame *frame, int *got_packet_ptr)
const SampleType * mdct_window
MDCT window function array.
Definition: ac3enc.h:172
SampleType ** planar_samples
Definition: ac3enc.h:237
#define CPL_CH
coupling channel index
Definition: ac3.h:32
#define NEW_CPL_COORD_THRESHOLD
Definition: ac3enc.h:69
main external API structure.
Definition: avcodec.h:1241
const uint8_t * channel_map
channel map used to reorder channels
Definition: ac3enc.h:200
int end_freq[AC3_MAX_CHANNELS]
end frequency bin (endmant)
Definition: ac3enc.h:156
#define AC3_MAX_BLOCKS
Definition: ac3.h:36
AC-3 encoder private context.
Definition: ac3enc.h:162
void ff_ac3_output_frame(AC3EncodeContext *s, unsigned char *frame)
Write the frame to the output bitstream.
Definition: ac3enc.c:1661
void(* apply_window_int16)(int16_t *output, const int16_t *input, const int16_t *window, unsigned int len)
Apply symmetric window in 16-bit fixed-point.
Definition: ac3dsp.h:152
AC3Block blocks[AC3_MAX_BLOCKS]
per-block info
Definition: ac3enc.h:174
SampleType * windowed_samples
Definition: ac3enc.h:236
void ff_ac3_quantize_mantissas(AC3EncodeContext *s)
Quantize mantissas using coefficients, exponents, and bit allocation pointers.
Definition: ac3enc.c:1300
int num_blocks
number of blocks per frame
Definition: ac3enc.h:185
#define FF_ALLOC_ARRAY_OR_GOTO(ctx, p, nelem, elsize, label)
Definition: internal.h:147
uint8_t coeff_shift[AC3_MAX_CHANNELS]
fixed-point coefficient shift values
Definition: ac3enc.h:144
#define AC3_FRAME_SIZE
Definition: ac3.h:37
int frame_size
current frame size in bytes
Definition: ac3enc.h:187
int cpl_end_freq
coupling channel end frequency bin
Definition: ac3enc.h:212
uint8_t cpl_band_sizes[AC3_MAX_CPL_BANDS]
number of coeffs in each coupling band
Definition: ac3enc.h:218
common internal api header.
static void sum_square_butterfly(AC3EncodeContext *s, CoefSumType sum[4], const CoefType *coef0, const CoefType *coef1, int len)
#define FF_ALLOC_OR_GOTO(ctx, p, size, label)
Definition: internal.h:129
AVCodecContext * avctx
parent AVCodecContext
Definition: ac3enc.h:165
static void compute_rematrixing_strategy(AC3EncodeContext *s)
void * priv_data
Definition: avcodec.h:1283
int allow_per_frame_metadata
Definition: ac3enc.h:124
int len
static void copy_input_samples(AC3EncodeContext *s, SampleType **samples)
#define MAC_COEF(d, a, b)
Definition: ac3enc.h:66
#define av_uninit(x)
Definition: attributes.h:141
AC-3 encoder & E-AC-3 encoder common header.
#define LOCAL_ALIGNED_16(t, v,...)
Definition: internal.h:120
void ff_ac3_apply_rematrixing(AC3EncodeContext *s)
Apply stereo rematrixing to coefficients based on rematrixing flags.
Definition: ac3enc.c:272
void INT64 start
Definition: avisynth_c.h:553
const uint8_t ff_ac3_rematrix_band_tab[5]
Table of bin locations for rematrixing bands reference: Section 7.5.2 Rematrixing : Frequency Band De...
Definition: ac3tab.c:141
static av_always_inline int64_t ff_samples_to_time_base(AVCodecContext *avctx, int64_t samples)
Rescale from sample rate to AVCodecContext.time_base.
Definition: internal.h:225
void ff_ac3_group_exponents(AC3EncodeContext *s)
Group exponents.
Definition: ac3enc.c:579
uint8_t ** extended_data
pointers to the data planes/channels.
Definition: frame.h:215
int32_t CoefType
Definition: ac3enc.h:71
void ff_ac3_compute_coupling_strategy(AC3EncodeContext *s)
Set the initial coupling strategy parameters prior to coupling analysis.
Definition: ac3enc.c:201
E-AC-3 encoder.
This structure stores compressed data.
Definition: avcodec.h:1139
#define FF_ALLOCZ_OR_GOTO(ctx, p, size, label)
Definition: internal.h:138
#define AV_NOPTS_VALUE
Undefined timestamp value.
Definition: avutil.h:241
void(* mdct_calcw)(struct FFTContext *s, FFTDouble *output, const FFTSample *input)
Definition: fft.h:110
static int16_t block[64]
Definition: dct-test.c:110