FFmpeg
|
#include "config.h"
#include "libavutil/cpu.h"
#include "libavutil/x86/cpu.h"
#include "libavresample/audio_convert.h"
Go to the source code of this file.
Functions | |
void | ff_conv_s16_to_s32_sse2 (int16_t *dst, const int32_t *src, int len) |
void | ff_conv_s16_to_flt_sse2 (float *dst, const int16_t *src, int len) |
void | ff_conv_s16_to_flt_sse4 (float *dst, const int16_t *src, int len) |
void | ff_conv_s32_to_s16_mmx (int16_t *dst, const int32_t *src, int len) |
void | ff_conv_s32_to_s16_sse2 (int16_t *dst, const int32_t *src, int len) |
void | ff_conv_s32_to_flt_sse2 (float *dst, const int32_t *src, int len) |
void | ff_conv_s32_to_flt_avx (float *dst, const int32_t *src, int len) |
void | ff_conv_flt_to_s16_sse2 (int16_t *dst, const float *src, int len) |
void | ff_conv_flt_to_s32_sse2 (int32_t *dst, const float *src, int len) |
void | ff_conv_flt_to_s32_avx (int32_t *dst, const float *src, int len) |
void | ff_conv_s16p_to_s16_2ch_sse2 (int16_t *dst, int16_t *const *src, int len, int channels) |
void | ff_conv_s16p_to_s16_2ch_avx (int16_t *dst, int16_t *const *src, int len, int channels) |
void | ff_conv_s16p_to_s16_6ch_sse2 (int16_t *dst, int16_t *const *src, int len, int channels) |
void | ff_conv_s16p_to_s16_6ch_sse2slow (int16_t *dst, int16_t *const *src, int len, int channels) |
void | ff_conv_s16p_to_s16_6ch_avx (int16_t *dst, int16_t *const *src, int len, int channels) |
void | ff_conv_s16p_to_flt_2ch_sse2 (float *dst, int16_t *const *src, int len, int channels) |
void | ff_conv_s16p_to_flt_2ch_avx (float *dst, int16_t *const *src, int len, int channels) |
void | ff_conv_s16p_to_flt_6ch_sse2 (float *dst, int16_t *const *src, int len, int channels) |
void | ff_conv_s16p_to_flt_6ch_ssse3 (float *dst, int16_t *const *src, int len, int channels) |
void | ff_conv_s16p_to_flt_6ch_avx (float *dst, int16_t *const *src, int len, int channels) |
void | ff_conv_fltp_to_s16_2ch_sse2 (int16_t *dst, float *const *src, int len, int channels) |
void | ff_conv_fltp_to_s16_2ch_ssse3 (int16_t *dst, float *const *src, int len, int channels) |
void | ff_conv_fltp_to_s16_6ch_sse (int16_t *dst, float *const *src, int len, int channels) |
void | ff_conv_fltp_to_s16_6ch_sse2 (int16_t *dst, float *const *src, int len, int channels) |
void | ff_conv_fltp_to_s16_6ch_avx (int16_t *dst, float *const *src, int len, int channels) |
void | ff_conv_fltp_to_flt_2ch_sse (float *dst, float *const *src, int len, int channels) |
void | ff_conv_fltp_to_flt_2ch_avx (float *dst, float *const *src, int len, int channels) |
void | ff_conv_fltp_to_flt_6ch_mmx (float *dst, float *const *src, int len, int channels) |
void | ff_conv_fltp_to_flt_6ch_sse4 (float *dst, float *const *src, int len, int channels) |
void | ff_conv_fltp_to_flt_6ch_avx (float *dst, float *const *src, int len, int channels) |
void | ff_conv_s16_to_s16p_2ch_sse2 (int16_t *const *dst, int16_t *src, int len, int channels) |
void | ff_conv_s16_to_s16p_2ch_ssse3 (int16_t *const *dst, int16_t *src, int len, int channels) |
void | ff_conv_s16_to_s16p_2ch_avx (int16_t *const *dst, int16_t *src, int len, int channels) |
void | ff_conv_s16_to_s16p_6ch_sse2 (int16_t *const *dst, int16_t *src, int len, int channels) |
void | ff_conv_s16_to_s16p_6ch_ssse3 (int16_t *const *dst, int16_t *src, int len, int channels) |
void | ff_conv_s16_to_s16p_6ch_avx (int16_t *const *dst, int16_t *src, int len, int channels) |
void | ff_conv_s16_to_fltp_2ch_sse2 (float *const *dst, int16_t *src, int len, int channels) |
void | ff_conv_s16_to_fltp_2ch_avx (float *const *dst, int16_t *src, int len, int channels) |
void | ff_conv_s16_to_fltp_6ch_sse2 (float *const *dst, int16_t *src, int len, int channels) |
void | ff_conv_s16_to_fltp_6ch_ssse3 (float *const *dst, int16_t *src, int len, int channels) |
void | ff_conv_s16_to_fltp_6ch_sse4 (float *const *dst, int16_t *src, int len, int channels) |
void | ff_conv_s16_to_fltp_6ch_avx (float *const *dst, int16_t *src, int len, int channels) |
void | ff_conv_flt_to_s16p_2ch_sse2 (int16_t *const *dst, float *src, int len, int channels) |
void | ff_conv_flt_to_s16p_2ch_avx (int16_t *const *dst, float *src, int len, int channels) |
void | ff_conv_flt_to_s16p_6ch_sse2 (int16_t *const *dst, float *src, int len, int channels) |
void | ff_conv_flt_to_s16p_6ch_ssse3 (int16_t *const *dst, float *src, int len, int channels) |
void | ff_conv_flt_to_s16p_6ch_avx (int16_t *const *dst, float *src, int len, int channels) |
void | ff_conv_flt_to_fltp_2ch_sse (float *const *dst, float *src, int len, int channels) |
void | ff_conv_flt_to_fltp_2ch_avx (float *const *dst, float *src, int len, int channels) |
void | ff_conv_flt_to_fltp_6ch_sse2 (float *const *dst, float *src, int len, int channels) |
void | ff_conv_flt_to_fltp_6ch_avx (float *const *dst, float *src, int len, int channels) |
av_cold void | ff_audio_convert_init_x86 (AudioConvert *ac) |
Referenced by ff_audio_convert_init_x86().
void ff_conv_s16_to_flt_sse2 | ( | float * | dst, |
const int16_t * | src, | ||
int | len | ||
) |
Referenced by ff_audio_convert_init_x86().
void ff_conv_s16_to_flt_sse4 | ( | float * | dst, |
const int16_t * | src, | ||
int | len | ||
) |
Referenced by ff_audio_convert_init_x86().
Referenced by ff_audio_convert_init_x86().
Referenced by ff_audio_convert_init_x86().
Referenced by ff_audio_convert_init_x86().
Referenced by ff_audio_convert_init_x86().
void ff_conv_flt_to_s16_sse2 | ( | int16_t * | dst, |
const float * | src, | ||
int | len | ||
) |
Referenced by ff_audio_convert_init_x86().
Referenced by ff_audio_convert_init_x86().
Referenced by ff_audio_convert_init_x86().
void ff_conv_s16p_to_s16_2ch_sse2 | ( | int16_t * | dst, |
int16_t *const * | src, | ||
int | len, | ||
int | channels | ||
) |
Referenced by ff_audio_convert_init_x86().
void ff_conv_s16p_to_s16_2ch_avx | ( | int16_t * | dst, |
int16_t *const * | src, | ||
int | len, | ||
int | channels | ||
) |
Referenced by ff_audio_convert_init_x86().
void ff_conv_s16p_to_s16_6ch_sse2 | ( | int16_t * | dst, |
int16_t *const * | src, | ||
int | len, | ||
int | channels | ||
) |
Referenced by ff_audio_convert_init_x86().
void ff_conv_s16p_to_s16_6ch_sse2slow | ( | int16_t * | dst, |
int16_t *const * | src, | ||
int | len, | ||
int | channels | ||
) |
Referenced by ff_audio_convert_init_x86().
void ff_conv_s16p_to_s16_6ch_avx | ( | int16_t * | dst, |
int16_t *const * | src, | ||
int | len, | ||
int | channels | ||
) |
Referenced by ff_audio_convert_init_x86().
void ff_conv_s16p_to_flt_2ch_sse2 | ( | float * | dst, |
int16_t *const * | src, | ||
int | len, | ||
int | channels | ||
) |
Referenced by ff_audio_convert_init_x86().
void ff_conv_s16p_to_flt_2ch_avx | ( | float * | dst, |
int16_t *const * | src, | ||
int | len, | ||
int | channels | ||
) |
Referenced by ff_audio_convert_init_x86().
void ff_conv_s16p_to_flt_6ch_sse2 | ( | float * | dst, |
int16_t *const * | src, | ||
int | len, | ||
int | channels | ||
) |
Referenced by ff_audio_convert_init_x86().
void ff_conv_s16p_to_flt_6ch_ssse3 | ( | float * | dst, |
int16_t *const * | src, | ||
int | len, | ||
int | channels | ||
) |
Referenced by ff_audio_convert_init_x86().
void ff_conv_s16p_to_flt_6ch_avx | ( | float * | dst, |
int16_t *const * | src, | ||
int | len, | ||
int | channels | ||
) |
Referenced by ff_audio_convert_init_x86().
void ff_conv_fltp_to_s16_2ch_sse2 | ( | int16_t * | dst, |
float *const * | src, | ||
int | len, | ||
int | channels | ||
) |
Referenced by ff_audio_convert_init_x86().
void ff_conv_fltp_to_s16_2ch_ssse3 | ( | int16_t * | dst, |
float *const * | src, | ||
int | len, | ||
int | channels | ||
) |
Referenced by ff_audio_convert_init_x86().
void ff_conv_fltp_to_s16_6ch_sse | ( | int16_t * | dst, |
float *const * | src, | ||
int | len, | ||
int | channels | ||
) |
Referenced by ff_audio_convert_init_x86().
void ff_conv_fltp_to_s16_6ch_sse2 | ( | int16_t * | dst, |
float *const * | src, | ||
int | len, | ||
int | channels | ||
) |
Referenced by ff_audio_convert_init_x86().
void ff_conv_fltp_to_s16_6ch_avx | ( | int16_t * | dst, |
float *const * | src, | ||
int | len, | ||
int | channels | ||
) |
Referenced by ff_audio_convert_init_x86().
void ff_conv_fltp_to_flt_2ch_sse | ( | float * | dst, |
float *const * | src, | ||
int | len, | ||
int | channels | ||
) |
Referenced by ff_audio_convert_init_x86().
void ff_conv_fltp_to_flt_2ch_avx | ( | float * | dst, |
float *const * | src, | ||
int | len, | ||
int | channels | ||
) |
void ff_conv_fltp_to_flt_6ch_mmx | ( | float * | dst, |
float *const * | src, | ||
int | len, | ||
int | channels | ||
) |
Referenced by ff_audio_convert_init_x86().
void ff_conv_fltp_to_flt_6ch_sse4 | ( | float * | dst, |
float *const * | src, | ||
int | len, | ||
int | channels | ||
) |
Referenced by ff_audio_convert_init_x86().
void ff_conv_fltp_to_flt_6ch_avx | ( | float * | dst, |
float *const * | src, | ||
int | len, | ||
int | channels | ||
) |
Referenced by ff_audio_convert_init_x86().
void ff_conv_s16_to_s16p_2ch_sse2 | ( | int16_t *const * | dst, |
int16_t * | src, | ||
int | len, | ||
int | channels | ||
) |
Referenced by ff_audio_convert_init_x86().
void ff_conv_s16_to_s16p_2ch_ssse3 | ( | int16_t *const * | dst, |
int16_t * | src, | ||
int | len, | ||
int | channels | ||
) |
Referenced by ff_audio_convert_init_x86().
void ff_conv_s16_to_s16p_2ch_avx | ( | int16_t *const * | dst, |
int16_t * | src, | ||
int | len, | ||
int | channels | ||
) |
Referenced by ff_audio_convert_init_x86().
void ff_conv_s16_to_s16p_6ch_sse2 | ( | int16_t *const * | dst, |
int16_t * | src, | ||
int | len, | ||
int | channels | ||
) |
Referenced by ff_audio_convert_init_x86().
void ff_conv_s16_to_s16p_6ch_ssse3 | ( | int16_t *const * | dst, |
int16_t * | src, | ||
int | len, | ||
int | channels | ||
) |
Referenced by ff_audio_convert_init_x86().
void ff_conv_s16_to_s16p_6ch_avx | ( | int16_t *const * | dst, |
int16_t * | src, | ||
int | len, | ||
int | channels | ||
) |
Referenced by ff_audio_convert_init_x86().
void ff_conv_s16_to_fltp_2ch_sse2 | ( | float *const * | dst, |
int16_t * | src, | ||
int | len, | ||
int | channels | ||
) |
Referenced by ff_audio_convert_init_x86().
void ff_conv_s16_to_fltp_2ch_avx | ( | float *const * | dst, |
int16_t * | src, | ||
int | len, | ||
int | channels | ||
) |
Referenced by ff_audio_convert_init_x86().
void ff_conv_s16_to_fltp_6ch_sse2 | ( | float *const * | dst, |
int16_t * | src, | ||
int | len, | ||
int | channels | ||
) |
Referenced by ff_audio_convert_init_x86().
void ff_conv_s16_to_fltp_6ch_ssse3 | ( | float *const * | dst, |
int16_t * | src, | ||
int | len, | ||
int | channels | ||
) |
Referenced by ff_audio_convert_init_x86().
void ff_conv_s16_to_fltp_6ch_sse4 | ( | float *const * | dst, |
int16_t * | src, | ||
int | len, | ||
int | channels | ||
) |
void ff_conv_s16_to_fltp_6ch_avx | ( | float *const * | dst, |
int16_t * | src, | ||
int | len, | ||
int | channels | ||
) |
Referenced by ff_audio_convert_init_x86().
void ff_conv_flt_to_s16p_2ch_sse2 | ( | int16_t *const * | dst, |
float * | src, | ||
int | len, | ||
int | channels | ||
) |
Referenced by ff_audio_convert_init_x86().
void ff_conv_flt_to_s16p_2ch_avx | ( | int16_t *const * | dst, |
float * | src, | ||
int | len, | ||
int | channels | ||
) |
Referenced by ff_audio_convert_init_x86().
void ff_conv_flt_to_s16p_6ch_sse2 | ( | int16_t *const * | dst, |
float * | src, | ||
int | len, | ||
int | channels | ||
) |
Referenced by ff_audio_convert_init_x86().
void ff_conv_flt_to_s16p_6ch_ssse3 | ( | int16_t *const * | dst, |
float * | src, | ||
int | len, | ||
int | channels | ||
) |
Referenced by ff_audio_convert_init_x86().
void ff_conv_flt_to_s16p_6ch_avx | ( | int16_t *const * | dst, |
float * | src, | ||
int | len, | ||
int | channels | ||
) |
Referenced by ff_audio_convert_init_x86().
void ff_conv_flt_to_fltp_2ch_sse | ( | float *const * | dst, |
float * | src, | ||
int | len, | ||
int | channels | ||
) |
Referenced by ff_audio_convert_init_x86().
void ff_conv_flt_to_fltp_2ch_avx | ( | float *const * | dst, |
float * | src, | ||
int | len, | ||
int | channels | ||
) |
Referenced by ff_audio_convert_init_x86().
void ff_conv_flt_to_fltp_6ch_sse2 | ( | float *const * | dst, |
float * | src, | ||
int | len, | ||
int | channels | ||
) |
Referenced by ff_audio_convert_init_x86().
void ff_conv_flt_to_fltp_6ch_avx | ( | float *const * | dst, |
float * | src, | ||
int | len, | ||
int | channels | ||
) |
Referenced by ff_audio_convert_init_x86().
av_cold void ff_audio_convert_init_x86 | ( | AudioConvert * | ac | ) |
Definition at line 146 of file audio_convert_init.c.