FFmpeg
|
Go to the source code of this file.
Macros | |
#define | FUNC(n) AV_JOIN(n ## _, SAMPLE_SIZE) |
#define | sum_type int32_t |
#define | MUL(a, b) ((a) * (b)) |
#define | CLIP(x) (x) |
#define | LPC1(x) |
Functions | |
static av_always_inline void FUNC() | lpc_encode_unrolled (int32_t *res, const int32_t *smp, int len, int order, const int32_t *coefs, int shift, int big) |
static void FUNC() | flac_lpc_encode_c (int32_t *res, const int32_t *smp, int len, int order, const int32_t *coefs, int shift) |
#define FUNC | ( | n | ) | AV_JOIN(n ## _, SAMPLE_SIZE) |
Definition at line 29 of file flacdsp_lpc_template.c.
Referenced by flac_lpc_encode_c().
#define sum_type int32_t |
Definition at line 36 of file flacdsp_lpc_template.c.
Referenced by flac_lpc_encode_c(), and lpc_encode_unrolled().
Definition at line 37 of file flacdsp_lpc_template.c.
Referenced by flac_lpc_encode_c(), and idctRowCondDC().
#define CLIP | ( | x | ) | (x) |
Definition at line 38 of file flacdsp_lpc_template.c.
Referenced by flac_lpc_encode_c(), and lpc_encode_unrolled().
#define LPC1 | ( | x | ) |
Definition at line 41 of file flacdsp_lpc_template.c.
Referenced by lpc_encode_unrolled().
|
static |
Definition at line 48 of file flacdsp_lpc_template.c.
Referenced by flac_lpc_encode_c().