Searched refs:num_4x4_blk (Results 1 – 4 of 4) sorted by relevance
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_context_tree.c | 21 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() 29 vpx_calloc(num_4x4_blk, sizeof(uint8_t))); 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() 74 alloc_mode_context(cm, num_4x4_blk/2, &tree->horizontal[1]); in alloc_tree_contexts() 75 alloc_mode_context(cm, num_4x4_blk/2, &tree->vertical[1]); in alloc_tree_contexts()
|
D | vp9_context_tree.h | 34 int num_4x4_blk; member
|
D | vp9_rdopt.c | 2939 sizeof(uint8_t) * ctx->num_4x4_blk); in vp9_rd_pick_inter_mode_sb() 3661 sizeof(uint8_t) * ctx->num_4x4_blk); in vp9_rd_pick_inter_mode_sub8x8()
|
D | vp9_encodeframe.c | 591 sizeof(uint8_t) * ctx->num_4x4_blk); in update_state()
|