Home
last modified time | relevance | path

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

12345

/external/libaom/av1/common/
Didct.c44 assert(av1_ext_tx_used[txfm_param->tx_set_type][txfm_param->tx_type]); in highbd_inv_txfm_add_4x4_c()
49 const TX_TYPE tx_type = txfm_param->tx_type; in highbd_inv_txfm_add_4x4_c() local
51 assert(tx_type == DCT_DCT); in highbd_inv_txfm_add_4x4_c()
56 av1_inv_txfm2d_add_4x4_c(src, CONVERT_TO_SHORTPTR(dest), stride, tx_type, bd); in highbd_inv_txfm_add_4x4_c()
61 assert(av1_ext_tx_used[txfm_param->tx_set_type][txfm_param->tx_type]); in highbd_inv_txfm_add_4x8_c()
64 txfm_param->tx_type, txfm_param->bd); in highbd_inv_txfm_add_4x8_c()
69 assert(av1_ext_tx_used[txfm_param->tx_set_type][txfm_param->tx_type]); in highbd_inv_txfm_add_8x4_c()
72 txfm_param->tx_type, txfm_param->bd); in highbd_inv_txfm_add_8x4_c()
80 txfm_param->tx_type, txfm_param->bd); in highbd_inv_txfm_add_16x32_c()
88 txfm_param->tx_type, txfm_param->bd); in highbd_inv_txfm_add_32x16_c()
[all …]
Dav1_inv_txfm2d.c162 void av1_get_inv_txfm_cfg(TX_TYPE tx_type, TX_SIZE tx_size, in av1_get_inv_txfm_cfg() argument
168 set_flip_cfg(tx_type, cfg); in av1_get_inv_txfm_cfg()
169 const TX_TYPE_1D tx_type_1d_col = vtx_tab[tx_type]; in av1_get_inv_txfm_cfg()
170 const TX_TYPE_1D tx_type_1d_row = htx_tab[tx_type]; in av1_get_inv_txfm_cfg()
320 TX_TYPE tx_type, TX_SIZE tx_size, in inv_txfm2d_add_facade() argument
323 av1_get_inv_txfm_cfg(tx_type, tx_size, &cfg); in inv_txfm2d_add_facade()
330 int stride, TX_TYPE tx_type, int bd) { in av1_inv_txfm2d_add_4x8_c() argument
332 inv_txfm2d_add_facade(input, output, stride, txfm_buf, tx_type, TX_4X8, bd); in av1_inv_txfm2d_add_4x8_c()
336 int stride, TX_TYPE tx_type, int bd) { in av1_inv_txfm2d_add_8x4_c() argument
338 inv_txfm2d_add_facade(input, output, stride, txfm_buf, tx_type, TX_8X4, bd); in av1_inv_txfm2d_add_8x4_c()
[all …]
Dscan.h42 TX_TYPE tx_type) { in get_default_scan() argument
43 return &av1_scan_orders[tx_size][tx_type]; in get_default_scan()
46 static inline const SCAN_ORDER *get_scan(TX_SIZE tx_size, TX_TYPE tx_type) { in get_scan() argument
47 return get_default_scan(tx_size, tx_type); in get_scan()
/external/libaom/av1/encoder/
Dhybrid_fwd_txfm.c81 const TX_TYPE tx_type = txfm_param->tx_type; in highbd_fwd_txfm_4x4() local
84 assert(tx_type == DCT_DCT); in highbd_fwd_txfm_4x4()
88 av1_fwd_txfm2d_4x4(src_diff, dst_coeff, diff_stride, tx_type, bd); in highbd_fwd_txfm_4x4()
94 av1_fwd_txfm2d_4x8(src_diff, dst_coeff, diff_stride, txfm_param->tx_type, in highbd_fwd_txfm_4x8()
101 av1_fwd_txfm2d_8x4(src_diff, dst_coeff, diff_stride, txfm_param->tx_type, in highbd_fwd_txfm_8x4()
108 const TX_TYPE tx_type = txfm_param->tx_type; in highbd_fwd_txfm_8x16() local
110 av1_fwd_txfm2d_8x16(src_diff, dst_coeff, diff_stride, tx_type, bd); in highbd_fwd_txfm_8x16()
116 const TX_TYPE tx_type = txfm_param->tx_type; in highbd_fwd_txfm_16x8() local
118 av1_fwd_txfm2d_16x8(src_diff, dst_coeff, diff_stride, tx_type, bd); in highbd_fwd_txfm_16x8()
124 av1_fwd_txfm2d_16x32(src_diff, dst_coeff, diff_stride, txfm_param->tx_type, in highbd_fwd_txfm_16x32()
[all …]
Dav1_fwd_txfm2d.c130 TX_TYPE tx_type, int bd) { in av1_fwd_txfm2d_4x8_c() argument
133 av1_get_fwd_txfm_cfg(tx_type, TX_4X8, &cfg); in av1_fwd_txfm2d_4x8_c()
138 TX_TYPE tx_type, int bd) { in av1_fwd_txfm2d_8x4_c() argument
141 av1_get_fwd_txfm_cfg(tx_type, TX_8X4, &cfg); in av1_fwd_txfm2d_8x4_c()
146 TX_TYPE tx_type, int bd) { in av1_fwd_txfm2d_8x16_c() argument
149 av1_get_fwd_txfm_cfg(tx_type, TX_8X16, &cfg); in av1_fwd_txfm2d_8x16_c()
154 TX_TYPE tx_type, int bd) { in av1_fwd_txfm2d_16x8_c() argument
157 av1_get_fwd_txfm_cfg(tx_type, TX_16X8, &cfg); in av1_fwd_txfm2d_16x8_c()
162 TX_TYPE tx_type, int bd) { in av1_fwd_txfm2d_16x32_c() argument
165 av1_get_fwd_txfm_cfg(tx_type, TX_16X32, &cfg); in av1_fwd_txfm2d_16x32_c()
[all …]
/external/libvpx/config/arm-neon/
Dvp9_rtcd.h58 void vp9_fht16x16_c(const int16_t *input, tran_low_t *output, int stride, int tx_type);
59 void vp9_fht16x16_neon(const int16_t *input, tran_low_t *output, int stride, int tx_type);
62 void vp9_fht4x4_c(const int16_t *input, tran_low_t *output, int stride, int tx_type);
63 void vp9_fht4x4_neon(const int16_t *input, tran_low_t *output, int stride, int tx_type);
66 void vp9_fht8x8_c(const int16_t *input, tran_low_t *output, int stride, int tx_type);
67 void vp9_fht8x8_neon(const int16_t *input, tran_low_t *output, int stride, int tx_type);
77 void vp9_highbd_fht16x16_c(const int16_t *input, tran_low_t *output, int stride, int tx_type);
78 void vp9_highbd_fht16x16_neon(const int16_t *input, tran_low_t *output, int stride, int tx_type);
81 void vp9_highbd_fht4x4_c(const int16_t *input, tran_low_t *output, int stride, int tx_type);
82 void vp9_highbd_fht4x4_neon(const int16_t *input, tran_low_t *output, int stride, int tx_type);
[all …]
/external/libvpx/config/arm64/
Dvp9_rtcd.h60 void vp9_fht16x16_c(const int16_t *input, tran_low_t *output, int stride, int tx_type);
61 void vp9_fht16x16_neon(const int16_t *input, tran_low_t *output, int stride, int tx_type);
64 void vp9_fht4x4_c(const int16_t *input, tran_low_t *output, int stride, int tx_type);
65 void vp9_fht4x4_neon(const int16_t *input, tran_low_t *output, int stride, int tx_type);
68 void vp9_fht8x8_c(const int16_t *input, tran_low_t *output, int stride, int tx_type);
69 void vp9_fht8x8_neon(const int16_t *input, tran_low_t *output, int stride, int tx_type);
79 void vp9_highbd_fht16x16_c(const int16_t *input, tran_low_t *output, int stride, int tx_type);
80 void vp9_highbd_fht16x16_neon(const int16_t *input, tran_low_t *output, int stride, int tx_type);
83 void vp9_highbd_fht4x4_c(const int16_t *input, tran_low_t *output, int stride, int tx_type);
84 void vp9_highbd_fht4x4_neon(const int16_t *input, tran_low_t *output, int stride, int tx_type);
[all …]
/external/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()
182 void vp9_iht4x4_add(TX_TYPE tx_type, const tran_low_t *input, uint8_t *dest, in vp9_iht4x4_add() argument
184 if (tx_type == DCT_DCT) in vp9_iht4x4_add()
187 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/x86/
Dvp9_rtcd.h59 void vp9_fht16x16_c(const int16_t *input, tran_low_t *output, int stride, int tx_type);
60 void vp9_fht16x16_sse2(const int16_t *input, tran_low_t *output, int stride, int tx_type);
61 RTCD_EXTERN void (*vp9_fht16x16)(const int16_t *input, tran_low_t *output, int stride, int tx_type);
63 void vp9_fht4x4_c(const int16_t *input, tran_low_t *output, int stride, int tx_type);
64 void vp9_fht4x4_sse2(const int16_t *input, tran_low_t *output, int stride, int tx_type);
65 RTCD_EXTERN void (*vp9_fht4x4)(const int16_t *input, tran_low_t *output, int stride, int tx_type);
67 void vp9_fht8x8_c(const int16_t *input, tran_low_t *output, int stride, int tx_type);
68 void vp9_fht8x8_sse2(const int16_t *input, tran_low_t *output, int stride, int tx_type);
69 RTCD_EXTERN void (*vp9_fht8x8)(const int16_t *input, tran_low_t *output, int stride, int tx_type);
79 void vp9_highbd_fht16x16_c(const int16_t *input, tran_low_t *output, int stride, int tx_type);
[all …]
/external/libvpx/config/x86_64/
Dvp9_rtcd.h59 void vp9_fht16x16_c(const int16_t *input, tran_low_t *output, int stride, int tx_type);
60 void vp9_fht16x16_sse2(const int16_t *input, tran_low_t *output, int stride, int tx_type);
63 void vp9_fht4x4_c(const int16_t *input, tran_low_t *output, int stride, int tx_type);
64 void vp9_fht4x4_sse2(const int16_t *input, tran_low_t *output, int stride, int tx_type);
67 void vp9_fht8x8_c(const int16_t *input, tran_low_t *output, int stride, int tx_type);
68 void vp9_fht8x8_sse2(const int16_t *input, tran_low_t *output, int stride, int tx_type);
79 void vp9_highbd_fht16x16_c(const int16_t *input, tran_low_t *output, int stride, int tx_type);
82 void vp9_highbd_fht4x4_c(const int16_t *input, tran_low_t *output, int stride, int tx_type);
85 void vp9_highbd_fht8x8_c(const int16_t *input, tran_low_t *output, int stride, int tx_type);
91 void vp9_highbd_iht16x16_256_add_c(const tran_low_t *input, uint16_t *dest, int stride, int tx_type
[all …]
/external/libaom/test/
Dav1_fwd_txfm2d_test.cc195 const TX_TYPE tx_type = static_cast<TX_TYPE>(t); in GetTxfm2dParamList() local
197 if (libaom_test::IsTxSizeTypeValid(tx_size, tx_type)) { in GetTxfm2dParamList()
199 AV1FwdTxfm2dParam(tx_type, tx_size, max_error, avg_error)); in GetTxfm2dParamList()
217 for (int tx_type = 0; tx_type < TX_TYPES; ++tx_type) { in TEST() local
219 static_cast<TX_TYPE>(tx_type)) == in TEST()
224 av1_get_fwd_txfm_cfg(static_cast<TX_TYPE>(tx_type), in TEST()
250 for (int tx_type = 0; tx_type < TX_TYPES; ++tx_type) { in AV1FwdTxfm2dMatchTest() local
252 tx_size, static_cast<TX_TYPE>(tx_type)) == false) { in AV1FwdTxfm2dMatchTest()
277 param.tx_type = (TX_TYPE)tx_type; in AV1FwdTxfm2dMatchTest()
281 ref_func(input, ref_output, input_stride, (TX_TYPE)tx_type, bd); in AV1FwdTxfm2dMatchTest()
[all …]
Dav1_inv_txfm2d_test.cc203 const TxType tx_type = static_cast<TxType>(t); in GetInvTxfm2dParamList() local
205 if (libaom_test::IsTxSizeTypeValid(tx_size, tx_type)) { in GetInvTxfm2dParamList()
207 AV1InvTxfm2dParam(tx_type, tx_size, max_error, avg_error)); in GetInvTxfm2dParamList()
225 for (int tx_type = 0; tx_type < TX_TYPES; ++tx_type) { in TEST() local
227 static_cast<TxType>(tx_type)) == in TEST()
232 av1_get_inv_txfm_cfg(static_cast<TxType>(tx_type), in TEST()
253 void RunAV1InvTxfm2dTest(TxType tx_type, TxSize tx_size, int run_times,
261 void AV1LbdInvTxfm2d::RunAV1InvTxfm2dTest(TxType tx_type, TxSize tx_size, in RunAV1InvTxfm2dTest() argument
282 const SCAN_ORDER *scan_order = get_default_scan(tx_size, tx_type); in RunAV1InvTxfm2dTest()
297 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()
Dencodemb_test.cc25 void ToScanOrder(TX_SIZE tx_size, TX_TYPE tx_type, tran_low_t *qcoeff_lexico, in ToScanOrder() argument
28 const SCAN_ORDER *const scan_order = get_scan(tx_size, tx_type); in ToScanOrder()
36 void ToLexicoOrder(TX_SIZE tx_size, TX_TYPE tx_type, tran_low_t *qcoeff_scan, in ToLexicoOrder() argument
39 const SCAN_ORDER *const scan_order = get_scan(tx_size, tx_type); in ToLexicoOrder()
46 void Dropout(TX_SIZE tx_size, TX_TYPE tx_type, int dropout_num_before, in Dropout() argument
52 ToLexicoOrder(tx_size, tx_type, qcoeff_scan, qcoeff); in Dropout()
75 av1_dropout_qcoeff_num(&mb, kPlane, kBlock, tx_size, tx_type, in Dropout()
78 ToScanOrder(tx_size, tx_type, qcoeff, qcoeff_scan); in Dropout()
/external/libvpx/config/generic/
Dvp9_rtcd.h55 void vp9_fht16x16_c(const int16_t *input, tran_low_t *output, int stride, int tx_type);
58 void vp9_fht4x4_c(const int16_t *input, tran_low_t *output, int stride, int tx_type);
61 void vp9_fht8x8_c(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
85 void vp9_highbd_iht4x4_16_add_c(const tran_low_t *input, uint16_t *dest, int stride, int tx_type, i…
88 void vp9_highbd_iht8x8_64_add_c(const tran_low_t *input, uint16_t *dest, int stride, int tx_type, i…
100 void vp9_iht16x16_256_add_c(const tran_low_t *input, uint8_t *dest, int stride, int tx_type);
[all …]
/external/libvpx/vp9/common/ppc/
Dvp9_idct_vsx.c21 int tx_type) { in vp9_iht4x4_16_add_vsx() argument
27 switch (tx_type) { in vp9_iht4x4_16_add_vsx()
41 assert(tx_type == ADST_ADST); in vp9_iht4x4_16_add_vsx()
51 int tx_type) { in vp9_iht8x8_64_add_vsx() argument
64 switch (tx_type) { in vp9_iht8x8_64_add_vsx()
78 assert(tx_type == ADST_ADST); in vp9_iht8x8_64_add_vsx()
88 int stride, int tx_type) { in vp9_iht16x16_256_add_vsx() argument
95 switch (tx_type) { in vp9_iht16x16_256_add_vsx()
109 assert(tx_type == ADST_ADST); in vp9_iht16x16_256_add_vsx()
/external/libgav1/src/
Dreconstruction.cc56 int GetNumRows(TransformType tx_type, int tx_height, int non_zero_coeff_count) { in GetNumRows() argument
57 const TransformClass tx_class = GetTransformClass(tx_type); in GetNumRows()
133 void Reconstruct(const dsp::Dsp& dsp, TransformType tx_type, in Reconstruct() argument
143 static constexpr int (*kGetNumRows[])(TransformType tx_type, int tx_height, in Reconstruct()
147 tx_height = kGetNumRows[tx_width_log2 - 2](tx_type, tx_height, in Reconstruct()
156 lossless ? dsp::kTransform1dWht : kRowTransform[tx_type]; in Reconstruct()
161 row_transform_func(tx_type, tx_size, tx_height, buffer, start_x, start_y, in Reconstruct()
168 lossless ? dsp::kTransform1dWht : kColumnTransform[tx_type]; in Reconstruct()
174 column_transform_func(tx_type, tx_size, tx_height, buffer, start_x, start_y, in Reconstruct()
178 template void Reconstruct(const dsp::Dsp& dsp, TransformType tx_type,
[all …]
/external/libaom/config/arm/config/
Dav1_rtcd.h271 void av1_fwd_txfm2d_16x16_c(const int16_t *input, int32_t *output, int stride, TX_TYPE tx_type, int…
272 void av1_fwd_txfm2d_16x16_neon(const int16_t *input, int32_t *output, int stride, TX_TYPE tx_type, …
275 void av1_fwd_txfm2d_16x32_c(const int16_t *input, int32_t *output, int stride, TX_TYPE tx_type, int…
276 void av1_fwd_txfm2d_16x32_neon(const int16_t *input, int32_t *output, int stride, TX_TYPE tx_type, …
279 void av1_fwd_txfm2d_16x4_c(const int16_t *input, int32_t *output, int stride, TX_TYPE tx_type, int …
280 void av1_fwd_txfm2d_16x4_neon(const int16_t *input, int32_t *output, int stride, TX_TYPE tx_type, i…
283 void av1_fwd_txfm2d_16x64_c(const int16_t *input, int32_t *output, int stride, TX_TYPE tx_type, int…
284 void av1_fwd_txfm2d_16x64_neon(const int16_t *input, int32_t *output, int stride, TX_TYPE tx_type, …
287 void av1_fwd_txfm2d_16x8_c(const int16_t *input, int32_t *output, int stride, TX_TYPE tx_type, int …
288 void av1_fwd_txfm2d_16x8_neon(const int16_t *input, int32_t *output, int stride, TX_TYPE tx_type, i…
[all …]
/external/libgav1/src/dsp/
Dinverse_transform_test.cc265 bool IsTxSizeTypeValid(TransformSize tx_size, TransformType tx_type) { in IsTxSizeTypeValid() argument
277 return kTransformTypeInSetMask[tx_set].Contains(tx_type); in IsTxSizeTypeValid()
286 const TransformType tx_type = (tx_type_idx == -1) in TestRandomValues() local
290 (tx_type_idx == -1) ? kTransform1dWht : kRowTransform[tx_type]; in TestRandomValues()
292 (tx_type_idx == -1) ? kTransform1dWht : kColumnTransform[tx_type]; in TestRandomValues()
307 if (!IsTxSizeTypeValid(tx_size_, tx_type)) continue; in TestRandomValues()
327 tx_type, tx_size_, tx_height, inverse_transform_mem_.base_residual, in TestRandomValues()
333 tx_type, tx_size_, tx_height, inverse_transform_mem_.cur_residual, in TestRandomValues()
339 tx_type, tx_size_, tx_height, inverse_transform_mem_.base_residual, in TestRandomValues()
345 tx_type, tx_size_, tx_height, inverse_transform_mem_.cur_residual, in TestRandomValues()
[all …]
/external/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/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()
/external/libaom/config/arm64/config/
Dav1_rtcd.h292 void av1_fwd_txfm2d_16x16_c(const int16_t *input, int32_t *output, int stride, TX_TYPE tx_type, int…
293 void av1_fwd_txfm2d_16x16_neon(const int16_t *input, int32_t *output, int stride, TX_TYPE tx_type, …
296 void av1_fwd_txfm2d_16x32_c(const int16_t *input, int32_t *output, int stride, TX_TYPE tx_type, int…
297 void av1_fwd_txfm2d_16x32_neon(const int16_t *input, int32_t *output, int stride, TX_TYPE tx_type, …
300 void av1_fwd_txfm2d_16x4_c(const int16_t *input, int32_t *output, int stride, TX_TYPE tx_type, int …
301 void av1_fwd_txfm2d_16x4_neon(const int16_t *input, int32_t *output, int stride, TX_TYPE tx_type, i…
304 void av1_fwd_txfm2d_16x64_c(const int16_t *input, int32_t *output, int stride, TX_TYPE tx_type, int…
305 void av1_fwd_txfm2d_16x64_neon(const int16_t *input, int32_t *output, int stride, TX_TYPE tx_type, …
308 void av1_fwd_txfm2d_16x8_c(const int16_t *input, int32_t *output, int stride, TX_TYPE tx_type, int …
309 void av1_fwd_txfm2d_16x8_neon(const int16_t *input, int32_t *output, int stride, TX_TYPE tx_type, i…
[all …]
/external/libaom/config/riscv64/config/
Dav1_rtcd.h228 void av1_fwd_txfm2d_16x16_c(const int16_t *input, int32_t *output, int stride, TX_TYPE tx_type, int…
231 void av1_fwd_txfm2d_16x32_c(const int16_t *input, int32_t *output, int stride, TX_TYPE tx_type, int…
234 void av1_fwd_txfm2d_16x4_c(const int16_t *input, int32_t *output, int stride, TX_TYPE tx_type, int …
237 void av1_fwd_txfm2d_16x64_c(const int16_t *input, int32_t *output, int stride, TX_TYPE tx_type, int…
240 void av1_fwd_txfm2d_16x8_c(const int16_t *input, int32_t *output, int stride, TX_TYPE tx_type, int …
243 void av1_fwd_txfm2d_32x16_c(const int16_t *input, int32_t *output, int stride, TX_TYPE tx_type, int…
246 void av1_fwd_txfm2d_32x32_c(const int16_t *input, int32_t *output, int stride, TX_TYPE tx_type, int…
249 void av1_fwd_txfm2d_32x64_c(const int16_t *input, int32_t *output, int stride, TX_TYPE tx_type, int…
252 void av1_fwd_txfm2d_32x8_c(const int16_t *input, int32_t *output, int stride, TX_TYPE tx_type, int …
255 void av1_fwd_txfm2d_4x16_c(const int16_t *input, int32_t *output, int stride, TX_TYPE tx_type, int …
[all …]
/external/libaom/av1/encoder/x86/
Dav1_fwd_txfm2d_sse4.c156 int stride, TX_TYPE tx_type, int bd) { in av1_fwd_txfm2d_32x32_sse4_1() argument
159 av1_get_fwd_txfm_cfg(tx_type, TX_32X32, &cfg); in av1_fwd_txfm2d_32x32_sse4_1()
165 int stride, TX_TYPE tx_type, int bd) { in av1_fwd_txfm2d_64x64_sse4_1() argument
168 av1_get_fwd_txfm_cfg(tx_type, TX_64X64, &cfg); in av1_fwd_txfm2d_64x64_sse4_1()
174 int stride, TX_TYPE tx_type, int bd) { in lowbd_fwd_txfm2d_64x64_sse4_1() argument
176 (void)tx_type; in lowbd_fwd_txfm2d_64x64_sse4_1()
177 assert(tx_type == DCT_DCT); in lowbd_fwd_txfm2d_64x64_sse4_1()
218 int stride, TX_TYPE tx_type, int bd) { in lowbd_fwd_txfm2d_64x32_sse4_1() argument
229 const transform_1d_sse2 col_txfm = col_txfm8x32_arr[tx_type]; in lowbd_fwd_txfm2d_64x32_sse4_1()
242 assert(tx_type == DCT_DCT); in lowbd_fwd_txfm2d_64x32_sse4_1()
[all …]

12345