FFmpeg
|
#include "avcodec.h"
Go to the source code of this file.
Data Structures | |
struct | FmtConvertContext |
Functions | |
void | ff_float_interleave_c (float *dst, const float **src, unsigned int len, int channels) |
void | ff_fmt_convert_init (FmtConvertContext *c, AVCodecContext *avctx) |
void | ff_fmt_convert_init_arm (FmtConvertContext *c, AVCodecContext *avctx) |
void | ff_fmt_convert_init_altivec (FmtConvertContext *c, AVCodecContext *avctx) |
void | ff_fmt_convert_init_x86 (FmtConvertContext *c, AVCodecContext *avctx) |
void | ff_fmt_convert_init_mips (FmtConvertContext *c) |
void | float_interleave (float *dst, const float **src, long len, int channels) |
void | float_interleave_noscale (float *dst, const float **src, long len, int channels) |
void ff_float_interleave_c | ( | float * | dst, |
const float ** | src, | ||
unsigned int | len, | ||
int | channels | ||
) |
Definition at line 60 of file fmtconvert.c.
Referenced by ff_fmt_convert_init().
void ff_fmt_convert_init | ( | FmtConvertContext * | c, |
AVCodecContext * | avctx | ||
) |
Definition at line 79 of file fmtconvert.c.
Referenced by aac_decode_init(), ac3_decode_init(), atrac3_decode_init(), dca_decode_init(), ff_wma_init(), and vorbis_decode_init().
void ff_fmt_convert_init_arm | ( | FmtConvertContext * | c, |
AVCodecContext * | avctx | ||
) |
Definition at line 36 of file fmtconvert_init_arm.c.
Referenced by ff_fmt_convert_init().
void ff_fmt_convert_init_altivec | ( | FmtConvertContext * | c, |
AVCodecContext * | avctx | ||
) |
Definition at line 159 of file fmtconvert_altivec.c.
Referenced by ff_fmt_convert_init().
void ff_fmt_convert_init_x86 | ( | FmtConvertContext * | c, |
AVCodecContext * | avctx | ||
) |
Definition at line 116 of file fmtconvert_init.c.
Referenced by ff_fmt_convert_init().
void ff_fmt_convert_init_mips | ( | FmtConvertContext * | c | ) |
Definition at line 333 of file fmtconvert_mips.c.
Referenced by ff_fmt_convert_init().
void float_interleave | ( | float * | dst, |
const float ** | src, | ||
long | len, | ||
int | channels | ||
) |
Definition at line 93 of file fmtconvert.c.
void float_interleave_noscale | ( | float * | dst, |
const float ** | src, | ||
long | len, | ||
int | channels | ||
) |
Definition at line 108 of file fmtconvert.c.