Home
last modified time | relevance | path

Searched refs:tran_low_t (Results 1 – 25 of 64) sorted by relevance

123

/external/libvpx/libvpx/vpx_dsp/
Dinv_txfm.h24 static INLINE tran_low_t check_range(tran_high_t input) { in check_range()
35 return (tran_low_t)input; in check_range()
38 static INLINE tran_low_t dct_const_round_shift(tran_high_t input) { in dct_const_round_shift()
44 static INLINE tran_low_t highbd_check_range(tran_high_t input, in highbd_check_range()
59 return (tran_low_t)input; in highbd_check_range()
62 static INLINE tran_low_t highbd_dct_const_round_shift(tran_high_t input, in highbd_dct_const_round_shift()
91 void idct4_c(const tran_low_t *input, tran_low_t *output);
92 void idct8_c(const tran_low_t *input, tran_low_t *output);
93 void idct16_c(const tran_low_t *input, tran_low_t *output);
94 void idct32_c(const tran_low_t *input, tran_low_t *output);
[all …]
Dquantize.h21 void vpx_quantize_dc(const tran_low_t *coeff_ptr,
24 tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr,
26 void vpx_quantize_dc_32x32(const tran_low_t *coeff_ptr, int skip_block,
28 tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr,
32 void vpx_highbd_quantize_dc(const tran_low_t *coeff_ptr,
35 tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr,
37 void vpx_highbd_quantize_dc_32x32(const tran_low_t *coeff_ptr,
41 tran_low_t *qcoeff_ptr,
42 tran_low_t *dqcoeff_ptr,
Dquantize.c14 void vpx_quantize_dc(const tran_low_t *coeff_ptr, in vpx_quantize_dc()
17 tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, in vpx_quantize_dc()
40 void vpx_highbd_quantize_dc(const tran_low_t *coeff_ptr, in vpx_highbd_quantize_dc()
43 tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, in vpx_highbd_quantize_dc()
56 qcoeff_ptr[0] = (tran_low_t)((abs_qcoeff ^ coeff_sign) - coeff_sign); in vpx_highbd_quantize_dc()
65 void vpx_quantize_dc_32x32(const tran_low_t *coeff_ptr, int skip_block, in vpx_quantize_dc_32x32()
67 tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, in vpx_quantize_dc_32x32()
92 void vpx_highbd_quantize_dc_32x32(const tran_low_t *coeff_ptr, in vpx_highbd_quantize_dc_32x32()
96 tran_low_t *qcoeff_ptr, in vpx_highbd_quantize_dc_32x32()
97 tran_low_t *dqcoeff_ptr, in vpx_highbd_quantize_dc_32x32()
[all …]
Dfwd_txfm.c13 void vpx_fdct4x4_c(const int16_t *input, tran_low_t *output, int stride) { in vpx_fdct4x4_c()
22 tran_low_t intermediate[4 * 4]; in vpx_fdct4x4_c()
24 const tran_low_t *in = NULL; in vpx_fdct4x4_c()
25 tran_low_t *out = intermediate; in vpx_fdct4x4_c()
55 out[0] = (tran_low_t)fdct_round_shift(temp1); in vpx_fdct4x4_c()
56 out[2] = (tran_low_t)fdct_round_shift(temp2); in vpx_fdct4x4_c()
59 out[1] = (tran_low_t)fdct_round_shift(temp1); in vpx_fdct4x4_c()
60 out[3] = (tran_low_t)fdct_round_shift(temp2); in vpx_fdct4x4_c()
80 void vpx_fdct4x4_1_c(const int16_t *input, tran_low_t *output, int stride) { in vpx_fdct4x4_1_c()
82 tran_low_t sum = 0; in vpx_fdct4x4_1_c()
[all …]
Dinv_txfm.c16 void vpx_iwht4x4_16_add_c(const tran_low_t *input, uint8_t *dest, int stride) { in vpx_iwht4x4_16_add_c()
20 tran_low_t output[16]; in vpx_iwht4x4_16_add_c()
22 const tran_low_t *ip = input; in vpx_iwht4x4_16_add_c()
23 tran_low_t *op = output; in vpx_iwht4x4_16_add_c()
68 void vpx_iwht4x4_1_add_c(const tran_low_t *in, uint8_t *dest, int dest_stride) { in vpx_iwht4x4_1_add_c()
71 tran_low_t tmp[4]; in vpx_iwht4x4_1_add_c()
72 const tran_low_t *ip = in; in vpx_iwht4x4_1_add_c()
73 tran_low_t *op = tmp; in vpx_iwht4x4_1_add_c()
94 void idct4_c(const tran_low_t *input, tran_low_t *output) { in idct4_c()
95 tran_low_t step[4]; in idct4_c()
[all …]
/external/libvpx/libvpx/vp9/common/
Dvp9_idct.h27 typedef void (*transform_1d)(const tran_low_t*, tran_low_t*);
34 typedef void (*highbd_transform_1d)(const tran_low_t*, tran_low_t*, int bd);
41 void vp9_iwht4x4_add(const tran_low_t *input, uint8_t *dest, int stride,
43 void vp9_idct4x4_add(const tran_low_t *input, uint8_t *dest, int stride,
45 void vp9_idct8x8_add(const tran_low_t *input, uint8_t *dest, int stride,
47 void vp9_idct16x16_add(const tran_low_t *input, uint8_t *dest, int stride,
49 void vp9_idct32x32_add(const tran_low_t *input, uint8_t *dest, int stride,
52 void vp9_iht4x4_add(TX_TYPE tx_type, const tran_low_t *input, uint8_t *dest,
54 void vp9_iht8x8_add(TX_TYPE tx_type, const tran_low_t *input, uint8_t *dest,
56 void vp9_iht16x16_add(TX_TYPE tx_type, const tran_low_t *input, uint8_t *dest,
[all …]
Dvp9_idct.c20 void vp9_iht4x4_16_add_c(const tran_low_t *input, uint8_t *dest, int stride, in vp9_iht4x4_16_add_c()
30 tran_low_t out[4 * 4]; in vp9_iht4x4_16_add_c()
31 tran_low_t *outptr = out; in vp9_iht4x4_16_add_c()
32 tran_low_t temp_in[4], temp_out[4]; in vp9_iht4x4_16_add_c()
60 void vp9_iht8x8_64_add_c(const tran_low_t *input, uint8_t *dest, int stride, in vp9_iht8x8_64_add_c()
63 tran_low_t out[8 * 8]; in vp9_iht8x8_64_add_c()
64 tran_low_t *outptr = out; in vp9_iht8x8_64_add_c()
65 tran_low_t temp_in[8], temp_out[8]; in vp9_iht8x8_64_add_c()
94 void vp9_iht16x16_256_add_c(const tran_low_t *input, uint8_t *dest, int stride, in vp9_iht16x16_256_add_c()
97 tran_low_t out[16 * 16]; in vp9_iht16x16_256_add_c()
[all …]
/external/libvpx/config/x86_64/
Dvp9_rtcd.h40 int64_t vp9_block_error_c(const tran_low_t *coeff, const tran_low_t *dqcoeff, intptr_t block_size, …
41 int64_t vp9_block_error_sse2(const tran_low_t *coeff, const tran_low_t *dqcoeff, intptr_t block_siz…
51tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t *zbin_ptr, const int16_t *…
52tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t *zbin_ptr, const int16_t *…
53tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t *zbin_ptr, const int16_t *…
56 void vp9_fht16x16_c(const int16_t *input, tran_low_t *output, int stride, int tx_type);
57 void vp9_fht16x16_sse2(const int16_t *input, tran_low_t *output, int stride, int tx_type);
60 void vp9_fht4x4_c(const int16_t *input, tran_low_t *output, int stride, int tx_type);
61 void vp9_fht4x4_sse2(const int16_t *input, tran_low_t *output, int stride, int tx_type);
64 void vp9_fht8x8_c(const int16_t *input, tran_low_t *output, int stride, int tx_type);
[all …]
/external/libvpx/config/x86/
Dvp9_rtcd.h40 int64_t vp9_block_error_c(const tran_low_t *coeff, const tran_low_t *dqcoeff, intptr_t block_size, …
41 int64_t vp9_block_error_sse2(const tran_low_t *coeff, const tran_low_t *dqcoeff, intptr_t block_siz…
51tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t *zbin_ptr, const int16_t *…
52tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t *zbin_ptr, const int16_t *…
53tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t *zbin_ptr, const int16_t *…
56 void vp9_fht16x16_c(const int16_t *input, tran_low_t *output, int stride, int tx_type);
57 void vp9_fht16x16_sse2(const int16_t *input, tran_low_t *output, int stride, int tx_type);
60 void vp9_fht4x4_c(const int16_t *input, tran_low_t *output, int stride, int tx_type);
61 void vp9_fht4x4_sse2(const int16_t *input, tran_low_t *output, int stride, int tx_type);
64 void vp9_fht8x8_c(const int16_t *input, tran_low_t *output, int stride, int tx_type);
[all …]
/external/libvpx/libvpx/vp9/encoder/
Dvp9_dct.c23 static void fdct4(const tran_low_t *input, tran_low_t *output) { in fdct4()
34 output[0] = (tran_low_t)fdct_round_shift(temp1); in fdct4()
35 output[2] = (tran_low_t)fdct_round_shift(temp2); in fdct4()
38 output[1] = (tran_low_t)fdct_round_shift(temp1); in fdct4()
39 output[3] = (tran_low_t)fdct_round_shift(temp2); in fdct4()
42 static void fdct8(const tran_low_t *input, tran_low_t *output) { in fdct8()
66 output[0] = (tran_low_t)fdct_round_shift(t0); in fdct8()
67 output[2] = (tran_low_t)fdct_round_shift(t2); in fdct8()
68 output[4] = (tran_low_t)fdct_round_shift(t1); in fdct8()
69 output[6] = (tran_low_t)fdct_round_shift(t3); in fdct8()
[all …]
Dvp9_context_tree.h30 tran_low_t *coeff[MAX_MB_PLANE][3];
31 tran_low_t *qcoeff[MAX_MB_PLANE][3];
32 tran_low_t *dqcoeff[MAX_MB_PLANE][3];
36 tran_low_t *coeff_pbuf[MAX_MB_PLANE][3];
37 tran_low_t *qcoeff_pbuf[MAX_MB_PLANE][3];
38 tran_low_t *dqcoeff_pbuf[MAX_MB_PLANE][3];
/external/libvpx/config/arm-neon/
Dvp9_rtcd.h39 int64_t vp9_block_error_c(const tran_low_t *coeff, const tran_low_t *dqcoeff, intptr_t block_size, …
49tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t *zbin_ptr, const int16_t *…
50tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t *zbin_ptr, const int16_t *…
53 void vp9_fht16x16_c(const int16_t *input, tran_low_t *output, int stride, int tx_type);
56 void vp9_fht4x4_c(const int16_t *input, tran_low_t *output, int stride, int tx_type);
59 void vp9_fht8x8_c(const int16_t *input, tran_low_t *output, int stride, int tx_type);
68 void vp9_fwht4x4_c(const int16_t *input, tran_low_t *output, int stride);
77 void vp9_iht16x16_256_add_c(const tran_low_t *input, uint8_t *output, int pitch, int tx_type);
80 void vp9_iht4x4_16_add_c(const tran_low_t *input, uint8_t *dest, int dest_stride, int tx_type);
81 void vp9_iht4x4_16_add_neon(const tran_low_t *input, uint8_t *dest, int dest_stride, int tx_type);
[all …]
/external/libvpx/config/arm64/
Dvp9_rtcd.h39 int64_t vp9_block_error_c(const tran_low_t *coeff, const tran_low_t *dqcoeff, intptr_t block_size, …
49tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t *zbin_ptr, const int16_t *…
50tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t *zbin_ptr, const int16_t *…
53 void vp9_fht16x16_c(const int16_t *input, tran_low_t *output, int stride, int tx_type);
56 void vp9_fht4x4_c(const int16_t *input, tran_low_t *output, int stride, int tx_type);
59 void vp9_fht8x8_c(const int16_t *input, tran_low_t *output, int stride, int tx_type);
68 void vp9_fwht4x4_c(const int16_t *input, tran_low_t *output, int stride);
77 void vp9_iht16x16_256_add_c(const tran_low_t *input, uint8_t *output, int pitch, int tx_type);
80 void vp9_iht4x4_16_add_c(const tran_low_t *input, uint8_t *dest, int dest_stride, int tx_type);
81 void vp9_iht4x4_16_add_neon(const tran_low_t *input, uint8_t *dest, int dest_stride, int tx_type);
[all …]
/external/libvpx/config/mips32-dspr2/
Dvp9_rtcd.h38 int64_t vp9_block_error_c(const tran_low_t *coeff, const tran_low_t *dqcoeff, intptr_t block_size, …
47tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t *zbin_ptr, const int16_t *…
50 void vp9_fht16x16_c(const int16_t *input, tran_low_t *output, int stride, int tx_type);
53 void vp9_fht4x4_c(const int16_t *input, tran_low_t *output, int stride, int tx_type);
56 void vp9_fht8x8_c(const int16_t *input, tran_low_t *output, int stride, int tx_type);
65 void vp9_fwht4x4_c(const int16_t *input, tran_low_t *output, int stride);
74 void vp9_iht16x16_256_add_c(const tran_low_t *input, uint8_t *output, int pitch, int tx_type);
75 void vp9_iht16x16_256_add_dspr2(const tran_low_t *input, uint8_t *output, int pitch, int tx_type);
78 void vp9_iht4x4_16_add_c(const tran_low_t *input, uint8_t *dest, int dest_stride, int tx_type);
79 void vp9_iht4x4_16_add_dspr2(const tran_low_t *input, uint8_t *dest, int dest_stride, int tx_type);
[all …]
/external/libvpx/config/mips64/
Dvp9_rtcd.h38 int64_t vp9_block_error_c(const tran_low_t *coeff, const tran_low_t *dqcoeff, intptr_t block_size, …
47tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t *zbin_ptr, const int16_t *…
50 void vp9_fht16x16_c(const int16_t *input, tran_low_t *output, int stride, int tx_type);
53 void vp9_fht4x4_c(const int16_t *input, tran_low_t *output, int stride, int tx_type);
56 void vp9_fht8x8_c(const int16_t *input, tran_low_t *output, int stride, int tx_type);
65 void vp9_fwht4x4_c(const int16_t *input, tran_low_t *output, int stride);
74 void vp9_iht16x16_256_add_c(const tran_low_t *input, uint8_t *output, int pitch, int tx_type);
77 void vp9_iht4x4_16_add_c(const tran_low_t *input, uint8_t *dest, int dest_stride, int tx_type);
80 void vp9_iht8x8_64_add_c(const tran_low_t *input, uint8_t *dest, int dest_stride, int tx_type);
92tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t *zbin_ptr, const int16_t *…
[all …]
/external/libvpx/config/arm/
Dvp9_rtcd.h38 int64_t vp9_block_error_c(const tran_low_t *coeff, const tran_low_t *dqcoeff, intptr_t block_size, …
47tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t *zbin_ptr, const int16_t *…
50 void vp9_fht16x16_c(const int16_t *input, tran_low_t *output, int stride, int tx_type);
53 void vp9_fht4x4_c(const int16_t *input, tran_low_t *output, int stride, int tx_type);
56 void vp9_fht8x8_c(const int16_t *input, tran_low_t *output, int stride, int tx_type);
65 void vp9_fwht4x4_c(const int16_t *input, tran_low_t *output, int stride);
74 void vp9_iht16x16_256_add_c(const tran_low_t *input, uint8_t *output, int pitch, int tx_type);
77 void vp9_iht4x4_16_add_c(const tran_low_t *input, uint8_t *dest, int dest_stride, int tx_type);
80 void vp9_iht8x8_64_add_c(const tran_low_t *input, uint8_t *dest, int dest_stride, int tx_type);
92tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t *zbin_ptr, const int16_t *…
[all …]
/external/libvpx/config/generic/
Dvp9_rtcd.h38 int64_t vp9_block_error_c(const tran_low_t *coeff, const tran_low_t *dqcoeff, intptr_t block_size, …
47tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t *zbin_ptr, const int16_t *…
50 void vp9_fht16x16_c(const int16_t *input, tran_low_t *output, int stride, int tx_type);
53 void vp9_fht4x4_c(const int16_t *input, tran_low_t *output, int stride, int tx_type);
56 void vp9_fht8x8_c(const int16_t *input, tran_low_t *output, int stride, int tx_type);
65 void vp9_fwht4x4_c(const int16_t *input, tran_low_t *output, int stride);
74 void vp9_iht16x16_256_add_c(const tran_low_t *input, uint8_t *output, int pitch, int tx_type);
77 void vp9_iht4x4_16_add_c(const tran_low_t *input, uint8_t *dest, int dest_stride, int tx_type);
80 void vp9_iht8x8_64_add_c(const tran_low_t *input, uint8_t *dest, int dest_stride, int tx_type);
92tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t *zbin_ptr, const int16_t *…
[all …]
/external/libvpx/config/mips32/
Dvp9_rtcd.h38 int64_t vp9_block_error_c(const tran_low_t *coeff, const tran_low_t *dqcoeff, intptr_t block_size, …
47tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t *zbin_ptr, const int16_t *…
50 void vp9_fht16x16_c(const int16_t *input, tran_low_t *output, int stride, int tx_type);
53 void vp9_fht4x4_c(const int16_t *input, tran_low_t *output, int stride, int tx_type);
56 void vp9_fht8x8_c(const int16_t *input, tran_low_t *output, int stride, int tx_type);
65 void vp9_fwht4x4_c(const int16_t *input, tran_low_t *output, int stride);
74 void vp9_iht16x16_256_add_c(const tran_low_t *input, uint8_t *output, int pitch, int tx_type);
77 void vp9_iht4x4_16_add_c(const tran_low_t *input, uint8_t *dest, int dest_stride, int tx_type);
80 void vp9_iht8x8_64_add_c(const tran_low_t *input, uint8_t *dest, int dest_stride, int tx_type);
92tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t *zbin_ptr, const int16_t *…
[all …]
/external/libvpx/libvpx/test/
Dvp10_dct_test.cc43 typedef void (*FdctFunc)(const tran_low_t *in, tran_low_t *out);
44 typedef void (*IdctFunc)(const tran_low_t *in, tran_low_t *out);
52 tran_low_t *input = new tran_low_t[txfm_size_]; in RunFwdAccuracyCheck()
53 tran_low_t *output = new tran_low_t[txfm_size_]; in RunFwdAccuracyCheck()
70 abs(output[ni] - static_cast<tran_low_t>(round(ref_output[ni]))), in RunFwdAccuracyCheck()
Dfdct4x4_test.cc32 typedef void (*FdctFunc)(const int16_t *in, tran_low_t *out, int stride);
33 typedef void (*IdctFunc)(const tran_low_t *in, uint8_t *out, int stride);
34 typedef void (*FhtFunc)(const int16_t *in, tran_low_t *out, int stride,
36 typedef void (*IhtFunc)(const tran_low_t *in, uint8_t *out, int stride,
42 void fdct4x4_ref(const int16_t *in, tran_low_t *out, int stride, in fdct4x4_ref()
47 void fht4x4_ref(const int16_t *in, tran_low_t *out, int stride, int tx_type) { in fht4x4_ref()
51 void fwht4x4_ref(const int16_t *in, tran_low_t *out, int stride, in fwht4x4_ref()
57 void idct4x4_10(const tran_low_t *in, uint8_t *out, int stride) { in idct4x4_10()
61 void idct4x4_12(const tran_low_t *in, uint8_t *out, int stride) { in idct4x4_12()
65 void iht4x4_10(const tran_low_t *in, uint8_t *out, int stride, int tx_type) { in iht4x4_10()
[all …]
Dvp9_quantize_test.cc34 typedef void (*QuantizeFunc)(const tran_low_t *coeff, intptr_t count,
38 tran_low_t *qcoeff, tran_low_t *dqcoeff,
85 DECLARE_ALIGNED(16, tran_low_t, coeff_ptr[256]); in TEST_P()
90 DECLARE_ALIGNED(16, tran_low_t, qcoeff_ptr[256]); in TEST_P()
91 DECLARE_ALIGNED(16, tran_low_t, dqcoeff_ptr[256]); in TEST_P()
92 DECLARE_ALIGNED(16, tran_low_t, ref_qcoeff_ptr[256]); in TEST_P()
93 DECLARE_ALIGNED(16, tran_low_t, ref_dqcoeff_ptr[256]); in TEST_P()
144 DECLARE_ALIGNED(16, tran_low_t, coeff_ptr[1024]); in TEST_P()
149 DECLARE_ALIGNED(16, tran_low_t, qcoeff_ptr[1024]); in TEST_P()
150 DECLARE_ALIGNED(16, tran_low_t, dqcoeff_ptr[1024]); in TEST_P()
[all …]
Dvp9_error_block_test.cc33 typedef int64_t (*ErrorBlockFunc)(const tran_low_t *coeff,
34 const tran_low_t *dqcoeff,
61 DECLARE_ALIGNED(16, tran_low_t, coeff[4096]); in TEST_P()
62 DECLARE_ALIGNED(16, tran_low_t, dqcoeff[4096]); in TEST_P()
104 DECLARE_ALIGNED(16, tran_low_t, coeff[4096]); in TEST_P()
105 DECLARE_ALIGNED(16, tran_low_t, dqcoeff[4096]); in TEST_P()
163 int64_t wrap_vp9_highbd_block_error_8bit_c(const tran_low_t *coeff, in wrap_vp9_highbd_block_error_8bit_c()
164 const tran_low_t *dqcoeff, in wrap_vp9_highbd_block_error_8bit_c()
172 int64_t wrap_vp9_highbd_block_error_8bit_sse2(const tran_low_t *coeff, in wrap_vp9_highbd_block_error_8bit_sse2()
173 const tran_low_t *dqcoeff, in wrap_vp9_highbd_block_error_8bit_sse2()
[all …]
Dfdct8x8_test.cc39 typedef void (*FdctFunc)(const int16_t *in, tran_low_t *out, int stride);
40 typedef void (*IdctFunc)(const tran_low_t *in, uint8_t *out, int stride);
41 typedef void (*FhtFunc)(const int16_t *in, tran_low_t *out, int stride,
43 typedef void (*IhtFunc)(const tran_low_t *in, uint8_t *out, int stride,
85 void fdct8x8_ref(const int16_t *in, tran_low_t *out, int stride, int tx_type) { in fdct8x8_ref()
89 void fht8x8_ref(const int16_t *in, tran_low_t *out, int stride, int tx_type) { in fht8x8_ref()
94 void idct8x8_10(const tran_low_t *in, uint8_t *out, int stride) { in idct8x8_10()
98 void idct8x8_12(const tran_low_t *in, uint8_t *out, int stride) { in idct8x8_12()
102 void iht8x8_10(const tran_low_t *in, uint8_t *out, int stride, int tx_type) { in iht8x8_10()
106 void iht8x8_12(const tran_low_t *in, uint8_t *out, int stride, int tx_type) { in iht8x8_12()
[all …]
Ddct16x16_test.cc237 typedef void (*FdctFunc)(const int16_t *in, tran_low_t *out, int stride);
238 typedef void (*IdctFunc)(const tran_low_t *in, uint8_t *out, int stride);
239 typedef void (*FhtFunc)(const int16_t *in, tran_low_t *out, int stride,
241 typedef void (*IhtFunc)(const tran_low_t *in, uint8_t *out, int stride,
249 void fdct16x16_ref(const int16_t *in, tran_low_t *out, int stride, in fdct16x16_ref()
254 void idct16x16_ref(const tran_low_t *in, uint8_t *dest, int stride, in idct16x16_ref()
259 void fht16x16_ref(const int16_t *in, tran_low_t *out, int stride, in fht16x16_ref()
264 void iht16x16_ref(const tran_low_t *in, uint8_t *dest, int stride, in iht16x16_ref()
270 void idct16x16_10(const tran_low_t *in, uint8_t *out, int stride) { in idct16x16_10()
274 void idct16x16_12(const tran_low_t *in, uint8_t *out, int stride) { in idct16x16_12()
[all …]
Dvp10_inv_txfm_test.cc47 typedef void (*IdctFunc)(const tran_low_t *in, tran_low_t *out);
55 tran_low_t *input = new tran_low_t[txfm_size_]; in RunInvAccuracyCheck()
56 tran_low_t *output = new tran_low_t[txfm_size_]; in RunInvAccuracyCheck()
73 abs(output[ni] - static_cast<tran_low_t>(round(ref_output[ni]))), in RunInvAccuracyCheck()
117 typedef void (*FwdTxfmFunc)(const int16_t *in, tran_low_t *out, int stride);
118 typedef void (*InvTxfmFunc)(const tran_low_t *in, uint8_t *out, int stride);
166 DECLARE_ALIGNED(16, tran_low_t, test_coef_block1[kMaxNumCoeffs]); in TEST_P()
167 DECLARE_ALIGNED(16, tran_low_t, test_coef_block2[kMaxNumCoeffs]); in TEST_P()
175 DECLARE_ALIGNED(16, tran_low_t, output_ref_block[kMaxNumCoeffs]); in TEST_P()
245 DECLARE_ALIGNED(16, tran_low_t, test_coef_block1[kMaxNumCoeffs]); in TEST_P()
[all …]

123