Home
last modified time | relevance | path

Searched refs:csa_table (Results 1 – 5 of 5) sorted by relevance

/third_party/ffmpeg/libavcodec/mips/
Dcompute_antialias_float.h66 const float *csa = &csa_table[0][0]; in compute_antialias_mips_float()
Dcompute_antialias_fixed.h83 csa = &csa_table[0][0]; in compute_antialias_mips_fixed()
/third_party/ffmpeg/libavcodec/
Dmpegaudiodec_float.c53 static const float csa_table[8][4] = { variable
Dmpegaudiodec_fixed.c48 static const int32_t csa_table[8][4] = { variable
Dmpegaudiodec_template.c1080 ptr[-1-j] = tmp0 * csa_table[j][0] - tmp1 * csa_table[j][1]; \
1081 ptr[ j] = tmp0 * csa_table[j][1] + tmp1 * csa_table[j][0]; \
1087 SUINT tmp2 = MULH(tmp0 + tmp1, csa_table[j][0]); \
1088 ptr[-1-j] = 4 * (tmp2 - MULH(tmp1, csa_table[j][2])); \
1089 ptr[ j] = 4 * (tmp2 + MULH(tmp0, csa_table[j][3])); \