Searched refs:num_4x4_blk (Results 1 – 4 of 4) sorted by relevance
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_context_tree.c | 18 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()
|
D | vp9_context_tree.h | 42 int num_4x4_blk; member
|
D | vp9_rdopt.c | 3512 sizeof(ctx->zcoeff_blk[0]) * ctx->num_4x4_blk); in vp9_rd_pick_inter_mode_sb() 4274 sizeof(ctx->zcoeff_blk[0]) * ctx->num_4x4_blk); in vp9_rd_pick_inter_mode_sub8x8()
|
D | vp9_encodeframe.c | 1749 sizeof(ctx->zcoeff_blk[0]) * ctx->num_4x4_blk); in update_state()
|