Home
last modified time | relevance | path

Searched refs:tx_type (Results 1 – 25 of 89) sorted by relevance

1234

/external/libaom/libaom/av1/common/
Didct.c44 assert(av1_ext_tx_used[txfm_param->tx_set_type][txfm_param->tx_type]); in av1_highbd_inv_txfm_add_4x4_c()
49 const TX_TYPE tx_type = txfm_param->tx_type; in av1_highbd_inv_txfm_add_4x4_c() local
51 assert(tx_type == DCT_DCT); in av1_highbd_inv_txfm_add_4x4_c()
56 av1_inv_txfm2d_add_4x4_c(src, CONVERT_TO_SHORTPTR(dest), stride, tx_type, bd); in av1_highbd_inv_txfm_add_4x4_c()
61 assert(av1_ext_tx_used[txfm_param->tx_set_type][txfm_param->tx_type]); in av1_highbd_inv_txfm_add_4x8_c()
64 txfm_param->tx_type, txfm_param->bd); in av1_highbd_inv_txfm_add_4x8_c()
69 assert(av1_ext_tx_used[txfm_param->tx_set_type][txfm_param->tx_type]); in av1_highbd_inv_txfm_add_8x4_c()
72 txfm_param->tx_type, txfm_param->bd); in av1_highbd_inv_txfm_add_8x4_c()
79 txfm_param->tx_type, txfm_param->bd); in av1_highbd_inv_txfm_add_16x32_c()
86 txfm_param->tx_type, txfm_param->bd); in av1_highbd_inv_txfm_add_32x16_c()
[all …]
Dav1_inv_txfm2d.c182 void av1_get_inv_txfm_cfg(TX_TYPE tx_type, TX_SIZE tx_size, in av1_get_inv_txfm_cfg() argument
188 set_flip_cfg(tx_type, cfg); in av1_get_inv_txfm_cfg()
189 const TX_TYPE_1D tx_type_1d_col = vtx_tab[tx_type]; in av1_get_inv_txfm_cfg()
190 const TX_TYPE_1D tx_type_1d_row = htx_tab[tx_type]; in av1_get_inv_txfm_cfg()
340 TX_TYPE tx_type, TX_SIZE tx_size, in inv_txfm2d_add_facade() argument
343 av1_get_inv_txfm_cfg(tx_type, tx_size, &cfg); in inv_txfm2d_add_facade()
350 int stride, TX_TYPE tx_type, int bd) { in av1_inv_txfm2d_add_4x8_c() argument
352 inv_txfm2d_add_facade(input, output, stride, txfm_buf, tx_type, TX_4X8, bd); in av1_inv_txfm2d_add_4x8_c()
356 int stride, TX_TYPE tx_type, int bd) { in av1_inv_txfm2d_add_8x4_c() argument
358 inv_txfm2d_add_facade(input, output, stride, txfm_buf, tx_type, TX_8X4, bd); in av1_inv_txfm2d_add_8x4_c()
[all …]
Dscan.h43 TX_TYPE tx_type) { in get_default_scan() argument
44 return &av1_scan_orders[tx_size][tx_type]; in get_default_scan()
47 static INLINE const SCAN_ORDER *get_scan(TX_SIZE tx_size, TX_TYPE tx_type) { in get_scan() argument
48 return get_default_scan(tx_size, tx_type); in get_scan()
Dav1_txfm.h113 TX_TYPE tx_type, int bd);
147 static INLINE void get_flip_cfg(TX_TYPE tx_type, int *ud_flip, int *lr_flip) { in get_flip_cfg() argument
148 switch (tx_type) { in get_flip_cfg()
187 static INLINE void set_flip_cfg(TX_TYPE tx_type, TXFM_2D_FLIP_CFG *cfg) { in set_flip_cfg() argument
188 get_flip_cfg(tx_type, &cfg->ud_flip, &cfg->lr_flip); in set_flip_cfg()
214 void av1_get_fwd_txfm_cfg(TX_TYPE tx_type, TX_SIZE tx_size,
216 void av1_get_inv_txfm_cfg(TX_TYPE tx_type, TX_SIZE tx_size,
/external/libaom/libaom/av1/encoder/
Dhybrid_fwd_txfm.c83 const TX_TYPE tx_type = txfm_param->tx_type; in highbd_fwd_txfm_4x4() local
86 assert(tx_type == DCT_DCT); in highbd_fwd_txfm_4x4()
90 av1_fwd_txfm2d_4x4(src_diff, dst_coeff, diff_stride, tx_type, bd); in highbd_fwd_txfm_4x4()
96 av1_fwd_txfm2d_4x8(src_diff, dst_coeff, diff_stride, txfm_param->tx_type, in highbd_fwd_txfm_4x8()
103 av1_fwd_txfm2d_8x4(src_diff, dst_coeff, diff_stride, txfm_param->tx_type, in highbd_fwd_txfm_8x4()
110 const TX_TYPE tx_type = txfm_param->tx_type; in highbd_fwd_txfm_8x16() local
112 av1_fwd_txfm2d_8x16(src_diff, dst_coeff, diff_stride, tx_type, bd); in highbd_fwd_txfm_8x16()
118 const TX_TYPE tx_type = txfm_param->tx_type; in highbd_fwd_txfm_16x8() local
120 av1_fwd_txfm2d_16x8(src_diff, dst_coeff, diff_stride, tx_type, bd); in highbd_fwd_txfm_16x8()
126 av1_fwd_txfm2d_16x32(src_diff, dst_coeff, diff_stride, txfm_param->tx_type, in highbd_fwd_txfm_16x32()
[all …]
Dav1_fwd_txfm2d.c125 TX_TYPE tx_type, int bd) { in av1_fwd_txfm2d_4x8_c() argument
128 av1_get_fwd_txfm_cfg(tx_type, TX_4X8, &cfg); in av1_fwd_txfm2d_4x8_c()
133 TX_TYPE tx_type, int bd) { in av1_fwd_txfm2d_8x4_c() argument
136 av1_get_fwd_txfm_cfg(tx_type, TX_8X4, &cfg); in av1_fwd_txfm2d_8x4_c()
141 TX_TYPE tx_type, int bd) { in av1_fwd_txfm2d_8x16_c() argument
144 av1_get_fwd_txfm_cfg(tx_type, TX_8X16, &cfg); in av1_fwd_txfm2d_8x16_c()
149 TX_TYPE tx_type, int bd) { in av1_fwd_txfm2d_16x8_c() argument
152 av1_get_fwd_txfm_cfg(tx_type, TX_16X8, &cfg); in av1_fwd_txfm2d_16x8_c()
157 TX_TYPE tx_type, int bd) { in av1_fwd_txfm2d_16x32_c() argument
160 av1_get_fwd_txfm_cfg(tx_type, TX_16X32, &cfg); in av1_fwd_txfm2d_16x32_c()
[all …]
/external/libaom/libaom/test/
Dav1_fwd_txfm2d_test.cc188 const TX_TYPE tx_type = static_cast<TX_TYPE>(t); in GetTxfm2dParamList() local
190 if (libaom_test::IsTxSizeTypeValid(tx_size, tx_type)) { in GetTxfm2dParamList()
192 AV1FwdTxfm2dParam(tx_type, tx_size, max_error, avg_error)); in GetTxfm2dParamList()
210 for (int tx_type = 0; tx_type < TX_TYPES; ++tx_type) { in TEST() local
212 static_cast<TX_TYPE>(tx_type)) == in TEST()
217 av1_get_fwd_txfm_cfg(static_cast<TX_TYPE>(tx_type), in TEST()
243 for (int tx_type = 0; tx_type < TX_TYPES; ++tx_type) { in AV1FwdTxfm2dMatchTest() local
245 tx_size, static_cast<TX_TYPE>(tx_type)) == false) { in AV1FwdTxfm2dMatchTest()
270 param.tx_type = (TX_TYPE)tx_type; in AV1FwdTxfm2dMatchTest()
274 ref_func(input, ref_output, input_stride, (TX_TYPE)tx_type, bd); in AV1FwdTxfm2dMatchTest()
[all …]
Dav1_inv_txfm2d_test.cc196 const TX_TYPE tx_type = static_cast<TX_TYPE>(t); in GetInvTxfm2dParamList() local
198 if (libaom_test::IsTxSizeTypeValid(tx_size, tx_type)) { in GetInvTxfm2dParamList()
200 AV1InvTxfm2dParam(tx_type, tx_size, max_error, avg_error)); in GetInvTxfm2dParamList()
218 for (int tx_type = 0; tx_type < TX_TYPES; ++tx_type) { in TEST() local
220 static_cast<TX_TYPE>(tx_type)) == in TEST()
225 av1_get_inv_txfm_cfg(static_cast<TX_TYPE>(tx_type), in TEST()
246 void RunAV1InvTxfm2dTest(TX_TYPE tx_type, TX_SIZE tx_size, int run_times);
252 void AV1LbdInvTxfm2d::RunAV1InvTxfm2dTest(TX_TYPE tx_type, TX_SIZE tx_size, in RunAV1InvTxfm2dTest() argument
273 const SCAN_ORDER *scan_order = get_default_scan(tx_size, tx_type); in RunAV1InvTxfm2dTest()
287 fwd_func_(input, inv_input, stride, tx_type, bd); in RunAV1InvTxfm2dTest()
[all …]
Dscan_test.cc103 for (int tx_type = 0; tx_type < TX_TYPES; ++tx_type) { in TEST() local
105 static_cast<TX_TYPE>(tx_type)) == in TEST()
110 TX_CLASS tx_class = tx_type_to_class[(TX_TYPE)tx_type]; in TEST()
126 get_default_scan((TX_SIZE)tx_size, (TX_TYPE)tx_type); in TEST()
128 << "scan mismatch tx_class " << tx_class << " tx_type " << tx_type in TEST()
Dencodetxb_test.cc67 for (int tx_type = DCT_DCT; tx_type < TX_TYPES; ++tx_type) { in GetNzMapContextsRun() local
68 const TX_CLASS tx_class = tx_type_to_class[tx_type]; in GetNzMapContextsRun()
75 const int16_t *const scan = av1_scan_orders[tx_size][tx_type].scan; in GetNzMapContextsRun()
110 const TX_TYPE tx_type = DCT_DCT; in SpeedTestGetNzMapContextsRun() local
111 const TX_CLASS tx_class = tx_type_to_class[tx_type]; in SpeedTestGetNzMapContextsRun()
112 const int16_t *const scan = av1_scan_orders[tx_size][tx_type].scan; in SpeedTestGetNzMapContextsRun()
/external/libvpx/libvpx/vp9/common/
Dvp9_idct.c21 int tx_type) { in vp9_iht4x4_16_add_c() argument
36 IHT_4[tx_type].rows(input, outptr); in vp9_iht4x4_16_add_c()
44 IHT_4[tx_type].cols(temp_in, temp_out); in vp9_iht4x4_16_add_c()
60 int tx_type) { in vp9_iht8x8_64_add_c() argument
65 const transform_2d ht = IHT_8[tx_type]; in vp9_iht8x8_64_add_c()
93 int tx_type) { in vp9_iht16x16_256_add_c() argument
98 const transform_2d ht = IHT_16[tx_type]; in vp9_iht16x16_256_add_c()
180 void vp9_iht4x4_add(TX_TYPE tx_type, const tran_low_t *input, uint8_t *dest, in vp9_iht4x4_add() argument
182 if (tx_type == DCT_DCT) in vp9_iht4x4_add()
185 vp9_iht4x4_16_add(input, dest, stride, tx_type); in vp9_iht4x4_add()
[all …]
Dvp9_idct.h52 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,
70 void vp9_highbd_iht4x4_add(TX_TYPE tx_type, const tran_low_t *input,
72 void vp9_highbd_iht8x8_add(TX_TYPE tx_type, const tran_low_t *input,
74 void vp9_highbd_iht16x16_add(TX_TYPE tx_type, const tran_low_t *input,
/external/libvpx/config/arm64/
Dvp9_rtcd.h47 void vp9_fht16x16_c(const int16_t *input, tran_low_t *output, int stride, int tx_type);
50 void vp9_fht4x4_c(const int16_t *input, tran_low_t *output, int stride, int tx_type);
53 void vp9_fht8x8_c(const int16_t *input, tran_low_t *output, int stride, int tx_type);
62 void vp9_highbd_fht16x16_c(const int16_t *input, tran_low_t *output, int stride, int tx_type);
65 void vp9_highbd_fht4x4_c(const int16_t *input, tran_low_t *output, int stride, int tx_type);
68 void vp9_highbd_fht8x8_c(const int16_t *input, tran_low_t *output, int stride, int tx_type);
74 void vp9_highbd_iht16x16_256_add_c(const tran_low_t *input, uint16_t *dest, int stride, int tx_type
75 …bd_iht16x16_256_add_neon(const tran_low_t *input, uint16_t *dest, int stride, int tx_type, int bd);
78 void vp9_highbd_iht4x4_16_add_c(const tran_low_t *input, uint16_t *dest, int stride, int tx_type, i…
79 void vp9_highbd_iht4x4_16_add_neon(const tran_low_t *input, uint16_t *dest, int stride, int tx_type
[all …]
/external/libvpx/config/arm-neon/
Dvp9_rtcd.h47 void vp9_fht16x16_c(const int16_t *input, tran_low_t *output, int stride, int tx_type);
50 void vp9_fht4x4_c(const int16_t *input, tran_low_t *output, int stride, int tx_type);
53 void vp9_fht8x8_c(const int16_t *input, tran_low_t *output, int stride, int tx_type);
62 void vp9_highbd_fht16x16_c(const int16_t *input, tran_low_t *output, int stride, int tx_type);
65 void vp9_highbd_fht4x4_c(const int16_t *input, tran_low_t *output, int stride, int tx_type);
68 void vp9_highbd_fht8x8_c(const int16_t *input, tran_low_t *output, int stride, int tx_type);
74 void vp9_highbd_iht16x16_256_add_c(const tran_low_t *input, uint16_t *dest, int stride, int tx_type
75 …bd_iht16x16_256_add_neon(const tran_low_t *input, uint16_t *dest, int stride, int tx_type, int bd);
78 void vp9_highbd_iht4x4_16_add_c(const tran_low_t *input, uint16_t *dest, int stride, int tx_type, i…
79 void vp9_highbd_iht4x4_16_add_neon(const tran_low_t *input, uint16_t *dest, int stride, int tx_type
[all …]
/external/libvpx/config/x86/
Dvp9_rtcd.h50 void vp9_fht16x16_c(const int16_t *input, tran_low_t *output, int stride, int tx_type);
51 void vp9_fht16x16_sse2(const int16_t *input, tran_low_t *output, int stride, int tx_type);
54 void vp9_fht4x4_c(const int16_t *input, tran_low_t *output, int stride, int tx_type);
55 void vp9_fht4x4_sse2(const int16_t *input, tran_low_t *output, int stride, int tx_type);
58 void vp9_fht8x8_c(const int16_t *input, tran_low_t *output, int stride, int tx_type);
59 void vp9_fht8x8_sse2(const int16_t *input, tran_low_t *output, int stride, int tx_type);
70 void vp9_highbd_fht16x16_c(const int16_t *input, tran_low_t *output, int stride, int tx_type);
73 void vp9_highbd_fht4x4_c(const int16_t *input, tran_low_t *output, int stride, int tx_type);
76 void vp9_highbd_fht8x8_c(const int16_t *input, tran_low_t *output, int stride, int tx_type);
82 void vp9_highbd_iht16x16_256_add_c(const tran_low_t *input, uint16_t *dest, int stride, int tx_type
[all …]
/external/libvpx/config/x86_64/
Dvp9_rtcd.h50 void vp9_fht16x16_c(const int16_t *input, tran_low_t *output, int stride, int tx_type);
51 void vp9_fht16x16_sse2(const int16_t *input, tran_low_t *output, int stride, int tx_type);
54 void vp9_fht4x4_c(const int16_t *input, tran_low_t *output, int stride, int tx_type);
55 void vp9_fht4x4_sse2(const int16_t *input, tran_low_t *output, int stride, int tx_type);
58 void vp9_fht8x8_c(const int16_t *input, tran_low_t *output, int stride, int tx_type);
59 void vp9_fht8x8_sse2(const int16_t *input, tran_low_t *output, int stride, int tx_type);
70 void vp9_highbd_fht16x16_c(const int16_t *input, tran_low_t *output, int stride, int tx_type);
73 void vp9_highbd_fht4x4_c(const int16_t *input, tran_low_t *output, int stride, int tx_type);
76 void vp9_highbd_fht8x8_c(const int16_t *input, tran_low_t *output, int stride, int tx_type);
82 void vp9_highbd_iht16x16_256_add_c(const tran_low_t *input, uint16_t *dest, int stride, int tx_type
[all …]
/external/libvpx/libvpx/vp9/common/ppc/
Dvp9_idct_vsx.c20 int tx_type) { in vp9_iht4x4_16_add_vsx() argument
26 switch (tx_type) { in vp9_iht4x4_16_add_vsx()
40 assert(tx_type == ADST_ADST); in vp9_iht4x4_16_add_vsx()
50 int tx_type) { in vp9_iht8x8_64_add_vsx() argument
63 switch (tx_type) { in vp9_iht8x8_64_add_vsx()
77 assert(tx_type == ADST_ADST); in vp9_iht8x8_64_add_vsx()
87 int stride, int tx_type) { in vp9_iht16x16_256_add_vsx() argument
94 switch (tx_type) { in vp9_iht16x16_256_add_vsx()
108 assert(tx_type == ADST_ADST); in vp9_iht16x16_256_add_vsx()
/external/libvpx/config/generic/
Dvp9_rtcd.h46 void vp9_fht16x16_c(const int16_t *input, tran_low_t *output, int stride, int tx_type);
49 void vp9_fht4x4_c(const int16_t *input, tran_low_t *output, int stride, int tx_type);
52 void vp9_fht8x8_c(const int16_t *input, tran_low_t *output, int stride, int tx_type);
61 void vp9_highbd_fht16x16_c(const int16_t *input, tran_low_t *output, int stride, int tx_type);
64 void vp9_highbd_fht4x4_c(const int16_t *input, tran_low_t *output, int stride, int tx_type);
67 void vp9_highbd_fht8x8_c(const int16_t *input, tran_low_t *output, int stride, int tx_type);
73 void vp9_highbd_iht16x16_256_add_c(const tran_low_t *input, uint16_t *dest, int stride, int tx_type
76 void vp9_highbd_iht4x4_16_add_c(const tran_low_t *input, uint16_t *dest, int stride, int tx_type, i…
79 void vp9_highbd_iht8x8_64_add_c(const tran_low_t *input, uint16_t *dest, int stride, int tx_type, i…
91 void vp9_iht16x16_256_add_c(const tran_low_t *input, uint8_t *dest, int stride, int tx_type);
[all …]
/external/libvpx/libvpx/vp9/common/x86/
Dvp9_highbd_iht4x4_add_sse4.c88 int stride, int tx_type, int bd) { in vp9_highbd_iht4x4_16_add_sse4_1() argument
101 if (tx_type == DCT_DCT || tx_type == ADST_DCT) { in vp9_highbd_iht4x4_16_add_sse4_1()
106 if (tx_type == DCT_DCT || tx_type == DCT_ADST) { in vp9_highbd_iht4x4_16_add_sse4_1()
116 if (tx_type == DCT_DCT || tx_type == ADST_DCT) { in vp9_highbd_iht4x4_16_add_sse4_1()
121 if (tx_type == DCT_DCT || tx_type == DCT_ADST) { in vp9_highbd_iht4x4_16_add_sse4_1()
Dvp9_idct_intrin_sse2.c15 int tx_type) { in vp9_iht4x4_16_add_sse2() argument
22 switch (tx_type) { in vp9_iht4x4_16_add_sse2()
36 assert(tx_type == ADST_ADST); in vp9_iht4x4_16_add_sse2()
53 int tx_type) { in vp9_iht8x8_64_add_sse2() argument
67 switch (tx_type) { in vp9_iht8x8_64_add_sse2()
81 assert(tx_type == ADST_ADST); in vp9_iht8x8_64_add_sse2()
194 int stride, int tx_type) { in vp9_iht16x16_256_add_sse2() argument
201 switch (tx_type) { in vp9_iht16x16_256_add_sse2()
215 assert(tx_type == ADST_ADST); in vp9_iht16x16_256_add_sse2()
/external/libaom/libaom/av1/common/x86/
Dav1_txfm_sse2.h260 int stride, TX_TYPE tx_type, int bd);
263 int stride, TX_TYPE tx_type, int bd);
266 int stride, TX_TYPE tx_type, int bd);
269 int stride, TX_TYPE tx_type, int bd);
272 int stride, TX_TYPE tx_type, int bd);
275 int stride, TX_TYPE tx_type, int bd);
278 int stride, TX_TYPE tx_type, int bd);
281 int stride, TX_TYPE tx_type, int bd);
284 int stride, TX_TYPE tx_type, int bd);
287 int stride, TX_TYPE tx_type, int bd);
[all …]
/external/libaom/libaom/av1/encoder/x86/
Dav1_fwd_txfm2d_sse4.c149 int stride, TX_TYPE tx_type, int bd) { in av1_fwd_txfm2d_32x32_sse4_1() argument
152 av1_get_fwd_txfm_cfg(tx_type, TX_32X32, &cfg); in av1_fwd_txfm2d_32x32_sse4_1()
158 int stride, TX_TYPE tx_type, int bd) { in av1_fwd_txfm2d_64x64_sse4_1() argument
161 av1_get_fwd_txfm_cfg(tx_type, TX_64X64, &cfg); in av1_fwd_txfm2d_64x64_sse4_1()
190 int stride, TX_TYPE tx_type, int bd) { in lowbd_fwd_txfm2d_64x64_sse4_1() argument
192 (void)tx_type; in lowbd_fwd_txfm2d_64x64_sse4_1()
193 assert(tx_type == DCT_DCT); in lowbd_fwd_txfm2d_64x64_sse4_1()
238 int stride, TX_TYPE tx_type, int bd) { in lowbd_fwd_txfm2d_64x32_sse4_1() argument
249 const transform_1d_sse2 col_txfm = col_txfm8x32_arr[tx_type]; in lowbd_fwd_txfm2d_64x32_sse4_1()
262 assert(tx_type == DCT_DCT); in lowbd_fwd_txfm2d_64x32_sse4_1()
[all …]
/external/libvpx/libvpx/test/
Ddct_test.cc39 int tx_type);
41 int size, int tx_type);
43 int tx_type);
45 int tx_type, int bd);
48 void fdct_wrapper(const int16_t *in, tran_low_t *out, int stride, int tx_type) { in fdct_wrapper() argument
49 (void)tx_type; in fdct_wrapper()
54 void idct_wrapper(const tran_low_t *in, uint8_t *out, int stride, int tx_type, in idct_wrapper() argument
56 (void)tx_type; in idct_wrapper()
62 void iht_wrapper(const tran_low_t *in, uint8_t *out, int stride, int tx_type, in iht_wrapper() argument
65 fn(in, out, stride, tx_type); in iht_wrapper()
[all …]
/external/libaom/config/arm/config/
Dav1_rtcd.h213 void av1_inv_txfm2d_add_16x16_c(const int32_t *input, uint16_t *output, int stride, TX_TYPE tx_type
216 void av1_inv_txfm2d_add_16x32_c(const int32_t *input, uint16_t *output, int stride, TX_TYPE tx_type
219 void av1_inv_txfm2d_add_16x4_c(const int32_t *input, uint16_t *output, int stride, TX_TYPE tx_type,…
222 void av1_inv_txfm2d_add_16x64_c(const int32_t *input, uint16_t *output, int stride, TX_TYPE tx_type
225 void av1_inv_txfm2d_add_16x8_c(const int32_t *input, uint16_t *output, int stride, TX_TYPE tx_type,…
228 void av1_inv_txfm2d_add_32x16_c(const int32_t *input, uint16_t *output, int stride, TX_TYPE tx_type
231 void av1_inv_txfm2d_add_32x32_c(const int32_t *input, uint16_t *output, int stride, TX_TYPE tx_type
234 void av1_inv_txfm2d_add_32x64_c(const int32_t *input, uint16_t *output, int stride, TX_TYPE tx_type
237 void av1_inv_txfm2d_add_32x8_c(const int32_t *input, uint16_t *output, int stride, TX_TYPE tx_type,…
240 void av1_inv_txfm2d_add_4x16_c(const int32_t *input, uint16_t *output, int stride, TX_TYPE tx_type,…
[all …]
/external/libaom/config/x86/config/
Dav1_rtcd.h218 void av1_inv_txfm2d_add_16x16_c(const int32_t *input, uint16_t *output, int stride, TX_TYPE tx_type
221 void av1_inv_txfm2d_add_16x32_c(const int32_t *input, uint16_t *output, int stride, TX_TYPE tx_type
224 void av1_inv_txfm2d_add_16x4_c(const int32_t *input, uint16_t *output, int stride, TX_TYPE tx_type,…
227 void av1_inv_txfm2d_add_16x64_c(const int32_t *input, uint16_t *output, int stride, TX_TYPE tx_type
230 void av1_inv_txfm2d_add_16x8_c(const int32_t *input, uint16_t *output, int stride, TX_TYPE tx_type,…
233 void av1_inv_txfm2d_add_32x16_c(const int32_t *input, uint16_t *output, int stride, TX_TYPE tx_type
236 void av1_inv_txfm2d_add_32x32_c(const int32_t *input, uint16_t *output, int stride, TX_TYPE tx_type
239 void av1_inv_txfm2d_add_32x64_c(const int32_t *input, uint16_t *output, int stride, TX_TYPE tx_type
242 void av1_inv_txfm2d_add_32x8_c(const int32_t *input, uint16_t *output, int stride, TX_TYPE tx_type,…
245 void av1_inv_txfm2d_add_4x16_c(const int32_t *input, uint16_t *output, int stride, TX_TYPE tx_type,…
[all …]

1234