35     { 
"drc_scale", 
"percentage of dynamic range compression to apply", 
OFFSET(drc_scale), 
AV_OPT_TYPE_FLOAT, {.dbl = 1.0}, 0.0, 6.0, 
PAR },
 
   36     { 
"heavy_compr", 
"enable heavy dynamic range compression", 
OFFSET(heavy_compression), 
AV_OPT_TYPE_BOOL, {.i64 = 0 }, 0, 1, 
PAR },
 
   37     { 
"target_level", 
"target level in -dBFS (0 not applied)", 
OFFSET(target_level), 
AV_OPT_TYPE_INT, {.i64 = 0 }, -31, 0, 
PAR },
 
   39 {
"dmix_mode", 
"Preferred Stereo Downmix Mode", 
OFFSET(preferred_stereo_downmix), 
AV_OPT_TYPE_INT, {.i64 = -1 }, -1, 2, 0, 
"dmix_mode"},
 
   40 {
"ltrt_cmixlev",   
"Lt/Rt Center Mix Level",   
OFFSET(ltrt_center_mix_level),    
AV_OPT_TYPE_FLOAT, {.dbl = -1.0 }, -1.0, 2.0, 0},
 
   41 {
"ltrt_surmixlev", 
"Lt/Rt Surround Mix Level", 
OFFSET(ltrt_surround_mix_level),  
AV_OPT_TYPE_FLOAT, {.dbl = -1.0 }, -1.0, 2.0, 0},
 
   42 {
"loro_cmixlev",   
"Lo/Ro Center Mix Level",   
OFFSET(loro_center_mix_level),    
AV_OPT_TYPE_FLOAT, {.dbl = -1.0 }, -1.0, 2.0, 0},
 
   43 {
"loro_surmixlev", 
"Lo/Ro Surround Mix Level", 
OFFSET(loro_surround_mix_level),  
AV_OPT_TYPE_FLOAT, {.dbl = -1.0 }, -1.0, 2.0, 0},
 
   70 #if CONFIG_EAC3_DECODER 
   71 static const AVClass eac3_decoder_class = {
 
   90     .priv_class     = &eac3_decoder_class,
 
#define LIBAVUTIL_VERSION_INT
 
static av_cold int init(AVCodecContext *avctx)
 
const char * class_name
The name of the class; usually it is the same name as the context structure type to which the AVClass...
 
static av_cold int ac3_decode_end(AVCodecContext *avctx)
Uninitialize the AC-3 decoder. 
 
Common code between the AC-3 and E-AC-3 decoders. 
 
static const AVOption options[]
Upmix delay samples from stereo to original channel layout. 
 
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
 
const char * name
Name of the codec implementation. 
 
static int ac3_decode_frame(AVCodecContext *avctx, void *data, int *got_frame_ptr, AVPacket *avpkt)
Decode a single AC-3 frame. 
 
AVSampleFormat
Audio sample formats. 
 
Describe the class of an AVClass context structure. 
 
static const AVClass ac3_decoder_class
 
static int decode(AVCodecContext *avctx, void *data, int *got_sub, AVPacket *avpkt)
 
static av_cold int ac3_decode_init(AVCodecContext *avctx)
AVCodec initialization. 
 
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() for allocating buffers and supports custom allocators.