FFmpeg
eac3enc.c
Go to the documentation of this file.
1 /*
2  * E-AC-3 encoder
3  * Copyright (c) 2011 Justin Ruggles <justin.ruggles@gmail.com>
4  *
5  * This file is part of FFmpeg.
6  *
7  * FFmpeg is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * FFmpeg is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with FFmpeg; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21 
22 /**
23  * @file
24  * E-AC-3 encoder
25  */
26 
27 #define AC3ENC_FLOAT 1
28 
29 #include "libavutil/attributes.h"
30 #include "libavutil/thread.h"
31 #include "ac3enc.h"
32 #include "codec_internal.h"
33 #include "eac3enc.h"
34 #include "eac3_data.h"
35 
36 
37 static const AVClass eac3enc_class = {
38  .class_name = "E-AC-3 Encoder",
39  .item_name = av_default_item_name,
40  .option = &ff_ac3_enc_options[2], /* First two options are AC-3 only. */
41  .version = LIBAVUTIL_VERSION_INT,
42 };
43 
44 /**
45  * LUT for finding a matching frame exponent strategy index from a set of
46  * exponent strategies for a single channel across all 6 blocks.
47  */
48 static int8_t eac3_frame_expstr_index_tab[3][4][4][4][4][4];
49 
50 
51 /**
52  * Initialize E-AC-3 exponent tables.
53  */
54 static av_cold void eac3_exponent_init(void)
55 {
56  int i;
57 
59  for (i = 0; i < 32; i++) {
61  [ff_eac3_frm_expstr[i][1]]
62  [ff_eac3_frm_expstr[i][2]]
63  [ff_eac3_frm_expstr[i][3]]
64  [ff_eac3_frm_expstr[i][4]]
65  [ff_eac3_frm_expstr[i][5]] = i;
66  }
67 }
68 
69 
71 {
72  int ch;
73 
74  if (s->num_blocks < 6) {
75  s->use_frame_exp_strategy = 0;
76  return;
77  }
78 
79  s->use_frame_exp_strategy = 1;
80  for (ch = !s->cpl_on; ch <= s->fbw_channels; ch++) {
81  int expstr = eac3_frame_expstr_index_tab[s->exp_strategy[ch][0]-1]
82  [s->exp_strategy[ch][1]]
83  [s->exp_strategy[ch][2]]
84  [s->exp_strategy[ch][3]]
85  [s->exp_strategy[ch][4]]
86  [s->exp_strategy[ch][5]];
87  if (expstr < 0) {
88  s->use_frame_exp_strategy = 0;
89  break;
90  }
91  s->frame_exp_strategy[ch] = expstr;
92  }
93 }
94 
95 
96 
98 {
99  int ch, blk;
100  int first_cpl_coords[AC3_MAX_CHANNELS];
101 
102  /* set first cpl coords */
103  for (ch = 1; ch <= s->fbw_channels; ch++)
104  first_cpl_coords[ch] = 1;
105  for (blk = 0; blk < s->num_blocks; blk++) {
106  AC3Block *block = &s->blocks[blk];
107  for (ch = 1; ch <= s->fbw_channels; ch++) {
108  if (block->channel_in_cpl[ch]) {
109  if (first_cpl_coords[ch]) {
110  block->new_cpl_coords[ch] = 2;
111  first_cpl_coords[ch] = 0;
112  }
113  } else {
114  first_cpl_coords[ch] = 1;
115  }
116  }
117  }
118 
119  /* set first cpl leak */
120  for (blk = 0; blk < s->num_blocks; blk++) {
121  AC3Block *block = &s->blocks[blk];
122  if (block->cpl_in_use) {
123  block->new_cpl_leak = 2;
124  break;
125  }
126  }
127 }
128 
129 /**
130  * Write the E-AC-3 frame header to the output bitstream.
131  */
133 {
134  int blk, ch;
135  AC3EncOptions *opt = &s->options;
136 
137  put_bits(&s->pb, 16, 0x0b77); /* sync word */
138 
139  /* BSI header */
140  put_bits(&s->pb, 2, 0); /* stream type = independent */
141  put_bits(&s->pb, 3, 0); /* substream id = 0 */
142  put_bits(&s->pb, 11, (s->frame_size / 2) - 1); /* frame size */
143  put_bits(&s->pb, 2, s->bit_alloc.sr_code); /* sample rate code */
144  put_bits(&s->pb, 2, s->num_blks_code); /* number of blocks */
145  put_bits(&s->pb, 3, s->channel_mode); /* audio coding mode */
146  put_bits(&s->pb, 1, s->lfe_on); /* LFE channel indicator */
147  put_bits(&s->pb, 5, s->bitstream_id); /* bitstream id (EAC3=16) */
148  put_bits(&s->pb, 5, -opt->dialogue_level); /* dialogue normalization level */
149  put_bits(&s->pb, 1, 0); /* no compression gain */
150  /* mixing metadata*/
151  put_bits(&s->pb, 1, opt->eac3_mixing_metadata);
152  if (opt->eac3_mixing_metadata) {
153  if (s->channel_mode > AC3_CHMODE_STEREO)
154  put_bits(&s->pb, 2, opt->preferred_stereo_downmix);
155  if (s->has_center) {
156  put_bits(&s->pb, 3, s->ltrt_center_mix_level);
157  put_bits(&s->pb, 3, s->loro_center_mix_level);
158  }
159  if (s->has_surround) {
160  put_bits(&s->pb, 3, s->ltrt_surround_mix_level);
161  put_bits(&s->pb, 3, s->loro_surround_mix_level);
162  }
163  if (s->lfe_on)
164  put_bits(&s->pb, 1, 0);
165  put_bits(&s->pb, 1, 0); /* no program scale */
166  put_bits(&s->pb, 1, 0); /* no ext program scale */
167  put_bits(&s->pb, 2, 0); /* no mixing parameters */
168  if (s->channel_mode < AC3_CHMODE_STEREO)
169  put_bits(&s->pb, 1, 0); /* no pan info */
170  put_bits(&s->pb, 1, 0); /* no frame mix config info */
171  }
172  /* info metadata*/
173  put_bits(&s->pb, 1, opt->eac3_info_metadata);
174  if (opt->eac3_info_metadata) {
175  put_bits(&s->pb, 3, s->bitstream_mode);
176  put_bits(&s->pb, 1, opt->copyright);
177  put_bits(&s->pb, 1, opt->original);
178  if (s->channel_mode == AC3_CHMODE_STEREO) {
179  put_bits(&s->pb, 2, opt->dolby_surround_mode);
180  put_bits(&s->pb, 2, opt->dolby_headphone_mode);
181  }
182  if (s->channel_mode >= AC3_CHMODE_2F2R)
183  put_bits(&s->pb, 2, opt->dolby_surround_ex_mode);
184  put_bits(&s->pb, 1, opt->audio_production_info);
185  if (opt->audio_production_info) {
186  put_bits(&s->pb, 5, opt->mixing_level - 80);
187  put_bits(&s->pb, 2, opt->room_type);
188  put_bits(&s->pb, 1, opt->ad_converter_type);
189  }
190  put_bits(&s->pb, 1, 0);
191  }
192  if (s->num_blocks != 6)
193  put_bits(&s->pb, 1, !(s->avctx->frame_num % 6)); /* converter sync flag */
194  put_bits(&s->pb, 1, 0); /* no additional bit stream info */
195 
196  /* frame header */
197  if (s->num_blocks == 6) {
198  put_bits(&s->pb, 1, !s->use_frame_exp_strategy); /* exponent strategy syntax */
199  put_bits(&s->pb, 1, 0); /* aht enabled = no */
200  }
201  put_bits(&s->pb, 2, 0); /* snr offset strategy = 1 */
202  put_bits(&s->pb, 1, 0); /* transient pre-noise processing enabled = no */
203  put_bits(&s->pb, 1, 0); /* block switch syntax enabled = no */
204  put_bits(&s->pb, 1, 0); /* dither flag syntax enabled = no */
205  put_bits(&s->pb, 1, 0); /* bit allocation model syntax enabled = no */
206  put_bits(&s->pb, 1, 0); /* fast gain codes enabled = no */
207  put_bits(&s->pb, 1, 0); /* dba syntax enabled = no */
208  put_bits(&s->pb, 1, 0); /* skip field syntax enabled = no */
209  put_bits(&s->pb, 1, 0); /* spx enabled = no */
210  /* coupling strategy use flags */
211  if (s->channel_mode > AC3_CHMODE_MONO) {
212  put_bits(&s->pb, 1, s->blocks[0].cpl_in_use);
213  for (blk = 1; blk < s->num_blocks; blk++) {
214  AC3Block *block = &s->blocks[blk];
215  put_bits(&s->pb, 1, block->new_cpl_strategy);
216  if (block->new_cpl_strategy)
217  put_bits(&s->pb, 1, block->cpl_in_use);
218  }
219  }
220  /* exponent strategy */
221  if (s->use_frame_exp_strategy) {
222  for (ch = !s->cpl_on; ch <= s->fbw_channels; ch++)
223  put_bits(&s->pb, 5, s->frame_exp_strategy[ch]);
224  } else {
225  for (blk = 0; blk < s->num_blocks; blk++)
226  for (ch = !s->blocks[blk].cpl_in_use; ch <= s->fbw_channels; ch++)
227  put_bits(&s->pb, 2, s->exp_strategy[ch][blk]);
228  }
229  if (s->lfe_on) {
230  for (blk = 0; blk < s->num_blocks; blk++)
231  put_bits(&s->pb, 1, s->exp_strategy[s->lfe_channel][blk]);
232  }
233  /* E-AC-3 to AC-3 converter exponent strategy (not optional when num blocks == 6) */
234  if (s->num_blocks != 6) {
235  put_bits(&s->pb, 1, 0);
236  } else {
237  for (ch = 1; ch <= s->fbw_channels; ch++) {
238  if (s->use_frame_exp_strategy)
239  put_bits(&s->pb, 5, s->frame_exp_strategy[ch]);
240  else
241  put_bits(&s->pb, 5, 0);
242  }
243  }
244  /* snr offsets */
245  put_bits(&s->pb, 6, s->coarse_snr_offset);
246  put_bits(&s->pb, 4, s->fine_snr_offset[1]);
247  /* block start info */
248  if (s->num_blocks > 1)
249  put_bits(&s->pb, 1, 0);
250 }
251 
253 {
254  static AVOnce init_static_once = AV_ONCE_INIT;
255  AC3EncodeContext *s = avctx->priv_data;
256 
257  s->eac3 = 1;
258  s->output_frame_header = eac3_output_frame_header;
259 
260  ff_thread_once(&init_static_once, eac3_exponent_init);
261 
262  return ff_ac3_float_encode_init(avctx);
263 }
264 
266  .p.name = "eac3",
267  CODEC_LONG_NAME("ATSC A/52 E-AC-3"),
268  .p.type = AVMEDIA_TYPE_AUDIO,
269  .p.id = AV_CODEC_ID_EAC3,
271  .priv_data_size = sizeof(AC3EncodeContext),
274  .close = ff_ac3_encode_close,
275  .p.sample_fmts = (const enum AVSampleFormat[]){ AV_SAMPLE_FMT_FLTP,
277  .p.priv_class = &eac3enc_class,
278  .p.supported_samplerates = ff_ac3_sample_rate_tab,
279  .p.ch_layouts = ff_ac3_ch_layouts,
280  .defaults = ff_ac3_enc_defaults,
281  .caps_internal = FF_CODEC_CAP_INIT_CLEANUP,
282 };
AV_SAMPLE_FMT_FLTP
@ AV_SAMPLE_FMT_FLTP
float, planar
Definition: samplefmt.h:66
AC3EncOptions::mixing_level
int mixing_level
Definition: ac3enc.h:102
FF_CODEC_CAP_INIT_CLEANUP
#define FF_CODEC_CAP_INIT_CLEANUP
The codec allows calling the close function for deallocation even if the init function returned a fai...
Definition: codec_internal.h:42
AC3EncOptions::dolby_headphone_mode
int dolby_headphone_mode
Definition: ac3enc.h:114
ff_eac3_frm_expstr
const uint8_t ff_eac3_frm_expstr[32][6]
Table E2.14 Frame Exponent Strategy Combinations.
Definition: eac3_data.c:1064
thread.h
AC3EncOptions::dialogue_level
int dialogue_level
Definition: ac3enc.h:96
put_bits
static void put_bits(Jpeg2000EncoderContext *s, int val, int n)
put n times val bit
Definition: j2kenc.c:223
AC3EncOptions::dolby_surround_mode
int dolby_surround_mode
Definition: ac3enc.h:100
FFCodec
Definition: codec_internal.h:127
ff_ac3_encode_frame
int ff_ac3_encode_frame(AVCodecContext *avctx, AVPacket *avpkt, const AVFrame *frame, int *got_packet_ptr)
Definition: ac3enc.c:1984
ff_eac3_get_frame_exp_strategy
void ff_eac3_get_frame_exp_strategy(AC3EncodeContext *s)
Determine frame exponent strategy use and indices.
Definition: eac3enc.c:70
eac3enc_class
static const AVClass eac3enc_class
Definition: eac3enc.c:37
ff_eac3_set_cpl_states
void ff_eac3_set_cpl_states(AC3EncodeContext *s)
Set coupling states.
Definition: eac3enc.c:97
ff_ac3_enc_options
const AVOption ff_ac3_enc_options[]
Definition: ac3enc.c:84
FFCodec::p
AVCodec p
The public AVCodec.
Definition: codec_internal.h:131
ff_ac3_float_encode_init
int ff_ac3_float_encode_init(AVCodecContext *avctx)
Definition: ac3enc_float.c:97
eac3_exponent_init
static av_cold void eac3_exponent_init(void)
Initialize E-AC-3 exponent tables.
Definition: eac3enc.c:54
FF_CODEC_ENCODE_CB
#define FF_CODEC_ENCODE_CB(func)
Definition: codec_internal.h:296
eac3_frame_expstr_index_tab
static int8_t eac3_frame_expstr_index_tab[3][4][4][4][4][4]
LUT for finding a matching frame exponent strategy index from a set of exponent strategies for a sing...
Definition: eac3enc.c:48
ff_ac3_ch_layouts
const AVChannelLayout ff_ac3_ch_layouts[19]
List of supported channel layouts.
Definition: ac3enc.c:156
ff_thread_once
static int ff_thread_once(char *control, void(*routine)(void))
Definition: thread.h:205
AC3EncOptions::eac3_mixing_metadata
int eac3_mixing_metadata
Definition: ac3enc.h:116
av_cold
#define av_cold
Definition: attributes.h:90
s
#define s(width, name)
Definition: cbs_vp9.c:198
AVMEDIA_TYPE_AUDIO
@ AVMEDIA_TYPE_AUDIO
Definition: avutil.h:202
eac3_data.h
AV_CODEC_CAP_ENCODER_REORDERED_OPAQUE
#define AV_CODEC_CAP_ENCODER_REORDERED_OPAQUE
This encoder can reorder user opaque values from input AVFrames and return them with corresponding ou...
Definition: codec.h:159
AC3EncOptions::audio_production_info
int audio_production_info
Definition: ac3enc.h:101
blk
#define blk(i)
Definition: sha.c:186
CODEC_LONG_NAME
#define CODEC_LONG_NAME(str)
Definition: codec_internal.h:272
LIBAVUTIL_VERSION_INT
#define LIBAVUTIL_VERSION_INT
Definition: version.h:85
AV_ONCE_INIT
#define AV_ONCE_INIT
Definition: thread.h:203
AC3EncOptions::ad_converter_type
int ad_converter_type
Definition: ac3enc.h:115
AVClass
Describe the class of an AVClass context structure.
Definition: log.h:66
ac3enc.h
av_default_item_name
const char * av_default_item_name(void *ptr)
Return the context name.
Definition: log.c:237
AC3EncodeContext
AC-3 encoder private context.
Definition: ac3enc.h:157
AC3_MAX_CHANNELS
#define AC3_MAX_CHANNELS
maximum number of channels, including coupling channel
Definition: ac3defs.h:26
AC3EncOptions::copyright
int copyright
Definition: ac3enc.h:104
AVOnce
#define AVOnce
Definition: thread.h:202
AC3Block
Data for a single audio block.
Definition: ac3enc.h:129
ff_eac3_encoder
const FFCodec ff_eac3_encoder
Definition: eac3enc.c:265
AV_CODEC_ID_EAC3
@ AV_CODEC_ID_EAC3
Definition: codec_id.h:480
init
int(* init)(AVBSFContext *ctx)
Definition: dts2pts.c:366
AV_CODEC_CAP_DR1
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() or get_encode_buffer() for allocating buffers and supports custom allocators.
Definition: codec.h:52
AC3_CHMODE_STEREO
@ AC3_CHMODE_STEREO
Definition: ac3defs.h:57
AC3EncOptions::eac3_info_metadata
int eac3_info_metadata
Definition: ac3enc.h:117
AC3EncOptions::dolby_surround_ex_mode
int dolby_surround_ex_mode
Definition: ac3enc.h:113
codec_internal.h
AV_SAMPLE_FMT_NONE
@ AV_SAMPLE_FMT_NONE
Definition: samplefmt.h:56
eac3_encode_init
static av_cold int eac3_encode_init(AVCodecContext *avctx)
Definition: eac3enc.c:252
AC3EncOptions::room_type
int room_type
Definition: ac3enc.h:103
AC3EncOptions
Encoding Options used by AVOption.
Definition: ac3enc.h:94
attributes.h
eac3enc.h
ff_ac3_sample_rate_tab
const int ff_ac3_sample_rate_tab[]
Definition: ac3tab.c:95
i
#define i(width, name, range_min, range_max)
Definition: cbs_h2645.c:256
AVSampleFormat
AVSampleFormat
Audio sample formats.
Definition: samplefmt.h:55
AC3EncOptions::original
int original
Definition: ac3enc.h:105
AVCodec::name
const char * name
Name of the codec implementation.
Definition: codec.h:194
AC3_CHMODE_MONO
@ AC3_CHMODE_MONO
Definition: ac3defs.h:56
AVClass::class_name
const char * class_name
The name of the class; usually it is the same name as the context structure type to which the AVClass...
Definition: log.h:71
AC3_CHMODE_2F2R
@ AC3_CHMODE_2F2R
Definition: ac3defs.h:61
AC3EncOptions::preferred_stereo_downmix
int preferred_stereo_downmix
Definition: ac3enc.h:107
AVCodecContext
main external API structure.
Definition: avcodec.h:445
ff_ac3_enc_defaults
const FFCodecDefault ff_ac3_enc_defaults[]
Definition: ac3enc.c:141
AVCodecContext::priv_data
void * priv_data
Definition: avcodec.h:472
eac3_output_frame_header
static void eac3_output_frame_header(AC3EncodeContext *s)
Write the E-AC-3 frame header to the output bitstream.
Definition: eac3enc.c:132
ff_ac3_encode_close
av_cold int ff_ac3_encode_close(AVCodecContext *avctx)
Finalize encoding and free any memory allocated by the encoder.
Definition: ac3enc.c:2157
block
The exact code depends on how similar the blocks are and how related they are to the block
Definition: filter_design.txt:207