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.c18 static void alloc_mode_context(VP9_COMMON *cm, int num_4x4_blk, in alloc_mode_context() argument
20 const int num_blk = (num_4x4_blk < 4 ? 4 : num_4x4_blk); in alloc_mode_context()
23 ctx->num_4x4_blk = num_blk; in alloc_mode_context()
63 int num_4x4_blk) { in alloc_tree_contexts() argument
64 alloc_mode_context(cm, num_4x4_blk, &tree->none); in alloc_tree_contexts()
65 alloc_mode_context(cm, num_4x4_blk / 2, &tree->horizontal[0]); in alloc_tree_contexts()
66 alloc_mode_context(cm, num_4x4_blk / 2, &tree->vertical[0]); in alloc_tree_contexts()
68 if (num_4x4_blk > 4) { in alloc_tree_contexts()
69 alloc_mode_context(cm, num_4x4_blk / 2, &tree->horizontal[1]); in alloc_tree_contexts()
70 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.c3486 sizeof(ctx->zcoeff_blk[0]) * ctx->num_4x4_blk); in vp9_rd_pick_inter_mode_sb()
4248 sizeof(ctx->zcoeff_blk[0]) * ctx->num_4x4_blk); in vp9_rd_pick_inter_mode_sub8x8()
Dvp9_encodeframe.c1532 sizeof(ctx->zcoeff_blk[0]) * ctx->num_4x4_blk); in update_state()