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

/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
H A Dvp9_segmentation.c174 const int bs = num_8x8_blocks_wide_lookup[bsize], hbs = bs / 2; local
187 t_unpred_seg_counts, bs, hbs, mi_row, mi_col);
188 count_segs(cpi, tile, mi_8x8 + hbs * mis, no_pred_segcounts,
189 temporal_predictor_count, t_unpred_seg_counts, bs, hbs,
190 mi_row + hbs, mi_col);
193 t_unpred_seg_counts, hbs, bs, mi_row, mi_col);
194 count_segs(cpi, tile, mi_8x8 + hbs,
196 hbs, bs, mi_row, mi_col + hbs);
204 const int mi_dc = hbs * (
[all...]
H A Dvp9_encodeframe.c1252 const int bsl = b_width_log2(bsize), hbs = (1 << bsl) / 4; local
1281 if (mi_col + hbs < cm->mi_cols) {
1283 encode_b(cpi, tile, tp, mi_row, mi_col + hbs, output_enabled, subsize);
1291 if (mi_row + hbs < cm->mi_rows) {
1293 encode_b(cpi, tile, tp, mi_row + hbs, mi_col, output_enabled, subsize);
1304 encode_sb(cpi, tile, tp, mi_row, mi_col + hbs, output_enabled, subsize);
1306 encode_sb(cpi, tile, tp, mi_row + hbs, mi_col, output_enabled, subsize);
1308 encode_sb(cpi, tile, tp, mi_row + hbs, mi_col + hbs, output_enabled,
1481 const int bsl = b_width_log2(bsize), hbs local
2584 int bsl = b_width_log2(bsize), hbs = (1 << bsl) / 4; local
2921 const int bsl = b_width_log2(bsize), hbs = (1 << bsl) / 4; local
[all...]
H A Dvp9_bitstream.c396 int hbs, int mi_row, int mi_col,
400 const int has_rows = (mi_row + hbs) < cm->mi_rows;
401 const int has_cols = (mi_col + hbs) < cm->mi_cols;
395 write_partition(VP9_COMMON *cm, MACROBLOCKD *xd, int hbs, int mi_row, int mi_col, PARTITION_TYPE p, BLOCK_SIZE bsize, vp9_writer *w) argument
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/decoder/
H A Dvp9_decodeframe.c381 static PARTITION_TYPE read_partition(VP9_COMMON *cm, MACROBLOCKD *xd, int hbs, argument
386 const int has_rows = (mi_row + hbs) < cm->mi_rows;
387 const int has_cols = (mi_col + hbs) < cm->mi_cols;
409 const int hbs = num_8x8_blocks_wide_lookup[bsize] / 2; local
416 partition = read_partition(cm, xd, hbs, mi_row, mi_col, bsize, r);
427 if (mi_row + hbs < cm->mi_rows)
428 decode_block(cm, xd, tile, mi_row + hbs, mi_col, r, subsize);
432 if (mi_col + hbs < cm->mi_cols)
433 decode_block(cm, xd, tile, mi_row, mi_col + hbs, r, subsize);
437 decode_partition(cm, xd, tile, mi_row, mi_col + hbs,
[all...]

Completed in 1032 milliseconds