FFmpeg
Data Structures | Macros | Functions | Variables
alacenc.c File Reference
#include "libavutil/opt.h"
#include "avcodec.h"
#include "put_bits.h"
#include "internal.h"
#include "lpc.h"
#include "mathops.h"
#include "alac_data.h"

Go to the source code of this file.

Data Structures

struct  RiceContext
 
struct  AlacLPCContext
 
struct  AlacEncodeContext
 

Macros

#define DEFAULT_FRAME_SIZE   4096
 
#define ALAC_EXTRADATA_SIZE   36
 
#define ALAC_FRAME_HEADER_SIZE   55
 
#define ALAC_FRAME_FOOTER_SIZE   3
 
#define ALAC_ESCAPE_CODE   0x1FF
 
#define ALAC_MAX_LPC_ORDER   30
 
#define DEFAULT_MAX_PRED_ORDER   6
 
#define DEFAULT_MIN_PRED_ORDER   4
 
#define ALAC_MAX_LPC_PRECISION   9
 
#define ALAC_MIN_LPC_SHIFT   0
 
#define ALAC_MAX_LPC_SHIFT   9
 
#define ALAC_CHMODE_LEFT_RIGHT   0
 
#define ALAC_CHMODE_LEFT_SIDE   1
 
#define ALAC_CHMODE_RIGHT_SIDE   2
 
#define ALAC_CHMODE_MID_SIDE   3
 
#define COPY_SAMPLES(type)
 
#define OFFSET(x)   offsetof(AlacEncodeContext, x)
 
#define AE   AV_OPT_FLAG_AUDIO_PARAM | AV_OPT_FLAG_ENCODING_PARAM
 

Functions

static void init_sample_buffers (AlacEncodeContext *s, int channels, const uint8_t *samples[2])
 
static void encode_scalar (AlacEncodeContext *s, int x, int k, int write_sample_size)
 
static void write_element_header (AlacEncodeContext *s, enum AlacRawDataBlockType element, int instance)
 
static void calc_predictor_params (AlacEncodeContext *s, int ch)
 
static int estimate_stereo_mode (int32_t *left_ch, int32_t *right_ch, int n)
 
static void alac_stereo_decorrelation (AlacEncodeContext *s)
 
static void alac_linear_predictor (AlacEncodeContext *s, int ch)
 
static void alac_entropy_coder (AlacEncodeContext *s, int ch)
 
static void write_element (AlacEncodeContext *s, enum AlacRawDataBlockType element, int instance, const uint8_t *samples0, const uint8_t *samples1)
 
static int write_frame (AlacEncodeContext *s, AVPacket *avpkt, uint8_t *const *samples)
 
static av_always_inline int get_max_frame_size (int frame_size, int ch, int bps)
 
static av_cold int alac_encode_close (AVCodecContext *avctx)
 
static av_cold int alac_encode_init (AVCodecContext *avctx)
 
static int alac_encode_frame (AVCodecContext *avctx, AVPacket *avpkt, const AVFrame *frame, int *got_packet_ptr)
 

Variables

static const AVOption options []
 
static const AVClass alacenc_class
 
AVCodec ff_alac_encoder
 

Macro Definition Documentation

◆ DEFAULT_FRAME_SIZE

#define DEFAULT_FRAME_SIZE   4096

Definition at line 31 of file alacenc.c.

◆ ALAC_EXTRADATA_SIZE

#define ALAC_EXTRADATA_SIZE   36

Definition at line 32 of file alacenc.c.

◆ ALAC_FRAME_HEADER_SIZE

#define ALAC_FRAME_HEADER_SIZE   55

Definition at line 33 of file alacenc.c.

◆ ALAC_FRAME_FOOTER_SIZE

#define ALAC_FRAME_FOOTER_SIZE   3

Definition at line 34 of file alacenc.c.

◆ ALAC_ESCAPE_CODE

#define ALAC_ESCAPE_CODE   0x1FF

Definition at line 36 of file alacenc.c.

◆ ALAC_MAX_LPC_ORDER

#define ALAC_MAX_LPC_ORDER   30

Definition at line 37 of file alacenc.c.

◆ DEFAULT_MAX_PRED_ORDER

#define DEFAULT_MAX_PRED_ORDER   6

Definition at line 38 of file alacenc.c.

◆ DEFAULT_MIN_PRED_ORDER

#define DEFAULT_MIN_PRED_ORDER   4

Definition at line 39 of file alacenc.c.

◆ ALAC_MAX_LPC_PRECISION

#define ALAC_MAX_LPC_PRECISION   9

Definition at line 40 of file alacenc.c.

◆ ALAC_MIN_LPC_SHIFT

