/external/libvpx/libvpx/vp9/encoder/ |
vp9_encodeintra.h | 17 void vp9_encode_block_intra(int plane, int block, BLOCK_SIZE plane_bsize,
|
vp9_encodemb.h | 58 void vp9_xform_quant(int plane, int block, BLOCK_SIZE plane_bsize,
|
vp9_tokenize.c | 100 static void set_entropy_context_b(int plane, int block, BLOCK_SIZE plane_bsize, 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); 110 static void tokenize_b(int plane, int block, BLOCK_SIZE plane_bsize, 135 txfrm_block_to_raster_xy(plane_bsize, tx_size, block, &aoff, &loff); 179 set_contexts(xd, pd, plane_bsize, tx_size, c > 0, aoff, loff); 188 BLOCK_SIZE plane_bsize, TX_SIZE tx_size,
|
vp9_encodemb.c | 145 int plane, int block, BLOCK_SIZE plane_bsize, 168 const int ib = txfrm_block_to_raster_block(plane_bsize, tx_size, block); 373 void vp9_optimize_b(int plane, int block, BLOCK_SIZE plane_bsize, 376 txfrm_block_to_raster_xy(plane_bsize, tx_size, block, &x, &y); 377 optimize_b(mb, plane, block, plane_bsize, 385 const BLOCK_SIZE plane_bsize = get_plane_block_size(bsize, pd); local 386 const int num_4x4_w = num_4x4_blocks_wide_lookup[plane_bsize]; 387 const int num_4x4_h = num_4x4_blocks_high_lookup[plane_bsize]; 422 void vp9_xform_quant(int plane, int block, BLOCK_SIZE plane_bsize, 434 const int bwl = b_width_log2(plane_bsize), bw = 1 << bwl [all...] |
vp9_rdopt.c | 590 static void rate_block(int plane, int block, BLOCK_SIZE plane_bsize, 595 txfrm_block_to_raster_xy(plane_bsize, args->tx_size, block, &x_idx, &y_idx); 603 static void block_yrd_txfm(int plane, int block, BLOCK_SIZE plane_bsize, 625 vp9_encode_block_intra(plane, block, plane_bsize, tx_size, &encode_args); 627 vp9_xform_quant(plane, block, plane_bsize, tx_size, &encode_args); 630 rate_block(plane, block, plane_bsize, tx_size, args); [all...] |
/external/libvpx/libvpx/vp9/common/ |
vp9_blockd.h | 386 BLOCK_SIZE plane_bsize, 400 const BLOCK_SIZE plane_bsize = get_plane_block_size(bsize, pd); 401 const int num_4x4_w = num_4x4_blocks_wide_lookup[plane_bsize]; 402 const int num_4x4_h = num_4x4_blocks_high_lookup[plane_bsize]; 430 visit(plane, i, plane_bsize, tx_size, arg); 436 visit(plane, i, plane_bsize, tx_size, arg); 458 static int raster_block_offset(BLOCK_SIZE plane_bsize, 460 const int bw = b_width_log2(plane_bsize); 465 static int16_t* raster_block_offset_int16(BLOCK_SIZE plane_bsize, 467 const int stride = 4 << b_width_log2(plane_bsize); [all...] |
vp9_entropy.h | 163 const BLOCK_SIZE plane_bsize = get_plane_block_size(bsize, pd); local 165 num_4x4_blocks_wide_lookup[plane_bsize]); 167 num_4x4_blocks_high_lookup[plane_bsize]);
|
/external/libvpx/libvpx/vp9/decoder/ |
vp9_detokenize.c | 219 static void decode_block(int plane, int block, BLOCK_SIZE plane_bsize, 231 txfrm_block_to_raster_xy(plane_bsize, tx_size, block, &aoff, &loff); 238 set_contexts(xd, pd, plane_bsize, tx_size, eob > 0, aoff, loff);
|
vp9_decodframe.c | 88 static void decode_block(int plane, int block, BLOCK_SIZE plane_bsize, 95 const int raster_block = txfrm_block_to_raster_block(plane_bsize, tx_size, 97 uint8_t* const dst = raster_block_offset_uint8(plane_bsize, raster_block, 124 static void decode_block_intra(int plane, int block, BLOCK_SIZE plane_bsize, 129 const int raster_block = txfrm_block_to_raster_block(plane_bsize, tx_size, 131 uint8_t* const dst = raster_block_offset_uint8(plane_bsize, raster_block, 139 extend_for_intra(xd, plane_bsize, plane, block, tx_size); 142 b_width_log2(plane_bsize), tx_size, mode, 146 decode_block(plane, block, plane_bsize, tx_size, arg); [all...] |