HomeSort by relevance Sort by last modified time
    Searched defs:hbs (Results 1 - 3 of 3) sorted by null

  /external/libvpx/libvpx/vp9/encoder/
vp9_segmentation.c 171 const int bs = num_8x8_blocks_wide_lookup[bsize], hbs = bs / 2; local
184 t_unpred_seg_counts, bs, hbs, mi_row, mi_col);
185 count_segs(cpi, tile, mi_8x8 + hbs * mis, no_pred_segcounts,
186 temporal_predictor_count, t_unpred_seg_counts, bs, hbs,
187 mi_row + hbs, mi_col);
190 t_unpred_seg_counts, hbs, bs, mi_row, mi_col);
191 count_segs(cpi, tile, mi_8x8 + hbs,
193 hbs, bs, mi_row, mi_col + hbs);
201 const int mi_dc = hbs * (n & 1)
    [all...]
vp9_encodeframe.c 2104 const int bs = num_8x8_blocks_wide_lookup[bsize], hbs = bs \/ 2; local
    [all...]
  /external/libvpx/libvpx/vp9/decoder/
vp9_decodframe.c 455 static PARTITION_TYPE read_partition(VP9_COMMON *cm, MACROBLOCKD *xd, int hbs,
462 const int has_rows = (mi_row + hbs) < cm->mi_rows;
463 const int has_cols = (mi_col + hbs) < cm->mi_cols;
486 const int hbs = num_8x8_blocks_wide_lookup[bsize] / 2; local
493 partition = read_partition(cm, xd, hbs, mi_row, mi_col, bsize, r);
504 if (mi_row + hbs < cm->mi_rows)
505 decode_modes_b(cm, xd, tile, mi_row + hbs, mi_col, r, subsize,
510 if (mi_col + hbs < cm->mi_cols)
511 decode_modes_b(cm, xd, tile, mi_row, mi_col + hbs, r, subsize,
517 decode_modes_sb(cm, xd, tile, mi_row, mi_col + hbs, r, subsize
    [all...]

Completed in 47 milliseconds