FFmpeg
|
#include "avcodec.h"
Go to the source code of this file.
Data Structures | |
struct | FmtConvertContext |
Functions | |
void | ff_fmt_convert_init (FmtConvertContext *c, AVCodecContext *avctx) |
void | ff_fmt_convert_init_arm (FmtConvertContext *c, AVCodecContext *avctx) |
void | ff_fmt_convert_init_ppc (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_fmt_convert_init | ( | FmtConvertContext * | c, |
AVCodecContext * | avctx | ||
) |
Definition at line 44 of file fmtconvert.c.
Referenced by ac3_decode_init(), and dca_decode_init().
void ff_fmt_convert_init_arm | ( | FmtConvertContext * | c, |
AVCodecContext * | avctx | ||
) |
Definition at line 37 of file fmtconvert_init_arm.c.
Referenced by ff_fmt_convert_init().
void ff_fmt_convert_init_ppc | ( | FmtConvertContext * | c, |
AVCodecContext * | avctx | ||
) |
Definition at line 57 of file fmtconvert_altivec.c.
Referenced by ff_fmt_convert_init().
void ff_fmt_convert_init_x86 | ( | FmtConvertContext * | c, |
AVCodecContext * | avctx | ||
) |
Definition at line 42 of file fmtconvert_init.c.
Referenced by ff_fmt_convert_init().
void ff_fmt_convert_init_mips | ( | FmtConvertContext * | c | ) |
Definition at line 136 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 56 of file fmtconvert.c.
void float_interleave_noscale | ( | float * | dst, |
const float ** | src, | ||
long | len, | ||
int | channels | ||
) |
Definition at line 71 of file fmtconvert.c.