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

/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_segmentation.c149 const int bs = num_8x8_blocks_wide_lookup[bsize], hbs = bs / 2; local
161 t_unpred_seg_counts, bs, hbs, mi_row, mi_col);
162 count_segs(cm, xd, tile, mi + hbs * mis, no_pred_segcounts,
163 temporal_predictor_count, t_unpred_seg_counts, bs, hbs,
164 mi_row + hbs, mi_col);
167 t_unpred_seg_counts, hbs, bs, mi_row, mi_col);
168 count_segs(cm, xd, tile, mi + hbs, no_pred_segcounts,
169 temporal_predictor_count, t_unpred_seg_counts, hbs, bs, mi_row,
170 mi_col + hbs);
178 const int mi_dc = hbs * (
[all...]
H A Dvp9_bitstream.c398 const MACROBLOCKD *const xd, int hbs, int mi_row,
403 const int has_rows = (mi_row + hbs) < cm->mi_rows;
404 const int has_cols = (mi_col + hbs) < cm->mi_cols;
397 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
H A Dvp9_encodeframe.c2131 const int bsl = b_width_log2_lookup[bsize], hbs = (1 << bsl) / 4; local
2158 if (mi_col + hbs < cm->mi_cols && bsize > BLOCK_8X8) {
2159 encode_b(cpi, tile, td, tp, mi_row, mi_col + hbs, output_enabled,
2166 if (mi_row + hbs < cm->mi_rows && bsize > BLOCK_8X8) {
2167 encode_b(cpi, tile, td, tp, mi_row + hbs, mi_col, output_enabled,
2178 encode_sb(cpi, td, tile, tp, mi_row, mi_col + hbs, output_enabled,
2180 encode_sb(cpi, td, tile, tp, mi_row + hbs, mi_col, output_enabled,
2182 encode_sb(cpi, td, tile, tp, mi_row + hbs, mi_col + hbs, output_enabled,
2470 const int bsl = b_width_log2_lookup[bsize], hbs local
3764 int bsl = b_width_log2_lookup[bsize], hbs = (1 << bsl) / 4; local
4089 const int bsl = b_width_log2_lookup[bsize], hbs = (1 << bsl) / 4; local
4223 const int bsl = b_width_log2_lookup[bsize], hbs = (1 << bsl) / 4; local
[all...]
/external/libvpx/libvpx/vp9/decoder/
H A Dvp9_decodeframe.c903 const int hbs = num_8x8_wh >> 1; local
906 const int has_rows = (mi_row + hbs) < cm->mi_rows;
907 const int has_cols = (mi_col + hbs) < cm->mi_cols;
914 if (!hbs) {
927 decode_block(twd, pbi, mi_row + hbs, mi_col, subsize, n4x4_l2,
933 decode_block(twd, pbi, mi_row, mi_col + hbs, subsize, n8x8_l2,
938 decode_partition(twd, pbi, mi_row, mi_col + hbs, subsize, n8x8_l2);
939 decode_partition(twd, pbi, mi_row + hbs, mi_col, subsize, n8x8_l2);
940 decode_partition(twd, pbi, mi_row + hbs, mi_col + hbs, subsiz
[all...]

Completed in 134 milliseconds