/external/libvpx/libvpx/vp9/encoder/ |
vp9_context_tree.h | 32 tran_low_t *dqcoeff[MAX_MB_PLANE][3]; member in struct:__anon18037
|
vp9_encodemb.c | 100 tran_low_t *const dqcoeff = BLOCK_OFFSET(pd->dqcoeff, block); local 168 dx = mul * (dqcoeff[rc] - coeff[rc]); 286 memset(dqcoeff, 0, sizeof(*dqcoeff) * (16 << (tx_size * 2))); 295 dqcoeff[rc] = (x * dequant_ptr[rc != 0]) / mul; 333 tran_low_t *const dqcoeff = BLOCK_OFFSET(pd->dqcoeff, block); local 348 qcoeff, dqcoeff, pd->dequant, 355 p->quant_fp, p->quant_shift, qcoeff, dqcoeff, 422 tran_low_t *const dqcoeff = BLOCK_OFFSET(pd->dqcoeff, block); local 504 tran_low_t *const dqcoeff = BLOCK_OFFSET(pd->dqcoeff, block); local 593 tran_low_t *const dqcoeff = BLOCK_OFFSET(pd->dqcoeff, block); local 711 tran_low_t *const dqcoeff = BLOCK_OFFSET(pd->dqcoeff, block); local 774 tran_low_t *dqcoeff = BLOCK_OFFSET(pd->dqcoeff, block); local [all...] |
vp9_pickmode.c | 607 tran_low_t *const dqcoeff = BLOCK_OFFSET(pd->dqcoeff, block); local 618 qcoeff, dqcoeff, pd->dequant, eob, 624 p->quant_fp, p->quant_shift, qcoeff, dqcoeff, 631 p->quant_fp, p->quant_shift, qcoeff, dqcoeff, 638 p->quant_fp, p->quant_shift, qcoeff, dqcoeff, 670 tran_low_t *const dqcoeff = BLOCK_OFFSET(pd->dqcoeff, block); local 678 *dist += vp9_block_error_fp(coeff, dqcoeff, step << 4) >> shift; [all...] |
vp9_rdopt.c | 143 pd->dqcoeff = ctx->dqcoeff_pbuf[i][m]; 153 ctx->dqcoeff_pbuf[i][n] = pd->dqcoeff; 274 const tran_low_t *dqcoeff, 283 const int64_t diff = coeff[i] - dqcoeff[i]; 296 const tran_low_t *dqcoeff, 303 return vp9_block_error_c(coeff, dqcoeff, block_size, ssz); 307 const tran_low_t *dqcoeff, 311 return vp9_highbd_block_error_8bit(coeff, dqcoeff, block_size, ssz); 313 return vp9_highbd_block_error(coeff, dqcoeff, block_size, ssz, bd); 318 int64_t vp9_block_error_c(const tran_low_t *coeff, const tran_low_t *dqcoeff, 452 tran_low_t *const dqcoeff = BLOCK_OFFSET(pd->dqcoeff, block); local 517 tran_low_t *const dqcoeff = BLOCK_OFFSET(xd->plane[plane].dqcoeff, block); local [all...] |
/external/libvpx/libvpx/vp9/common/ |
vp9_blockd.h | 122 tran_low_t *dqcoeff; member in struct:macroblockd_plane
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/ |
vp9_blockd.h | 183 int16_t *dqcoeff; member in struct:macroblockd_plane 236 DECLARE_ALIGNED(16, int16_t, dqcoeff[MAX_MB_PLANE][64 * 64]);
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/ |
vp9_encodemb.c | 119 int16_t *dqcoeff = BLOCK_OFFSET(pd->dqcoeff, block); local 186 dx = mul * (dqcoeff[rc] - coeff[rc]); 290 vpx_memset(dqcoeff, 0, sizeof(*dqcoeff) * (16 << (tx_size * 2))); 298 dqcoeff[rc] = (x * dequant_ptr[rc != 0]) / mul; 325 int16_t *const dqcoeff = BLOCK_OFFSET(pd->dqcoeff, block); local 337 p->quant, p->quant_shift, qcoeff, dqcoeff, 344 p->quant, p->quant_shift, qcoeff, dqcoeff, 375 int16_t *const dqcoeff = BLOCK_OFFSET(pd->dqcoeff, block); local 434 int16_t *const dqcoeff = BLOCK_OFFSET(pd->dqcoeff, block); local 485 int16_t *dqcoeff = BLOCK_OFFSET(pd->dqcoeff, block); local [all...] |
vp9_block.h | 35 int16_t *dqcoeff[MAX_MB_PLANE][3]; member in struct:__anon31532
|
vp9_rdopt.c | 526 int64_t vp9_block_error_c(const int16_t *coeff, const int16_t *dqcoeff, 532 const int diff = coeff[i] - dqcoeff[i]; 636 int16_t *const dqcoeff = BLOCK_OFFSET(pd->dqcoeff, block); local 637 args->dist = vp9_block_error(coeff, dqcoeff, 16 << ss_txfrm_size, [all...] |
/external/libvpx/libvpx/vp8/common/ |
blockd.h | 203 short *dqcoeff; member in struct:blockd 219 DECLARE_ALIGNED(16, short, dqcoeff[400]);
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/ |
blockd.h | 199 short *dqcoeff; member in struct:blockd 215 DECLARE_ALIGNED(16, short, dqcoeff[400]);
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/decoder/ |
vp9_decodeframe.c | 199 int16_t *const dqcoeff = BLOCK_OFFSET(pd->dqcoeff, block); local 204 xd->itxm_add(dqcoeff, dst, stride, eob); 206 vp9_iht4x4_16_add(dqcoeff, dst, stride, tx_type); 210 vp9_iht8x8_add(tx_type, dqcoeff, dst, stride, eob); 214 vp9_iht16x16_add(tx_type, dqcoeff, dst, stride, eob); 218 vp9_idct32x32_add(dqcoeff, dst, stride, eob); 225 vpx_memset(dqcoeff, 0, 2 * sizeof(dqcoeff[0])); 228 vpx_memset(dqcoeff, 0, 4 * (4 << tx_size) * sizeof(dqcoeff[0])) [all...] |
/external/libvpx/libvpx/vp9/decoder/ |
vp9_decodeframe.c | 193 tran_low_t *const dqcoeff = pd->dqcoeff; local 197 vp9_highbd_iwht4x4_add(dqcoeff, dst, stride, eob, xd->bd); 201 vp9_highbd_idct4x4_add(dqcoeff, dst, stride, eob, xd->bd); 204 vp9_highbd_idct8x8_add(dqcoeff, dst, stride, eob, xd->bd); 207 vp9_highbd_idct16x16_add(dqcoeff, dst, stride, eob, xd->bd); 210 vp9_highbd_idct32x32_add(dqcoeff, dst, stride, eob, xd->bd); 218 vp9_iwht4x4_add(dqcoeff, dst, stride, eob); 222 vp9_idct4x4_add(dqcoeff, dst, stride, eob); 225 vp9_idct8x8_add(dqcoeff, dst, stride, eob) 283 tran_low_t *const dqcoeff = pd->dqcoeff; local [all...] |