Searched refs:mod_input (Results 1 – 1 of 1) sorted by relevance
/external/libaom/libaom/av1/common/ |
D | av1_inv_txfm2d.c | 415 int32_t mod_input[64 * 64]; in av1_inv_txfm2d_add_64x64_c() local 417 memcpy(mod_input + row * 64, input + row * 32, 32 * sizeof(*mod_input)); in av1_inv_txfm2d_add_64x64_c() 418 memset(mod_input + row * 64 + 32, 0, 32 * sizeof(*mod_input)); in av1_inv_txfm2d_add_64x64_c() 420 memset(mod_input + 32 * 64, 0, 32 * 64 * sizeof(*mod_input)); in av1_inv_txfm2d_add_64x64_c() 422 inv_txfm2d_add_facade(mod_input, output, stride, txfm_buf, tx_type, TX_64X64, in av1_inv_txfm2d_add_64x64_c() 431 int32_t mod_input[64 * 32]; in av1_inv_txfm2d_add_64x32_c() local 433 memcpy(mod_input + row * 64, input + row * 32, 32 * sizeof(*mod_input)); in av1_inv_txfm2d_add_64x32_c() 434 memset(mod_input + row * 64 + 32, 0, 32 * sizeof(*mod_input)); in av1_inv_txfm2d_add_64x32_c() 437 inv_txfm2d_add_facade(mod_input, output, stride, txfm_buf, tx_type, TX_64X32, in av1_inv_txfm2d_add_64x32_c() 446 int32_t mod_input[32 * 64]; in av1_inv_txfm2d_add_32x64_c() local [all …]
|