Home
last modified time | relevance | path

Searched refs:max_blocks_high (Results 1 – 13 of 13) sorted by relevance

/external/libvpx/libvpx/vp9/common/
Dvp9_blockd.c59 const int max_blocks_high = in vp9_foreach_transformed_block_in_plane() local
67 for (r = 0; r < max_blocks_high; r += (1 << tx_size)) { in vp9_foreach_transformed_block_in_plane()
Dvp9_blockd.h166 unsigned int max_blocks_high; member
/external/libaom/libaom/av1/encoder/
Dencodemb.c310 const int max_blocks_high = max_block_high(xd, plane_bsize, plane); in encode_block_inter() local
313 if (blk_row >= max_blocks_high || blk_col >= max_blocks_wide) return; in encode_block_inter()
344 if (offsetr >= max_blocks_high || offsetc >= max_blocks_wide) continue; in encode_block_inter()
373 const int max_blocks_high = max_block_high(xd, plane_bsize, plane); in av1_foreach_transformed_block_in_plane() local
382 mu_blocks_high = AOMMIN(max_blocks_high, mu_blocks_high); in av1_foreach_transformed_block_in_plane()
386 for (r = 0; r < max_blocks_high; r += mu_blocks_high) { in av1_foreach_transformed_block_in_plane()
387 const int unit_height = AOMMIN(mu_blocks_high + r, max_blocks_high); in av1_foreach_transformed_block_in_plane()
Dtokenize.c140 const int max_blocks_high = max_block_high(xd, plane_bsize, plane); in tokenize_vartx() local
143 if (blk_row >= max_blocks_high || blk_col >= max_blocks_wide) return; in tokenize_vartx()
178 if (offsetr >= max_blocks_high || offsetc >= max_blocks_wide) continue; in tokenize_vartx()
Dencodetxb.c666 const int max_blocks_high = max_block_high(xd, bsize, 0); local
671 mu_blocks_high = AOMMIN(max_blocks_high, mu_blocks_high);
673 for (row = 0; row < max_blocks_high; row += mu_blocks_high) {
686 AOMMIN(mu_blocks_high + row, max_blocks_high), pd->subsampling_y);
Dbitstream.c149 const int max_blocks_high = max_block_high(xd, mbmi->sb_type, 0); in write_tx_size_vartx() local
152 if (blk_row >= max_blocks_high || blk_col >= max_blocks_wide) return; in write_tx_size_vartx()
359 const int max_blocks_high = max_block_high(xd, plane_bsize, plane); in pack_txb_tokens() local
362 if (blk_row >= max_blocks_high || blk_col >= max_blocks_wide) return; in pack_txb_tokens()
404 if (offsetr >= max_blocks_high || offsetc >= max_blocks_wide) continue; in pack_txb_tokens()
Dencodeframe.c5781 const int max_blocks_high = max_block_high(xd, bsize, 0); in update_txfm_count() local
5789 if (blk_row >= max_blocks_high || blk_col >= max_blocks_wide) return; in update_txfm_count()
5867 const int max_blocks_high = max_block_high(xd, bsize, 0); in set_txfm_context() local
5872 if (blk_row >= max_blocks_high || blk_col >= max_blocks_wide) return; in set_txfm_context()
5894 if (offsetr >= max_blocks_high || offsetc >= max_blocks_wide) continue; in set_txfm_context()
Drdopt.c4202 const int max_blocks_high = max_block_high(xd, bsize, 0); in intra_model_yrd() local
4205 for (row = 0; row < max_blocks_high; row += stepr) { in intra_model_yrd()
5242 const int max_blocks_high = max_block_high(xd, plane_bsize, 0); in try_tx_block_split() local
5261 if (offsetr >= max_blocks_high || offsetc >= max_blocks_wide) continue; in try_tx_block_split()
5298 const int max_blocks_high = max_block_high(xd, plane_bsize, 0); in select_tx_block() local
5300 if (blk_row >= max_blocks_high || blk_col >= max_blocks_wide) return; in select_tx_block()
5498 const int max_blocks_high = max_block_high(xd, plane_bsize, 0); in tx_block_yrd() local
5503 if (blk_row >= max_blocks_high || blk_col >= max_blocks_wide) return; in tx_block_yrd()
5560 if (offsetr >= max_blocks_high || offsetc >= max_blocks_wide) continue; in tx_block_yrd()
/external/libvpx/libvpx/vp9/decoder/
Dvp9_detokenize.c227 if (xd->max_blocks_high) { in get_ctx_shift()
228 if (tx_size_in_blocks + y > xd->max_blocks_high) in get_ctx_shift()
229 *ctx_shift_l = (tx_size_in_blocks - (xd->max_blocks_high - y)) * 8; in get_ctx_shift()
Dvp9_decodeframe.c850 const int max_blocks_high = in predict_recon_inter() local
856 xd->max_blocks_high = xd->mb_to_bottom_edge >= 0 ? 0 : max_blocks_high; in predict_recon_inter()
858 for (row = 0; row < max_blocks_high; row += step) in predict_recon_inter()
880 const int max_blocks_high = in predict_recon_intra() local
886 xd->max_blocks_high = xd->mb_to_bottom_edge >= 0 ? 0 : max_blocks_high; in predict_recon_intra()
888 for (row = 0; row < max_blocks_high; row += step) in predict_recon_intra()
935 const int max_blocks_high = in decode_block() local
941 xd->max_blocks_high = xd->mb_to_bottom_edge >= 0 ? 0 : max_blocks_high; in decode_block()
943 for (row = 0; row < max_blocks_high; row += step) in decode_block()
968 const int max_blocks_high = in decode_block() local
[all …]
/external/libaom/libaom/av1/common/
Donyxc_int.h1091 int max_blocks_high = block_size_high[bsize]; in max_block_high() local
1095 max_blocks_high += xd->mb_to_bottom_edge >> (3 + pd->subsampling_y); in max_block_high()
1098 return max_blocks_high >> tx_size_high_log2[0]; in max_block_high()
1112 const int max_blocks_high = max_block_high(xd, plane_bsize, plane) in max_intra_block_height() local
1114 return ALIGN_POWER_OF_TWO(max_blocks_high, tx_size_high_log2[tx_size]); in max_intra_block_height()
/external/libaom/libaom/av1/decoder/
Ddecodeframe.c297 const int max_blocks_high = max_block_high(xd, plane_bsize, plane); in decode_reconstruct_tx() local
300 if (blk_row >= max_blocks_high || blk_col >= max_blocks_wide) return; in decode_reconstruct_tx()
326 if (offsetr >= max_blocks_high || offsetc >= max_blocks_wide) continue; in decode_reconstruct_tx()
1126 const int max_blocks_high = max_block_high(xd, bsize, 0); in decode_token_recon_block() local
1133 mu_blocks_high = AOMMIN(max_blocks_high, mu_blocks_high); in decode_token_recon_block()
1135 for (row = 0; row < max_blocks_high; row += mu_blocks_high) { in decode_token_recon_block()
1148 AOMMIN(mu_blocks_high + row, max_blocks_high), pd->subsampling_y); in decode_token_recon_block()
1173 const int max_blocks_high = max_block_high(xd, bsize, 0); in decode_token_recon_block() local
1186 mu_blocks_high = AOMMIN(max_blocks_high, mu_blocks_high); in decode_token_recon_block()
1188 for (row = 0; row < max_blocks_high; row += mu_blocks_high) { in decode_token_recon_block()
[all …]
/external/libvpx/libvpx/vp9/encoder/
Dvp9_pickmode.c677 const int max_blocks_high = in block_yrd() local
726 for (r = 0; r < max_blocks_high; r += block_step) { in block_yrd()
777 for (r = 0; r < max_blocks_high; r += block_step) { in block_yrd()