Searched refs:ctx_shift_l (Results 1 – 1 of 1) sorted by relevance
/external/libvpx/libvpx/vp9/decoder/ |
D | vp9_detokenize.c | 221 static void get_ctx_shift(MACROBLOCKD *xd, int *ctx_shift_a, int *ctx_shift_l, in get_ctx_shift() argument 229 *ctx_shift_l = (tx_size_in_blocks - (xd->max_blocks_high - y)) * 8; in get_ctx_shift() 245 int ctx_shift_l = 0; in vp9_decode_block_tokens() local 256 get_ctx_shift(xd, &ctx_shift_a, &ctx_shift_l, x, y, 1 << TX_8X8); in vp9_decode_block_tokens() 262 *(uint16_t *)l = ((eob > 0) * 0x0101) >> ctx_shift_l; in vp9_decode_block_tokens() 265 get_ctx_shift(xd, &ctx_shift_a, &ctx_shift_l, x, y, 1 << TX_16X16); in vp9_decode_block_tokens() 271 *(uint32_t *)l = ((eob > 0) * 0x01010101) >> ctx_shift_l; in vp9_decode_block_tokens() 274 get_ctx_shift(xd, &ctx_shift_a, &ctx_shift_l, x, y, 1 << TX_32X32); in vp9_decode_block_tokens() 283 *(uint64_t *)l = ((eob > 0) * 0x0101010101010101ULL) >> ctx_shift_l; in vp9_decode_block_tokens()
|