#define ALAC_MIN_LPC_SHIFT   0

Definition at line 41 of file alacenc.c.

◆ ALAC_MAX_LPC_SHIFT

#define ALAC_MAX_LPC_SHIFT   9

Definition at line 42 of file alacenc.c.

◆ ALAC_CHMODE_LEFT_RIGHT

#define ALAC_CHMODE_LEFT_RIGHT   0

Definition at line 44 of file alacenc.c.

◆ ALAC_CHMODE_LEFT_SIDE

#define ALAC_CHMODE_LEFT_SIDE   1

Definition at line 45 of file alacenc.c.

◆ ALAC_CHMODE_RIGHT_SIDE

#define ALAC_CHMODE_RIGHT_SIDE   2

Definition at line 46 of file alacenc.c.

◆ ALAC_CHMODE_MID_SIDE

#define ALAC_CHMODE_MID_SIDE   3

Definition at line 47 of file alacenc.c.

◆ COPY_SAMPLES

#define COPY_SAMPLES (   type)
Value:
do { \
for (ch = 0; ch < channels; ch++) { \
int32_t *bptr = s->sample_buf[ch]; \
const type *sptr = (const type *)samples[ch]; \
for (i = 0; i < s->frame_size; i++) \
bptr[i] = sptr[i] >> shift; \
} \
} while (0)

◆ OFFSET

#define OFFSET (   x)    offsetof(AlacEncodeContext, x)

Definition at line 644 of file alacenc.c.

◆ AE

Definition at line 645 of file alacenc.c.

Function Documentation

◆ init_sample_buffers()

static void init_sample_buffers ( AlacEncodeContext s,
int  channels,
const uint8_t samples[2] 
)
static

Definition at line 84 of file alacenc.c.

Referenced by write_element().

◆ encode_scalar()

static void encode_scalar ( AlacEncodeContext s,
int  x,
int  k,
int  write_sample_size 
)
static

Definition at line 106 of file alacenc.c.

Referenced by alac_entropy_coder().

◆ write_element_header()

static void write_element_header ( AlacEncodeContext s,
enum AlacRawDataBlockType  element,
int  instance 
)
static

Definition at line 134 of file alacenc.c.

Referenced by write_element().

◆ calc_predictor_params()

static void calc_predictor_params ( AlacEncodeContext s,
int  ch 
)
static

Definition at line 153 of file alacenc.c.

Referenced by write_element().

◆ estimate_stereo_mode()

static int estimate_stereo_mode ( int32_t left_ch,
int32_t right_ch,
int  n 
)
static

Definition at line 184 of file alacenc.c.

Referenced by alac_stereo_decorrelation().

◆ alac_stereo_decorrelation()

static void alac_stereo_decorrelation ( AlacEncodeContext s)
static

Definition at line 217 of file alacenc.c.

Referenced by write_element().

◆ alac_linear_predictor()

static void alac_linear_predictor ( AlacEncodeContext s,
int  ch 
)
static

Definition at line 257 of file alacenc.c.

Referenced by write_element().

◆ alac_entropy_coder()

static void alac_entropy_coder ( AlacEncodeContext s,
int  ch 
)
static

Definition at line 321 of file alacenc.c.

Referenced by write_element().

◆ write_element()

static void write_element ( AlacEncodeContext s,
enum AlacRawDataBlockType  element,
int  instance,
const uint8_t samples0,
const uint8_t samples1 
)
static

Definition at line 365 of file alacenc.c.

Referenced by write_frame().

◆ write_frame()

static int write_frame ( AlacEncodeContext s,
AVPacket avpkt,
uint8_t *const *  samples 
)
static

Definition at line 460 of file alacenc.c.

Referenced by alac_encode_frame().

◆ get_max_frame_size()

static av_always_inline int get_max_frame_size ( int  frame_size,
int  ch,
int  bps 
)
static

Definition at line 491 of file alacenc.c.

Referenced by alac_encode_frame(), and alac_encode_init().

◆ alac_encode_close()

static av_cold int alac_encode_close ( AVCodecContext avctx)
static

Definition at line 497 of file alacenc.c.

◆ alac_encode_init()

static av_cold int alac_encode_init ( AVCodecContext avctx)
static

Definition at line 504 of file alacenc.c.

◆ alac_encode_frame()

static int alac_encode_frame ( AVCodecContext avctx,
AVPacket avpkt,
const AVFrame frame,
int got_packet_ptr 
)
static

Definition at line 604 of file alacenc.c.

Variable Documentation

◆ options

