Home
last modified time | relevance | path

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

/external/libvpx/libvpx/vp9/encoder/
Dvp9_context_tree.c21 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()
Dvp9_context_tree.h42 int num_4x4_blk; member
Dvp9_rdopt.c3841 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()
Dvp9_encodeframe.c1873 sizeof(ctx->zcoeff_blk[0]) * ctx->num_4x4_blk); in update_state()
/external/libaom/libaom/av1/encoder/
Dcontext_tree.c31 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()
Dintra_mode_search.c455 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 …]
Dcontext_tree.h42 int num_4x4_blk; member
Drdopt.c2698 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 …]
Dnonrd_pickmode.c922 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);
Dencodeframe.c556 memcpy(x->blk_skip, ctx->blk_skip, sizeof(x->blk_skip[0]) * ctx->num_4x4_blk); in update_state()