Searched refs:has_rows (Results 1 – 6 of 6) sorted by relevance
/external/libvpx/libvpx/vp9/decoder/ |
D | vp9_decodeframe.c | 1096 int mi_col, int has_rows, int has_cols, in read_partition() argument 1104 if (has_rows && has_cols) in read_partition() 1106 else if (!has_rows && has_cols) in read_partition() 1108 else if (has_rows && !has_cols) in read_partition() 1128 const int has_rows = (mi_row + hbs) < cm->mi_rows; in decode_partition() local 1134 partition = read_partition(twd, mi_row, mi_col, has_rows, has_cols, n8x8_l2); in decode_partition() 1148 if (has_rows) in decode_partition() 1184 const int has_rows = (mi_row + hbs) < cm->mi_rows; in recon_partition() local 1206 if (has_rows) in recon_partition() 1236 const int has_rows = (mi_row + hbs) < cm->mi_rows; in parse_partition() local [all …]
|
/external/libaom/libaom/av1/encoder/ |
D | encodeframe.c | 1532 const int has_rows = (mi_row + hbs) < cm->mi_rows; in encode_sb() local 1535 if (has_rows && has_cols) { in encode_sb() 2332 const int has_rows = (mi_row + mi_step < cm->mi_rows); in rd_pick_sqr_partition() local 2337 int partition_none_allowed = has_rows && has_cols; in rd_pick_sqr_partition() 2352 if (!(has_rows && has_cols)) { in rd_pick_sqr_partition() 2362 } else if (has_rows) { in rd_pick_sqr_partition() 3158 const int has_rows = (mi_row + mi_step < cm->mi_rows); in rd_pick_partition() local 3164 int partition_none_allowed = has_rows && has_cols; in rd_pick_partition() 3167 int partition_vert_allowed = has_rows && xss <= yss && bsize_at_least_8x8 && in rd_pick_partition() 3185 if (!(has_rows && has_cols)) { in rd_pick_partition() [all …]
|
D | bitstream.c | 1555 const int has_rows = (mi_row + hbs) < cm->mi_rows; in write_partition() local 1560 if (!has_rows && !has_cols) { in write_partition() 1565 if (has_rows && has_cols) { in write_partition() 1568 } else if (!has_rows && has_cols) { in write_partition() 1575 assert(has_rows && !has_cols); in write_partition()
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_bitstream.c | 404 const int has_rows = (mi_row + hbs) < cm->mi_rows; in write_partition() local 407 if (has_rows && has_cols) { in write_partition() 409 } else if (!has_rows && has_cols) { in write_partition() 412 } else if (has_rows && !has_cols) { in write_partition()
|
D | vp9_encodeframe.c | 957 const int has_rows = (mi_row_high + bs_high) < cm->mi_rows; in scale_partitioning_svc() local 979 if ((!has_rows || !has_cols) && bsize_low > BLOCK_16X16) return 1; in scale_partitioning_svc() 994 if (!has_cols && has_rows) { in scale_partitioning_svc() 996 } else if (has_cols && !has_rows) { in scale_partitioning_svc() 998 } else if (!has_cols && !has_rows) { in scale_partitioning_svc()
|
/external/libaom/libaom/av1/decoder/ |
D | decodeframe.c | 1705 aom_reader *r, int has_rows, int has_cols, in read_partition() argument 1710 if (!has_rows && !has_cols) return PARTITION_SPLIT; in read_partition() 1714 if (has_rows && has_cols) { in read_partition() 1717 } else if (!has_rows && has_cols) { in read_partition() 1724 assert(has_rows && !has_cols); in read_partition() 1745 const int has_rows = (mi_row + hbs) < cm->mi_rows; in decode_partition() local 1776 has_rows, has_cols, bsize); in decode_partition() 1805 if (has_rows) DEC_BLOCK(mi_row + hbs, mi_col, subsize); in decode_partition()
|