Searched refs:hbs (Results 1 - 4 of 4) sorted by relevance

/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_segmentation.c157 const int bs = num_8x8_blocks_wide_lookup[bsize], hbs = bs / 2; local
170 t_unpred_seg_counts, bs, hbs, mi_row, mi_col);
171 count_segs(cm, xd, tile, mi + hbs * mis, no_pred_segcounts,
172 temporal_predictor_count, t_unpred_seg_counts, bs, hbs,
173 mi_row + hbs, mi_col);
176 t_unpred_seg_counts, hbs, bs, mi_row, mi_col);
177 count_segs(cm, xd, tile, mi + hbs,
179 hbs, bs, mi_row, mi_col + hbs);
187 const int mi_dc = hbs * (
[all...]
H A Dvp9_encodeframe.c1428 const int bsl = b_width_log2_lookup[bsize], hbs = (1 << bsl) / 4; local
1456 if (mi_col + hbs < cm->mi_cols && bsize > BLOCK_8X8) {
1457 encode_b(cpi, tile, td, tp, mi_row, mi_col + hbs, output_enabled,
1464 if (mi_row + hbs < cm->mi_rows && bsize > BLOCK_8X8) {
1465 encode_b(cpi, tile, td, tp, mi_row + hbs, mi_col, output_enabled,
1476 encode_sb(cpi, td, tile, tp, mi_row, mi_col + hbs, output_enabled,
1478 encode_sb(cpi, td, tile, tp, mi_row + hbs, mi_col, output_enabled,
1480 encode_sb(cpi, td, tile, tp, mi_row + hbs, mi_col + hbs, output_enabled,
1767 const int bsl = b_width_log2_lookup[bsize], hbs local
2975 int bsl = b_width_log2_lookup[bsize], hbs = (1 << bsl) / 4; local
3313 const int bsl = b_width_log2_lookup[bsize], hbs = (1 << bsl) / 4; local
3452 const int bsl = b_width_log2_lookup[bsize], hbs = (1 << bsl) / 4; local
[all...]
H A Dvp9_bitstream.c406 int hbs, int mi_row, int mi_col,
410 const int has_rows = (mi_row + hbs) < cm->mi_rows;
411 const int has_cols = (mi_col + hbs) < cm->mi_cols;
404 write_partition(const VP9_COMMON *const cm, const MACROBLOCKD *const xd, int hbs, int mi_row, int mi_col, PARTITION_TYPE p, BLOCK_SIZE bsize, vpx_writer *w) argument
/external/libvpx/libvpx/vp9/decoder/
H A Dvp9_decodeframe.c961 const int hbs = num_8x8_wh >> 1; local
964 const int has_rows = (mi_row + hbs) < cm->mi_rows;
965 const int has_cols = (mi_col + hbs) < cm->mi_cols;
973 if (!hbs) {
986 decode_block(pbi, xd, mi_row + hbs, mi_col, r, subsize, n4x4_l2,
992 decode_block(pbi, xd, mi_row, mi_col + hbs, r, subsize, n8x8_l2,
997 decode_partition(pbi, xd, mi_row, mi_col + hbs, r, subsize, n8x8_l2);
998 decode_partition(pbi, xd, mi_row + hbs, mi_col, r, subsize, n8x8_l2);
999 decode_partition(pbi, xd, mi_row + hbs, mi_col + hbs,
[all...]

Completed in 98 milliseconds