Searched refs:num_4x4_blk (Results 1 – 10 of 10) sorted by relevance
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_context_tree.c | 21 static void alloc_mode_context(VP9_COMMON *cm, int num_4x4_blk, in alloc_mode_context() argument 23 const int num_blk = (num_4x4_blk < 4 ? 4 : num_4x4_blk); in alloc_mode_context() 26 ctx->num_4x4_blk = num_blk; in alloc_mode_context() 66 int num_4x4_blk) { in alloc_tree_contexts() argument 67 alloc_mode_context(cm, num_4x4_blk, &tree->none); in alloc_tree_contexts() 68 alloc_mode_context(cm, num_4x4_blk / 2, &tree->horizontal[0]); in alloc_tree_contexts() 69 alloc_mode_context(cm, num_4x4_blk / 2, &tree->vertical[0]); in alloc_tree_contexts() 71 if (num_4x4_blk > 4) { in alloc_tree_contexts() 72 alloc_mode_context(cm, num_4x4_blk / 2, &tree->horizontal[1]); in alloc_tree_contexts() 73 alloc_mode_context(cm, num_4x4_blk / 2, &tree->vertical[1]); in alloc_tree_contexts()
|
D | vp9_context_tree.h | 42 int num_4x4_blk; member
|
D | vp9_rdopt.c | 3841 sizeof(ctx->zcoeff_blk[0]) * ctx->num_4x4_blk); in vp9_rd_pick_inter_mode_sb() 4613 sizeof(ctx->zcoeff_blk[0]) * ctx->num_4x4_blk); in vp9_rd_pick_inter_mode_sub8x8()
|
D | vp9_encodeframe.c | 1873 sizeof(ctx->zcoeff_blk[0]) * ctx->num_4x4_blk); in update_state()
|
/external/libaom/libaom/av1/encoder/ |
D | context_tree.c | 31 ctx->num_4x4_blk = num_blk; in alloc_mode_context() 247 dst_ctx->num_4x4_blk = src_ctx->num_4x4_blk; in av1_copy_tree_context() 254 sizeof(uint8_t) * src_ctx->num_4x4_blk); in av1_copy_tree_context() 256 src_ctx->num_4x4_blk); in av1_copy_tree_context()
|
D | intra_mode_search.c | 455 av1_copy_array(best_tx_type_map, xd->tx_type_map, ctx->num_4x4_blk); in rd_pick_filter_intra_sby() 457 sizeof(x->blk_skip[0]) * ctx->num_4x4_blk); in rd_pick_filter_intra_sby() 470 av1_copy_array(ctx->tx_type_map, best_tx_type_map, ctx->num_4x4_blk); in rd_pick_filter_intra_sby() 628 memcpy(blk_skip, x->blk_skip, sizeof(x->blk_skip[0]) * ctx->num_4x4_blk); in palette_rd_y() 629 av1_copy_array(tx_type_map, xd->tx_type_map, ctx->num_4x4_blk); in palette_rd_y() 1572 av1_copy_array(xd->tx_type_map, best_tx_type_map, ctx->num_4x4_blk); in av1_search_palette_mode() 1649 av1_copy_array(ctx->blk_skip, x->blk_skip, ctx->num_4x4_blk); in intra_block_yrd() 1650 av1_copy_array(ctx->tx_type_map, xd->tx_type_map, ctx->num_4x4_blk); in intra_block_yrd() 1797 sizeof(best_blk_skip[0]) * ctx->num_4x4_blk); in av1_handle_intra_mode() 1799 av1_copy_array(best_tx_type_map, xd->tx_type_map, ctx->num_4x4_blk); in av1_handle_intra_mode() [all …]
|
D | context_tree.h | 42 int num_4x4_blk; member
|
D | rdopt.c | 2698 av1_copy_array(best_tx_type_map, xd->tx_type_map, ctx->num_4x4_blk); in rd_pick_intrabc_mode_sb() 2813 av1_copy_array(xd->tx_type_map, best_tx_type_map, ctx->num_4x4_blk); in rd_pick_intrabc_mode_sb() 2852 sizeof(x->blk_skip[0]) * ctx->num_4x4_blk); in av1_rd_pick_intra_mode_sb() 2853 av1_copy_array(xd->tx_type_map, ctx->tx_type_map, ctx->num_4x4_blk); in av1_rd_pick_intra_mode_sb() 2856 av1_copy_array(ctx->tx_type_map, xd->tx_type_map, ctx->num_4x4_blk); in av1_rd_pick_intra_mode_sb() 2883 sizeof(x->blk_skip[0]) * ctx->num_4x4_blk); in av1_rd_pick_intra_mode_sb() 2891 av1_copy_array(ctx->tx_type_map, xd->tx_type_map, ctx->num_4x4_blk); in av1_rd_pick_intra_mode_sb() 3195 av1_copy_array(ctx->blk_skip, x->blk_skip, ctx->num_4x4_blk); in refine_winner_mode_tx() 3196 av1_copy_array(ctx->tx_type_map, xd->tx_type_map, ctx->num_4x4_blk); in refine_winner_mode_tx() 4123 memcpy(ctx->blk_skip, x->blk_skip, sizeof(x->blk_skip[0]) * ctx->num_4x4_blk); in update_search_state() [all …]
|
D | nonrd_pickmode.c | 922 memset(ctx->blk_skip, 0, sizeof(ctx->blk_skip[0]) * ctx->num_4x4_blk); 924 sizeof(ctx->tx_type_map[0]) * ctx->num_4x4_blk);
|
D | encodeframe.c | 556 memcpy(x->blk_skip, ctx->blk_skip, sizeof(x->blk_skip[0]) * ctx->num_4x4_blk); in update_state()
|