Libav
Macros | Functions | Variables
ac3enc_fixed.c File Reference

fixed-point AC-3 encoder. More...

#include "internal.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

av_cold void AC3_NAME() mdct_end (AC3EncodeContext *s)
 Finalize MDCT and free allocated memory. More...
 
av_cold int AC3_NAME() mdct_init (AC3EncodeContext *s)
 Initialize MDCT tables. More...
 
static int normalize_samples (AC3EncodeContext *s)
 
static void scale_coefficients (AC3EncodeContext *s)
 
static void clip_coefficients (DSPContext *dsp, int32_t *coef, unsigned int len)
 
static CoefType calc_cpl_coord (CoefSumType energy_ch, CoefSumType energy_cpl)
 
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

#define FFT_FLOAT   0

Definition at line 29 of file ac3enc_fixed.c.

#define AC3ENC_TYPE   AC3ENC_TYPE_AC3_FIXED

Definition at line 35 of file ac3enc_fixed.c.

Function Documentation

av_cold void AC3_NAME() mdct_end ( AC3EncodeContext s)

Finalize MDCT and free allocated memory.

Parameters
sAC-3 encoder private context

Definition at line 48 of file ac3enc_fixed.c.

av_cold int AC3_NAME() 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 60 of file ac3enc_fixed.c.

static int normalize_samples ( AC3EncodeContext s)
static

Definition at line 72 of file ac3enc_fixed.c.

static void scale_coefficients ( AC3EncodeContext s)
static

Definition at line 86 of file ac3enc_fixed.c.

static void clip_coefficients ( DSPContext dsp,
int32_t coef,
unsigned int  len 
)
static

Definition at line 103 of file ac3enc_fixed.c.

static CoefType calc_cpl_coord ( CoefSumType  energy_ch,
CoefSumType  energy_cpl 
)
static

Definition at line 112 of file ac3enc_fixed.c.

static av_cold int ac3_fixed_encode_init ( AVCodecContext avctx)
static

Definition at line 125 of file ac3enc_fixed.c.

Variable Documentation

const AVClass ac3enc_class
static
Initial value:
= { "Fixed-Point AC-3 Encoder", av_default_item_name,
LIBAVUTIL_VERSION_INT
Definition: eval.c:55
av_default_item_name
Definition: dnxhdenc.c:45
static const AVOption ac3_options[]

Definition at line 37 of file ac3enc_fixed.c.

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,
}
static av_cold int ac3_fixed_encode_init(AVCodecContext *avctx)
Definition: ac3enc_fixed.c:125
av_cold int ff_ac3_encode_close(AVCodecContext *avctx)
Finalize encoding and free any memory allocated by the encoder.
Definition: ac3enc.c:2017
const uint64_t ff_ac3_channel_layouts[19]
List of supported channel layouts.
Definition: ac3enc.c:78
sample_fmts
Definition: avconv_filter.c:68
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:142
AV_SAMPLE_FMT_NONE
Definition: avconv_filter.c:68
static void close(AVCodecParserContext *s)
Definition: h264_parser.c:489
int ff_ac3_fixed_encode_frame(AVCodecContext *avctx, AVPacket *avpkt, const AVFrame *frame, int *got_packet_ptr)
static const AVCodecDefault ac3_defaults[]
AC-3 encoder private context.
Definition: ac3enc.h:157
static const AVClass ac3enc_class
Definition: ac3enc_fixed.c:37
AVSampleFormat
Audio Sample Formats.
Definition: samplefmt.h:49
static av_cold int init(AVCodecParserContext *s)
Definition: h264_parser.c:498
signed 16 bits, planar
Definition: samplefmt.h:58

Definition at line 133 of file ac3enc_fixed.c.