/external/libvpx/libvpx/vp9/encoder/ |
vp9_tokenize.c | 97 TX_SIZE tx_size; member in struct:tokenize_b_args 101 TX_SIZE tx_size, void *arg) { 106 txfrm_block_to_raster_xy(plane_bsize, tx_size, block, &aoff, &loff); 107 set_contexts(xd, pd, plane_bsize, tx_size, pd->eobs[block] > 0, aoff, loff); 111 TX_SIZE tx_size, void *arg) { 127 vp9_coeff_count *const counts = cpi->coef_counts[tx_size]; 128 vp9_coeff_probs_model *const coef_probs = cpi->common.fc.coef_probs[tx_size]; [all...] |
vp9_encodemb.c | 147 TX_SIZE tx_size) { 166 const int mul = 1 + (tx_size == TX_32X32); 168 const int ib = txfrm_block_to_raster_block(plane_bsize, tx_size, block); 175 switch (tx_size) { 237 mb->token_costs[tx_size][type][ref][band][0][pt] 240 mb->token_costs[tx_size][type][ref][band][0][pt] 288 rate0 += mb->token_costs[tx_size][type][ref][band][!x][pt] 293 rate1 += mb->token_costs[tx_size][type][ref][band][!x][pt] 326 mb->token_costs[tx_size][type][ref][band][1][0][t0] 389 const TX_SIZE tx_size = plane ? get_uv_tx_size(mbmi) : mbmi->tx_size; local [all...] |
vp9_rdopt.c | 115 TX_SIZE t; 408 TX_SIZE tx_size, 420 const int t = 4 << tx_size; 422 if (tx_size == TX_4X4) { 424 } else if (tx_size == TX_8X8) { 426 } else if (tx_size == TX_16X16) { 428 } else if (tx_size == TX_32X32) { 485 TX_SIZE tx_size, 554 TX_SIZE tx_size; member in struct:rdcost_block_args [all...] |
/external/libvpx/libvpx/vp9/decoder/ |
vp9_decodemv.c | 45 static TX_SIZE read_selected_tx_size(VP9_COMMON *cm, MACROBLOCKD *xd, 49 TX_SIZE tx_size = vp9_read(r, tx_probs[0]); local 50 if (tx_size != TX_4X4 && bsize >= BLOCK_16X16) { 51 tx_size += vp9_read(r, tx_probs[1]); 52 if (tx_size != TX_8X8 && bsize >= BLOCK_32X32) 53 tx_size += vp9_read(r, tx_probs[2]); 56 update_tx_counts(bsize, context, tx_size, &cm->counts.tx); 57 return tx_size; 60 static TX_SIZE read_tx_size(VP9D_COMP *pbi, TX_MODE tx_mode [all...] |
/external/bluetooth/bluedroid/btif/include/ |
btif_hl.h | 178 UINT16 tx_size; member in struct:__anon3354
|
/external/libvpx/libvpx/vp9/common/ |
vp9_blockd.h | 137 TX_SIZE tx_size; member in struct:__anon23050 364 static INLINE TX_SIZE get_uv_tx_size(const MB_MODE_INFO *mbmi) { 365 return MIN(mbmi->tx_size, max_uv_txsize_lookup[mbmi->sb_type]); 387 TX_SIZE tx_size, 398 const TX_SIZE tx_size = plane ? get_uv_tx_size(mbmi) 399 : mbmi->tx_size; 403 const int step = 1 << (tx_size << 1) [all...] |
vp9_loopfilter.c | 455 const TX_SIZE tx_size_y = mi->mbmi.tx_size; 456 const TX_SIZE tx_size_uv = get_uv_tx_size(&mi->mbmi); 528 const TX_SIZE tx_size_y = mi->mbmi.tx_size; 830 const TX_SIZE tx_size = (plane->plane_type == PLANE_TYPE_UV) local 832 : mi[0].mbmi.tx_size; 841 if (tx_size == TX_32X32) { 854 } else if (tx_size == TX_16X16) [all...] |