Searched refs:has_cols (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() 1129 const int has_cols = (mi_col + hbs) < cm->mi_cols; in decode_partition() local 1134 partition = read_partition(twd, mi_row, mi_col, has_rows, has_cols, n8x8_l2); in decode_partition() 1154 if (has_cols) in decode_partition() 1185 const int has_cols = (mi_col + hbs) < cm->mi_cols; in recon_partition() local 1212 if (has_cols) in recon_partition() 1237 const int has_cols = (mi_col + hbs) < cm->mi_cols; in parse_partition() local [all …]
|
/external/libaom/libaom/av1/encoder/ |
D | encodeframe.c | 1533 const int has_cols = (mi_col + hbs) < cm->mi_cols; in encode_sb() local 1535 if (has_rows && has_cols) { in encode_sb() 2333 const int has_cols = (mi_col + mi_step < cm->mi_cols); 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() 2356 if (has_cols) { in rd_pick_sqr_partition() 3159 const int has_cols = (mi_col + mi_step < cm->mi_cols); in rd_pick_partition() local 3164 int partition_none_allowed = has_rows && has_cols; in rd_pick_partition() 3165 int partition_horz_allowed = has_cols && yss <= xss && bsize_at_least_8x8 && in rd_pick_partition() 3185 if (!(has_rows && has_cols)) { in rd_pick_partition() [all …]
|
D | bitstream.c | 1556 const int has_cols = (mi_col + hbs) < cm->mi_cols; 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 | 405 const int has_cols = (mi_col + hbs) < cm->mi_cols; 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 | 958 const int has_cols = (mi_col_high + bs_high) < cm->mi_cols; 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() 1746 const int has_cols = (mi_col + hbs) < cm->mi_cols; in decode_partition() local 1776 has_rows, has_cols, bsize); in decode_partition() 1809 if (has_cols) DEC_BLOCK(mi_row, mi_col + hbs, subsize); in decode_partition()
|