Searched refs:BLOCK_OFFSET (Results 1 – 7 of 7) sorted by relevance
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/ |
D | vp9_encodemb.c | 117 const int16_t *coeff = BLOCK_OFFSET(mb->plane[plane].coeff, block); in optimize_b() 118 int16_t *qcoeff = BLOCK_OFFSET(p->qcoeff, block); in optimize_b() 119 int16_t *dqcoeff = BLOCK_OFFSET(pd->dqcoeff, block); in optimize_b() 323 int16_t *const coeff = BLOCK_OFFSET(p->coeff, block); in vp9_xform_quant() 324 int16_t *const qcoeff = BLOCK_OFFSET(p->qcoeff, block); in vp9_xform_quant() 325 int16_t *const dqcoeff = BLOCK_OFFSET(pd->dqcoeff, block); in vp9_xform_quant() 375 int16_t *const dqcoeff = BLOCK_OFFSET(pd->dqcoeff, block); in encode_block() 434 int16_t *const dqcoeff = BLOCK_OFFSET(pd->dqcoeff, block); in encode_block_pass1() 483 int16_t *coeff = BLOCK_OFFSET(p->coeff, block); in encode_block_intra() 484 int16_t *qcoeff = BLOCK_OFFSET(p->qcoeff, block); in encode_block_intra() [all …]
|
D | vp9_quantize.c | 135 vp9_quantize_b(BLOCK_OFFSET(p->coeff, block), in vp9_regular_quantize_b_4x4() 138 BLOCK_OFFSET(p->qcoeff, block), in vp9_regular_quantize_b_4x4() 139 BLOCK_OFFSET(pd->dqcoeff, block), in vp9_regular_quantize_b_4x4()
|
D | vp9_tokenize.c | 224 const int16_t *qcoeff = BLOCK_OFFSET(p->qcoeff, block); in tokenize_b()
|
D | vp9_rdopt.c | 565 const int16_t *const qcoeff = BLOCK_OFFSET(p->qcoeff, block); in cost_coeffs() 635 int16_t *const coeff = BLOCK_OFFSET(p->coeff, block); in dist_block() 636 int16_t *const dqcoeff = BLOCK_OFFSET(pd->dqcoeff, block); in dist_block() 1101 int16_t *const coeff = BLOCK_OFFSET(x->plane[0].coeff, block); in rd_pick_intra4x4block() 1119 vp9_iwht4x4_add(BLOCK_OFFSET(pd->dqcoeff, block), dst, dst_stride, in rd_pick_intra4x4block() 1130 distortion += vp9_block_error(coeff, BLOCK_OFFSET(pd->dqcoeff, block), in rd_pick_intra4x4block() 1134 vp9_iht4x4_add(tx_type, BLOCK_OFFSET(pd->dqcoeff, block), in rd_pick_intra4x4block() 1588 coeff = BLOCK_OFFSET(p->coeff, k); in encode_inter_mb_segment() 1592 thisdistortion += vp9_block_error(coeff, BLOCK_OFFSET(pd->dqcoeff, k), in encode_inter_mb_segment()
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/decoder/ |
D | vp9_detokenize.c | 205 BLOCK_OFFSET(pd->dqcoeff, block), tx_size, in vp9_decode_block_tokens()
|
D | vp9_decodeframe.c | 199 int16_t *const dqcoeff = BLOCK_OFFSET(pd->dqcoeff, block); in inverse_transform_block()
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/ |
D | vp9_blockd.h | 194 #define BLOCK_OFFSET(x, i) ((x) + (i) * 16) macro
|