Home
last modified time | relevance | path

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

/external/libaom/av1/common/
Dav1_inv_txfm2d.c395 int32_t mod_input[64 * 64]; in av1_inv_txfm2d_add_64x64_c() local
397 memcpy(mod_input + row * 64, input + row * 32, 32 * sizeof(*mod_input)); in av1_inv_txfm2d_add_64x64_c()
398 memset(mod_input + row * 64 + 32, 0, 32 * sizeof(*mod_input)); in av1_inv_txfm2d_add_64x64_c()
400 memset(mod_input + 32 * 64, 0, 32 * 64 * sizeof(*mod_input)); in av1_inv_txfm2d_add_64x64_c()
402 inv_txfm2d_add_facade(mod_input, output, stride, txfm_buf, tx_type, TX_64X64, in av1_inv_txfm2d_add_64x64_c()
411 int32_t mod_input[64 * 32]; in av1_inv_txfm2d_add_64x32_c() local
413 memcpy(mod_input + row * 64, input + row * 32, 32 * sizeof(*mod_input)); in av1_inv_txfm2d_add_64x32_c()
414 memset(mod_input + row * 64 + 32, 0, 32 * sizeof(*mod_input)); in av1_inv_txfm2d_add_64x32_c()
417 inv_txfm2d_add_facade(mod_input, output, stride, txfm_buf, tx_type, TX_64X32, in av1_inv_txfm2d_add_64x32_c()
426 int32_t mod_input[32 * 64]; in av1_inv_txfm2d_add_32x64_c() local
[all …]