Home
last modified time | relevance | path

Searched refs:num_4x4_blk (Results 1 – 8 of 8) 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.c3643 sizeof(ctx->zcoeff_blk[0]) * ctx->num_4x4_blk); in vp9_rd_pick_inter_mode_sb()
4415 sizeof(ctx->zcoeff_blk[0]) * ctx->num_4x4_blk); in vp9_rd_pick_inter_mode_sub8x8()
Dvp9_encodeframe.c1804 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()
218 dst_ctx->num_4x4_blk = src_ctx->num_4x4_blk; in av1_copy_tree_context()
224 sizeof(uint8_t) * src_ctx->num_4x4_blk); in av1_copy_tree_context()
Dcontext_tree.h52 int num_4x4_blk; member
Drdopt.c4334 memcpy(blk_skip, x->blk_skip, sizeof(x->blk_skip[0]) * ctx->num_4x4_blk); in palette_rd_y()
4513 sizeof(x->blk_skip[0]) * ctx->num_4x4_blk); in rd_pick_filter_intra_sby()
4789 sizeof(x->blk_skip[0]) * ctx->num_4x4_blk); in intra_block_yrd()
4896 sizeof(x->blk_skip[0]) * ctx->num_4x4_blk); in rd_pick_intra_sby_mode()
10823 sizeof(x->blk_skip[0]) * ctx->num_4x4_blk); in av1_rd_pick_intra_mode_sb()
10856 sizeof(x->blk_skip[0]) * ctx->num_4x4_blk); in av1_rd_pick_intra_mode_sb()
11148 sizeof(x->blk_skip[0]) * ctx->num_4x4_blk); in sf_refine_fast_tx_type_search()
11678 sizeof(x->blk_skip[0]) * ctx->num_4x4_blk); in search_palette_mode()
12115 sizeof(best_blk_skip[0]) * ctx->num_4x4_blk); in handle_intra_mode()
12160 sizeof(best_blk_skip[0]) * ctx->num_4x4_blk); in handle_intra_mode()
[all …]
Dencodeframe.c356 memcpy(x->blk_skip, ctx->blk_skip, sizeof(x->blk_skip[0]) * ctx->num_4x4_blk); in update_state()