Home
last modified time | relevance | path

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

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