#include <stdint.h>
#include "libavutil/avutil.h"
Go to the source code of this file.
Defines | |
#define | sample_type int16_t |
#define | FSUF SAMPLE_SIZE |
#define | sample sample_type |
#define | OUT(n) n[0] |
#define | S(s, c, i) (*s++) |
#define | FUNC(n) AV_JOIN(n ## _, FSUF) |
Functions | |
static void FUNC() | flac_decorrelate_indep_c (uint8_t **out, int32_t **in, int channels, int len, int shift) |
static void FUNC() | flac_decorrelate_ls_c (uint8_t **out, int32_t **in, int channels, int len, int shift) |
static void FUNC() | flac_decorrelate_rs_c (uint8_t **out, int32_t **in, int channels, int len, int shift) |
static void FUNC() | flac_decorrelate_ms_c (uint8_t **out, int32_t **in, int channels, int len, int shift) |
#define FSUF SAMPLE_SIZE |
Definition at line 43 of file flacdsp_template.c.
#define FUNC | ( | n | ) | AV_JOIN(n ## _, FSUF) |
Definition at line 49 of file flacdsp_template.c.
#define OUT | ( | n | ) | n[0] |
Definition at line 45 of file flacdsp_template.c.
Referenced by flac_decorrelate_indep_c(), flac_decorrelate_ls_c(), flac_decorrelate_ms_c(), flac_decorrelate_rs_c(), print_formats(), resample_one(), and swri_resample_TMPL().
Definition at line 46 of file flacdsp_template.c.
#define sample sample_type |
Definition at line 44 of file flacdsp_template.c.
Referenced by adpcm_compress_trellis(), adpcm_decode_frame(), decode_frame(), dnxhd_mb_var_thread(), encode_frame(), film_read_packet(), find_sample_match(), flac_decorrelate_indep_c(), flac_decorrelate_ls_c(), flac_decorrelate_ms_c(), flac_decorrelate_rs_c(), ipvideo_decode_block_opcode_0xF(), modplug_load_metadata(), mov_find_next_sample(), mov_read_chapters(), mov_read_packet(), mov_read_seek(), mov_seek_stream(), mxf_get_d10_aes3_packet(), mxf_write_d10_audio_packet(), output_data(), rl2_read_packet(), sample_queue_retain(), scalarproduct(), and ws_snd_decode_frame().
#define sample_type int16_t |
Definition at line 34 of file flacdsp_template.c.
static void FUNC() flac_decorrelate_indep_c | ( | uint8_t ** | out, | |
int32_t ** | in, | |||
int | channels, | |||
int | len, | |||
int | shift | |||
) | [static] |
Definition at line 51 of file flacdsp_template.c.
static void FUNC() flac_decorrelate_ls_c | ( | uint8_t ** | out, | |
int32_t ** | in, | |||
int | channels, | |||
int | len, | |||
int | shift | |||
) | [static] |
Definition at line 62 of file flacdsp_template.c.
static void FUNC() flac_decorrelate_ms_c | ( | uint8_t ** | out, | |
int32_t ** | in, | |||
int | channels, | |||
int | len, | |||
int | shift | |||
) | [static] |
Definition at line 90 of file flacdsp_template.c.
static void FUNC() flac_decorrelate_rs_c | ( | uint8_t ** | out, | |
int32_t ** | in, | |||
int | channels, | |||
int | len, | |||
int | shift | |||
) | [static] |
Definition at line 76 of file flacdsp_template.c.