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.c1427 const int bsl = b_width_log2_lookup[bsize], hbs = (1 << bsl) / 4; local
1455 if (mi_col + hbs < cm->mi_cols && bsize > BLOCK_8X8) {
1456 encode_b(cpi, tile, td, tp, mi_row, mi_col + hbs, output_enabled,
1463 if (mi_row + hbs < cm->mi_rows && bsize > BLOCK_8X8) {
1464 encode_b(cpi, tile, td, tp, mi_row + hbs, mi_col, output_enabled,
1475 encode_sb(cpi, td, tile, tp, mi_row, mi_col + hbs, output_enabled,
1477 encode_sb(cpi, td, tile, tp, mi_row + hbs, mi_col, output_enabled,
1479 encode_sb(cpi, td, tile, tp, mi_row + hbs, mi_col + hbs, output_enabled,
1764 const int bsl = b_width_log2_lookup[bsize], hbs local
2958 int bsl = b_width_log2_lookup[bsize], hbs = (1 << bsl) / 4; local
3296 const int bsl = b_width_log2_lookup[bsize], hbs = (1 << bsl) / 4; local
3435 const int bsl = b_width_log2_lookup[bsize], hbs = (1 << bsl) / 4; local
[all...]
H A Dvp9_bitstream.c407 int hbs, int mi_row, int mi_col,
411 const int has_rows = (mi_row + hbs) < cm->mi_rows;
412 const int has_cols = (mi_col + hbs) < cm->mi_cols;
405 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.c956 const int hbs = num_8x8_wh >> 1; local
959 const int has_rows = (mi_row + hbs) < cm->mi_rows;
960 const int has_cols = (mi_col + hbs) < cm->mi_cols;
968 if (!hbs) {
981 decode_block(pbi, xd, mi_row + hbs, mi_col, r, subsize, n4x4_l2,
987 decode_block(pbi, xd, mi_row, mi_col + hbs, r, subsize, n8x8_l2,
992 decode_partition(pbi, xd, mi_row, mi_col + hbs, r, subsize, n8x8_l2);
993 decode_partition(pbi, xd, mi_row + hbs, mi_col, r, subsize, n8x8_l2);
994 decode_partition(pbi, xd, mi_row + hbs, mi_col + hbs,
[all...]

Completed in 211 milliseconds