FFmpeg
Macros | Functions | Variables
ac3enc_fixed.c File Reference
#include "internal.h"
#include "audiodsp.h"
#include "ac3enc.h"
#include "eac3enc.h"
#include "ac3enc_opts_template.c"
#include "ac3enc_template.c"

Go to the source code of this file.

Macros

#define FFT_FLOAT   0
 
#define AC3ENC_TYPE   AC3ENC_TYPE_AC3_FIXED
 

Functions

static int normalize_samples (AC3EncodeContext *s)
 
static void scale_coefficients (AC3EncodeContext *s)
 
static void sum_square_butterfly (AC3EncodeContext *s, int64_t sum[4], const int32_t *coef0, const int32_t *coef1, int len)
 
static void clip_coefficients (AudioDSPContext *adsp, int32_t *coef, unsigned int len)
 
static CoefType calc_cpl_coord (CoefSumType energy_ch, CoefSumType energy_cpl)
 
av_cold void ff_ac3_fixed_mdct_end (AC3EncodeContext *s)
 Finalize MDCT and free allocated memory. More...
 
av_cold int ff_ac3_fixed_mdct_init (AC3EncodeContext *s)
 Initialize MDCT tables. More...
 
static av_cold int ac3_fixed_encode_init (AVCodecContext *avctx)
 

Variables

static const AVClass ac3enc_class
 
AVCodec ff_ac3_fixed_encoder
 

Detailed Description

fixed-point AC-3 encoder.

Definition in file ac3enc_fixed.c.

Macro Definition Documentation

◆ FFT_FLOAT

#define FFT_FLOAT   0

Definition at line 29 of file ac3enc_fixed.c.

◆ AC3ENC_TYPE

#define AC3ENC_TYPE   AC3ENC_TYPE_AC3_FIXED

Definition at line 36 of file ac3enc_fixed.c.

Function Documentation

◆ normalize_samples()

static int normalize_samples ( AC3EncodeContext s)
static

Definition at line 50 of file ac3enc_fixed.c.

Referenced by apply_mdct().

◆ scale_coefficients()

static void scale_coefficients ( AC3EncodeContext s)
static

Definition at line 64 of file ac3enc_fixed.c.

Referenced by encode_frame().

◆ sum_square_butterfly()

static void sum_square_butterfly ( AC3EncodeContext s,
int64_t  sum[4],
const int32_t coef0,
const int32_t coef1,
int  len 
)
static

Definition at line 77 of file ac3enc_fixed.c.

Referenced by compute_rematrixing_strategy().

◆ clip_coefficients()

static void clip_coefficients ( AudioDSPContext adsp,
int32_t coef,
unsigned int  len 
)
static

Definition at line 87 of file ac3enc_fixed.c.

Referenced by apply_channel_coupling(), and encode_frame().

◆ calc_cpl_coord()

static CoefType calc_cpl_coord ( CoefSumType  energy_ch,
CoefSumType  energy_cpl 
)
static

Definition at line 97 of file ac3enc_fixed.c.

Referenced by apply_channel_coupling().

◆ ff_ac3_fixed_mdct_end()

av_cold void ff_ac3_fixed_mdct_end ( AC3EncodeContext s)

Finalize MDCT and free allocated memory.

Parameters
sAC-3 encoder private context

Definition at line 118 of file ac3enc_fixed.c.

Referenced by ff_ac3_encode_init().

◆ ff_ac3_fixed_mdct_init()

av_cold int ff_ac3_fixed_mdct_init ( AC3EncodeContext s)

Initialize MDCT tables.

Parameters
sAC-3 encoder private context
Returns
0 on success, negative error code on failure

Definition at line 130 of file ac3enc_fixed.c.

Referenced by ff_ac3_encode_init().

◆ ac3_fixed_encode_init()

static av_cold int ac3_fixed_encode_init ( AVCodecContext avctx)
static

Definition at line 138 of file ac3enc_fixed.c.

Variable Documentation

◆ ac3enc_class

const AVClass ac3enc_class
static
Initial value:
= {
.class_name = "Fixed-Point AC-3 Encoder",
.item_name = av_default_item_name,
.option = ac3_options,
}

Definition at line 39 of file ac3enc_fixed.c.

◆ ff_ac3_fixed_encoder

AVCodec ff_ac3_fixed_encoder
Initial value:
= {
.name = "ac3_fixed",
.long_name = NULL_IF_CONFIG_SMALL("ATSC A/52A (AC-3)"),
.priv_data_size = sizeof(AC3EncodeContext),
.priv_class = &ac3enc_class,
.channel_layouts = ff_ac3_channel_layouts,
.defaults = ac3_defaults,
}

Definition at line 146 of file ac3enc_fixed.c.

AV_CODEC_ID_AC3
@ AV_CODEC_ID_AC3
Definition: avcodec.h:567
init
static av_cold int init(AVCodecContext *avctx)
Definition: avrndec.c:35
sample_fmts
static enum AVSampleFormat sample_fmts[]
Definition: adpcmenc.c:686
ac3_fixed_encode_init
static av_cold int ac3_fixed_encode_init(AVCodecContext *avctx)
Definition: ac3enc_fixed.c:138
ff_ac3_channel_layouts
const uint64_t ff_ac3_channel_layouts[19]
List of supported channel layouts.
Definition: ac3enc.c:81
AVMEDIA_TYPE_AUDIO
@ AVMEDIA_TYPE_AUDIO
Definition: avutil.h:202
LIBAVUTIL_VERSION_INT
#define LIBAVUTIL_VERSION_INT
Definition: version.h:85
av_default_item_name
const char * av_default_item_name(void *ptr)
Return the context name.
Definition: log.c:191
AC3EncodeContext
AC-3 encoder private context.
Definition: ac3enc.h:162
NULL_IF_CONFIG_SMALL
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Definition: internal.h:188
AV_SAMPLE_FMT_NONE
@ AV_SAMPLE_FMT_NONE
Definition: samplefmt.h:59
AV_SAMPLE_FMT_S16P
@ AV_SAMPLE_FMT_S16P
signed 16 bits, planar
Definition: samplefmt.h:67
ff_ac3_fixed_encode_frame
int ff_ac3_fixed_encode_frame(AVCodecContext *avctx, AVPacket *avpkt, const AVFrame *frame, int *got_packet_ptr)
ac3enc_class
static const AVClass ac3enc_class
Definition: ac3enc_fixed.c:39
AVSampleFormat
AVSampleFormat
Audio sample formats.
Definition: samplefmt.h:58
ac3_defaults
static const AVCodecDefault ac3_defaults[]
Definition: ac3enc_opts_template.c:79
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:2017
ac3_options
static const AVOption ac3_options[]
Definition: ac3enc_opts_template.c:26