Home
last modified time | relevance | path

Searched refs:max_blocks_high (Results 1 – 16 of 16) 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.h167 unsigned int max_blocks_high; member
/external/libaom/libaom/av1/encoder/
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()
171 if (offsetr >= max_blocks_high || offsetc >= max_blocks_wide) continue; in tokenize_vartx()
Dencodemb.c467 const int max_blocks_high = max_block_high(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()
527 const int max_blocks_high = max_block_high(xd, plane_bsize, plane); in av1_foreach_transformed_block_in_plane() local
533 AOMMIN(mi_size_high[max_unit_bsize], max_blocks_high); in av1_foreach_transformed_block_in_plane()
538 for (int r = 0; r < max_blocks_high; r += mu_blocks_high) { in av1_foreach_transformed_block_in_plane()
539 const int unit_height = AOMMIN(mu_blocks_high + r, max_blocks_high); in av1_foreach_transformed_block_in_plane()
Dnonrd_pickmode.c742 const int max_blocks_high = in block_yrd() local
769 for (int r = 0; r < max_blocks_high; r += block_step) { in block_yrd()
850 for (int r = 0; r < max_blocks_high; r += block_step) { in block_yrd()
1400 const int max_blocks_high = max_block_high(xd, plane_bsize, plane); local
1403 for (row = 0; row < max_blocks_high; row += (1 << tx_size)) {
Dencodetxb.c659 const int max_blocks_high = max_block_high(xd, bsize, 0); local
664 mu_blocks_high = AOMMIN(max_blocks_high, mu_blocks_high);
666 for (row = 0; row < max_blocks_high; row += mu_blocks_high) {
676 AOMMIN(mu_blocks_high + row, max_blocks_high), pd->subsampling_y);
Dbitstream.c148 const int max_blocks_high = max_block_high(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()
360 const int max_blocks_high = max_block_high(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()
Dtx_search.c2530 const int max_blocks_high = max_block_high(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()
2949 const int max_blocks_high = max_block_high(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()
Dintra_mode_search.c208 const int max_blocks_high = max_block_high(xd, bsize, 0); in intra_model_yrd() local
211 for (row = 0; row < max_blocks_high; row += stepr) { in intra_model_yrd()
Dencodeframe.c6155 const int max_blocks_high = max_block_high(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()
6244 const int max_blocks_high = max_block_high(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/
Dvp9_detokenize.c268 if (xd->max_blocks_high) { in get_ctx_shift()
269 if (tx_size_in_blocks + y > xd->max_blocks_high) in get_ctx_shift()
270 *ctx_shift_l = (tx_size_in_blocks - (xd->max_blocks_high - y)) * 8; in get_ctx_shift()
Dvp9_decodeframe.c867 const int max_blocks_high = in predict_recon_inter() local
873 xd->max_blocks_high = xd->mb_to_bottom_edge >= 0 ? 0 : max_blocks_high; in predict_recon_inter()
875 for (row = 0; row < max_blocks_high; row += step) in predict_recon_inter()
897 const int max_blocks_high = in predict_recon_intra() local
903 xd->max_blocks_high = xd->mb_to_bottom_edge >= 0 ? 0 : max_blocks_high; in predict_recon_intra()
905 for (row = 0; row < max_blocks_high; row += step) in predict_recon_intra()
952 const int max_blocks_high = in decode_block() local
958 xd->max_blocks_high = xd->mb_to_bottom_edge >= 0 ? 0 : max_blocks_high; in decode_block()
960 for (row = 0; row < max_blocks_high; row += step) in decode_block()
1003 const int max_blocks_high = in decode_block() local
[all …]
/external/libaom/libaom/av1/common/
Dcfl.c417 const int max_blocks_high = max_block_high(xd, plane_bsize, plane) in max_intra_block_height() local
419 return ALIGN_POWER_OF_TWO(max_blocks_high, tx_size_high_log2[tx_size]); in max_intra_block_height()
Dav1_common_int.h1237 int max_blocks_high = block_size_high[bsize]; in max_block_high() local
1241 max_blocks_high += xd->mb_to_bottom_edge >> (3 + pd->subsampling_y); in max_block_high()
1245 return max_blocks_high >> MI_SIZE_LOG2; in max_block_high()
/external/libaom/libaom/av1/decoder/
Ddecodeframe.c282 const int max_blocks_high = max_block_high(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()
923 const int max_blocks_high = max_block_high(xd, bsize, 0); in decode_token_recon_block() local
928 mu_blocks_high = AOMMIN(max_blocks_high, mu_blocks_high); in decode_token_recon_block()
930 for (row = 0; row < max_blocks_high; row += mu_blocks_high) { in decode_token_recon_block()
940 AOMMIN(mu_blocks_high + row, max_blocks_high), pd->subsampling_y); in decode_token_recon_block()
965 const int max_blocks_high = max_block_high(xd, bsize, 0); in decode_token_recon_block() local
976 mu_blocks_high = AOMMIN(max_blocks_high, mu_blocks_high); in decode_token_recon_block()
978 for (row = 0; row < max_blocks_high; row += mu_blocks_high) { in decode_token_recon_block()
[all …]
/external/libvpx/libvpx/vp9/encoder/
Dvp9_pickmode.c403 const int max_blocks_high = in compute_intra_yprediction() local
410 for (row = 0; row < max_blocks_high; row += (1 << tx_size)) { in compute_intra_yprediction()
722 const int max_blocks_high = in block_yrd() local
762 for (r = 0; r < max_blocks_high; r += block_step) { in block_yrd()
813 for (r = 0; r < max_blocks_high; r += block_step) { in block_yrd()