const AVOption options[]
static
Initial value:
= {
{ "min_prediction_order", NULL, OFFSET(min_prediction_order), AV_OPT_TYPE_INT, { .i64 = DEFAULT_MIN_PRED_ORDER }, MIN_LPC_ORDER, ALAC_MAX_LPC_ORDER, AE },
{ "max_prediction_order", NULL, OFFSET(max_prediction_order), AV_OPT_TYPE_INT, { .i64 = DEFAULT_MAX_PRED_ORDER }, MIN_LPC_ORDER, ALAC_MAX_LPC_ORDER, AE },
{ NULL },
}

Definition at line 646 of file alacenc.c.

◆ alacenc_class

const AVClass alacenc_class
static
Initial value:
= {
.class_name = "alacenc",
.item_name = av_default_item_name,
.option = options,
}

Definition at line 653 of file alacenc.c.

◆ ff_alac_encoder

AVCodec ff_alac_encoder
Initial value:
= {
.name = "alac",
.long_name = NULL_IF_CONFIG_SMALL("ALAC (Apple Lossless Audio Codec)"),
.priv_data_size = sizeof(AlacEncodeContext),
.priv_class = &alacenc_class,
.encode2 = alac_encode_frame,
}

Definition at line 660 of file alacenc.c.

OFFSET
#define OFFSET(x)
Definition: alacenc.c:644
init
static av_cold int init(AVCodecContext *avctx)
Definition: avrndec.c:31
DEFAULT_MIN_PRED_ORDER
#define DEFAULT_MIN_PRED_ORDER
Definition: alacenc.c:39
sample_fmts
static enum AVSampleFormat sample_fmts[]
Definition: adpcmenc.c:925
alac_encode_init
static av_cold int alac_encode_init(AVCodecContext *avctx)
Definition: alacenc.c:504
AV_SAMPLE_FMT_S32P
@ AV_SAMPLE_FMT_S32P
signed 32 bits, planar
Definition: samplefmt.h:68
AV_CODEC_ID_ALAC
@ AV_CODEC_ID_ALAC
Definition: codec_id.h:440
DEFAULT_MAX_PRED_ORDER
#define DEFAULT_MAX_PRED_ORDER
Definition: alacenc.c:38
type
it s the only field you need to keep assuming you have a context There is some magic you don t need to care about around this just let it vf type
Definition: writing_filters.txt:86
alacenc_class
static const AVClass alacenc_class
Definition: alacenc.c:653
alac_encode_frame
static int alac_encode_frame(AVCodecContext *avctx, AVPacket *avpkt, const AVFrame *frame, int *got_packet_ptr)
Definition: alacenc.c:604
s
#define s(width, name)
Definition: cbs_vp9.c:257
AVMEDIA_TYPE_AUDIO
@ AVMEDIA_TYPE_AUDIO
Definition: avutil.h:202
channels
channels
Definition: aptx.h:33
LIBAVUTIL_VERSION_INT
#define LIBAVUTIL_VERSION_INT
Definition: version.h:85
NULL
#define NULL
Definition: coverity.c:32
av_default_item_name
const char * av_default_item_name(void *ptr)
Return the context name.
Definition: log.c:235
AE
#define AE
Definition: alacenc.c:645
options
static const AVOption options[]
Definition: alacenc.c:646
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:117
AV_SAMPLE_FMT_NONE
@ AV_SAMPLE_FMT_NONE
Definition: samplefmt.h:59
MIN_LPC_ORDER
#define MIN_LPC_ORDER
Definition: lpc.h:37
AV_SAMPLE_FMT_S16P
@ AV_SAMPLE_FMT_S16P
signed 16 bits, planar
Definition: samplefmt.h:67
ALAC_MAX_LPC_ORDER
#define ALAC_MAX_LPC_ORDER
Definition: alacenc.c:37
i
int i
Definition: input.c:407
AVSampleFormat
AVSampleFormat
Audio sample formats.
Definition: samplefmt.h:58
ff_alac_channel_layouts
const uint64_t ff_alac_channel_layouts[ALAC_MAX_CHANNELS+1]
Definition: alac_data.c:35
AV_OPT_TYPE_INT
@ AV_OPT_TYPE_INT
Definition: opt.h:225
samples
Filter the word “frame” indicates either a video frame or a group of audio samples
Definition: filter_design.txt:8
shift
static int shift(int a, int b)
Definition: sonic.c:82
alac_encode_close
static av_cold int alac_encode_close(AVCodecContext *avctx)
Definition: alacenc.c:497
channel_layouts
static const uint16_t channel_layouts[7]
Definition: dca_lbr.c:114
AlacEncodeContext
Definition: alacenc.c:62
AV_CODEC_CAP_SMALL_LAST_FRAME
#define AV_CODEC_CAP_SMALL_LAST_FRAME
Codec can be fed a final frame with a smaller size.
Definition: codec.h:82