/external/libvpx/libvpx/vp9/common/ |
D | vp9_blockd.c | 55 const int max_blocks_wide = in vp9_foreach_transformed_block_in_plane() local 63 const int extra_step = ((num_4x4_w - max_blocks_wide) >> tx_size) * step; in vp9_foreach_transformed_block_in_plane() 69 for (c = 0; c < max_blocks_wide; c += (1 << tx_size)) { in vp9_foreach_transformed_block_in_plane()
|
D | vp9_blockd.h | 166 unsigned int max_blocks_wide; member
|
/external/libaom/libaom/av1/encoder/ |
D | tokenize.c | 141 const int max_blocks_wide = max_block_wide(xd, plane_bsize, plane); in tokenize_vartx() local 143 if (blk_row >= max_blocks_high || blk_col >= max_blocks_wide) return; in tokenize_vartx() 171 if (offsetr >= max_blocks_high || offsetc >= max_blocks_wide) continue; in tokenize_vartx()
|
D | encodemb.c | 468 const int max_blocks_wide = max_block_wide(xd, plane_bsize, plane); in encode_block_inter() local 470 if (blk_row >= max_blocks_high || blk_col >= max_blocks_wide) return; in encode_block_inter() 501 if (offsetr >= max_blocks_high || offsetc >= max_blocks_wide) continue; in encode_block_inter() 526 const int max_blocks_wide = max_block_wide(xd, plane_bsize, plane); in av1_foreach_transformed_block_in_plane() local 531 AOMMIN(mi_size_wide[max_unit_bsize], max_blocks_wide); in av1_foreach_transformed_block_in_plane() 541 for (int c = 0; c < max_blocks_wide; c += mu_blocks_wide) { in av1_foreach_transformed_block_in_plane() 542 const int unit_width = AOMMIN(mu_blocks_wide + c, max_blocks_wide); in av1_foreach_transformed_block_in_plane()
|
D | nonrd_pickmode.c | 740 const int max_blocks_wide = in block_yrd() local 771 if (c < max_blocks_wide) { in block_yrd() 852 if (c < max_blocks_wide) { in block_yrd() 1399 const int max_blocks_wide = max_block_wide(xd, plane_bsize, plane); local 1405 for (col = 0; col < max_blocks_wide; col += (1 << tx_size)) {
|
D | encodetxb.c | 658 const int max_blocks_wide = max_block_wide(xd, bsize, 0); local 663 mu_blocks_wide = AOMMIN(max_blocks_wide, mu_blocks_wide); 667 for (col = 0; col < max_blocks_wide; col += mu_blocks_wide) { 678 AOMMIN(mu_blocks_wide + col, max_blocks_wide), pd->subsampling_x);
|
D | bitstream.c | 149 const int max_blocks_wide = max_block_wide(xd, mbmi->sb_type, 0); in write_tx_size_vartx() local 151 if (blk_row >= max_blocks_high || blk_col >= max_blocks_wide) return; in write_tx_size_vartx() 361 const int max_blocks_wide = max_block_wide(xd, plane_bsize, plane); in pack_txb_tokens() local 363 if (blk_row >= max_blocks_high || blk_col >= max_blocks_wide) return; in pack_txb_tokens() 392 if (offsetr >= max_blocks_high || offsetc >= max_blocks_wide) continue; in pack_txb_tokens()
|
D | tx_search.c | 2531 const int max_blocks_wide = max_block_wide(xd, plane_bsize, 0); in try_tx_block_split() local 2549 if (offsetr >= max_blocks_high || offsetc >= max_blocks_wide) continue; in try_tx_block_split() 2950 const int max_blocks_wide = max_block_wide(xd, plane_bsize, 0); in tx_block_yrd() local 2952 if (blk_row >= max_blocks_high || blk_col >= max_blocks_wide) return; in tx_block_yrd() 3005 if (offsetr >= max_blocks_high || offsetc >= max_blocks_wide) continue; in tx_block_yrd()
|
D | intra_mode_search.c | 207 const int max_blocks_wide = max_block_wide(xd, bsize, 0); in intra_model_yrd() local 212 for (col = 0; col < max_blocks_wide; col += stepc) { in intra_model_yrd()
|
D | encodeframe.c | 6156 const int max_blocks_wide = max_block_wide(xd, bsize, 0); in update_txfm_count() local 6163 if (blk_row >= max_blocks_high || blk_col >= max_blocks_wide) return; in update_txfm_count() 6245 const int max_blocks_wide = max_block_wide(xd, bsize, 0); in set_txfm_context() local 6249 if (blk_row >= max_blocks_high || blk_col >= max_blocks_wide) return; in set_txfm_context() 6271 if (offsetr >= max_blocks_high || offsetc >= max_blocks_wide) continue; in set_txfm_context()
|
/external/libvpx/libvpx/vp9/decoder/ |
D | vp9_detokenize.c | 264 if (xd->max_blocks_wide) { in get_ctx_shift() 265 if (tx_size_in_blocks + x > xd->max_blocks_wide) in get_ctx_shift() 266 *ctx_shift_a = (tx_size_in_blocks - (xd->max_blocks_wide - x)) * 8; in get_ctx_shift()
|
D | vp9_decodeframe.c | 863 const int max_blocks_wide = in predict_recon_inter() local 872 xd->max_blocks_wide = xd->mb_to_right_edge >= 0 ? 0 : max_blocks_wide; in predict_recon_inter() 876 for (col = 0; col < max_blocks_wide; col += step) in predict_recon_inter() 893 const int max_blocks_wide = in predict_recon_intra() local 902 xd->max_blocks_wide = xd->mb_to_right_edge >= 0 ? 0 : max_blocks_wide; in predict_recon_intra() 906 for (col = 0; col < max_blocks_wide; col += step) in predict_recon_intra() 948 const int max_blocks_wide = in decode_block() local 957 xd->max_blocks_wide = xd->mb_to_right_edge >= 0 ? 0 : max_blocks_wide; in decode_block() 961 for (col = 0; col < max_blocks_wide; col += step) in decode_block() 999 const int max_blocks_wide = in decode_block() local [all …]
|
/external/libaom/libaom/av1/common/ |
D | cfl.c | 409 const int max_blocks_wide = max_block_wide(xd, plane_bsize, plane) in max_intra_block_width() local 411 return ALIGN_POWER_OF_TWO(max_blocks_wide, tx_size_wide_log2[tx_size]); in max_intra_block_width()
|
D | av1_common_int.h | 1224 int max_blocks_wide = block_size_wide[bsize]; in max_block_wide() local 1228 max_blocks_wide += xd->mb_to_right_edge >> (3 + pd->subsampling_x); in max_block_wide() 1232 return max_blocks_wide >> MI_SIZE_LOG2; in max_block_wide()
|
/external/libaom/libaom/av1/decoder/ |
D | decodeframe.c | 283 const int max_blocks_wide = max_block_wide(xd, plane_bsize, plane); in decode_reconstruct_tx() local 285 if (blk_row >= max_blocks_high || blk_col >= max_blocks_wide) return; in decode_reconstruct_tx() 311 if (offsetr >= max_blocks_high || offsetc >= max_blocks_wide) continue; in decode_reconstruct_tx() 922 const int max_blocks_wide = max_block_wide(xd, bsize, 0); in decode_token_recon_block() local 927 mu_blocks_wide = AOMMIN(max_blocks_wide, mu_blocks_wide); in decode_token_recon_block() 931 for (col = 0; col < max_blocks_wide; col += mu_blocks_wide) { in decode_token_recon_block() 942 AOMMIN(mu_blocks_wide + col, max_blocks_wide), pd->subsampling_x); in decode_token_recon_block() 964 const int max_blocks_wide = max_block_wide(xd, bsize, 0); in decode_token_recon_block() local 975 mu_blocks_wide = AOMMIN(max_blocks_wide, mu_blocks_wide); in decode_token_recon_block() 979 for (col = 0; col < max_blocks_wide; col += mu_blocks_wide) { in decode_token_recon_block() [all …]
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_pickmode.c | 399 const int max_blocks_wide = in compute_intra_yprediction() local 412 for (col = 0; col < max_blocks_wide; col += (1 << tx_size)) { in compute_intra_yprediction() 720 const int max_blocks_wide = in block_yrd() local 764 if (c < max_blocks_wide) { in block_yrd() 815 if (c < max_blocks_wide) { in block_yrd()
|