Searched defs:left_ctx (Results 1 - 3 of 3) sorted by relevance

/external/libvpx/libvpx/vp9/common/
H A Dvp9_pred_common.h160 int left_ctx = local
162 if (!has_left) left_ctx = above_ctx;
164 if (!has_above) above_ctx = left_ctx;
166 return (above_ctx + left_ctx) > max_tx_size;
H A Dvp9_onyxc_int.h411 PARTITION_CONTEXT *const left_ctx = xd->left_seg_context + (mi_row & MI_MASK); local
420 memset(left_ctx, partition_context_lookup[subsize].left, bs);
426 const PARTITION_CONTEXT *left_ctx = xd->left_seg_context + (mi_row & MI_MASK); local
428 int above = (*above_ctx >> bsl) & 1, left = (*left_ctx >> bsl) & 1;
/external/libvpx/libvpx/vp9/decoder/
H A Dvp9_decodeframe.c866 const PARTITION_CONTEXT *left_ctx = local
868 int above = (*above_ctx >> bsl) & 1, left = (*left_ctx >> bsl) & 1;
879 PARTITION_CONTEXT *const left_ctx = local
886 memset(left_ctx, partition_context_lookup[subsize].left, bw);

Completed in 296 milliseconds