Searched refs:blk_skip (Results 1 – 5 of 5) sorted by relevance
/external/libaom/libaom/av1/encoder/ |
D | block.h | 101 uint8_t blk_skip[MAX_MIB_SIZE * MAX_MIB_SIZE]; member 145 uint8_t blk_skip[MAX_MIB_SIZE * MAX_MIB_SIZE]; member 322 uint8_t blk_skip[MAX_MIB_SIZE * MAX_MIB_SIZE]; member 487 x->blk_skip[blk_idx] |= 1UL << plane; in set_blk_skip() 489 x->blk_skip[blk_idx] &= ~(1UL << plane); in set_blk_skip() 494 x->blk_skip[blk_idx] |= 1UL << (1 + 4); in set_blk_skip() 495 x->blk_skip[blk_idx] |= 1UL << (2 + 4); in set_blk_skip() 499 x->blk_skip[blk_idx] &= ~(1UL << (plane + 4)); in set_blk_skip() 506 assert(!(x->blk_skip[blk_idx] & (1UL << (plane + 4)))); in is_blk_skip() 509 assert((x->blk_skip[blk_idx] & 0x88) == 0); in is_blk_skip() [all …]
|
D | context_tree.c | 33 CHECK_MEM_ERROR(cm, ctx->blk_skip, aom_calloc(num_blk, sizeof(uint8_t))); in alloc_mode_context() 56 aom_free(ctx->blk_skip); in free_mode_context() 57 ctx->blk_skip = 0; in free_mode_context() 223 memcpy(dst_ctx->blk_skip, src_ctx->blk_skip, in av1_copy_tree_context()
|
D | context_tree.h | 44 uint8_t *blk_skip; member
|
D | rdopt.c | 863 bool true_rd, uint8_t *blk_skip, in inter_modes_info_push() argument 874 if (blk_skip != NULL) { in inter_modes_info_push() 875 memcpy(inter_modes_info->blk_skip_arr[num], blk_skip, in inter_modes_info_push() 876 sizeof(blk_skip[0]) * MAX_MIB_SIZE * MAX_MIB_SIZE); in inter_modes_info_push() 3791 memcpy(best_blk_skip, x->blk_skip, sizeof(best_blk_skip[0]) * n4); in choose_tx_size_type_from_rd() 3809 memcpy(x->blk_skip, best_blk_skip, sizeof(best_blk_skip[0]) * n4); in choose_tx_size_type_from_rd() 3966 memcpy(tx_rd_info->blk_skip, x->blk_skip, in save_tx_rd_info() 3967 sizeof(tx_rd_info->blk_skip[0]) * n4); in save_tx_rd_info() 3978 memcpy(x->blk_skip, tx_rd_info->blk_skip, in fetch_tx_rd_info() 3979 sizeof(tx_rd_info->blk_skip[0]) * n4); in fetch_tx_rd_info() [all …]
|
D | encodeframe.c | 326 av1_zero(x->blk_skip); in reset_tx_size() 356 memcpy(x->blk_skip, ctx->blk_skip, sizeof(x->blk_skip[0]) * ctx->num_4x4_blk); in update_state() 2382 memset(x->blk_skip, 0x77, sizeof(x->blk_skip)); in rd_pick_sqr_partition() 3216 memset(x->blk_skip, 0x77, sizeof(x->blk_skip)); in rd_pick_partition()
|