Home
last modified time | relevance | path

Searched refs:num_4x4_blk (Results 1 – 4 of 4) 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()
67 int num_4x4_blk) { in alloc_tree_contexts() argument
68 alloc_mode_context(cm, num_4x4_blk, &tree->none); in alloc_tree_contexts()
69 alloc_mode_context(cm, num_4x4_blk/2, &tree->horizontal[0]); in alloc_tree_contexts()
70 alloc_mode_context(cm, num_4x4_blk/2, &tree->vertical[0]); in alloc_tree_contexts()
72 if (num_4x4_blk > 4) { in alloc_tree_contexts()
73 alloc_mode_context(cm, num_4x4_blk/2, &tree->horizontal[1]); in alloc_tree_contexts()
74 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.c3437 sizeof(ctx->zcoeff_blk[0]) * ctx->num_4x4_blk); in vp9_rd_pick_inter_mode_sb()
4204 sizeof(ctx->zcoeff_blk[0]) * ctx->num_4x4_blk); in vp9_rd_pick_inter_mode_sub8x8()
Dvp9_encodeframe.c1051 sizeof(ctx->zcoeff_blk[0]) * ctx->num_4x4_blk); in update_state()