HomeSort by relevance Sort by last modified time
    Searched refs:has_above (Results 1 - 5 of 5) sorted by null

  /external/libvpx/libvpx/vp9/common/
vp9_pred_common.c 47 const int has_above = !!above_mi; local
53 if (has_above && has_left) { // both edges available
68 } else if (has_above || has_left) { // one edge available
69 const MODE_INFO *edge_mi = has_above ? above_mi : left_mi;
171 const int has_above = !!above_mi; local
177 if (has_above && has_left) { // both edges available
214 } else if (has_above || has_left) { // one edge available
215 const MODE_INFO *edge_mi = has_above ? above_mi : left_mi;
237 const int has_above = !!above_mi; local
244 if (has_above && has_left) { // both edges availabl
    [all...]
vp9_pred_common.h 100 const int has_above = !!above_mi; local
103 if (has_above && has_left) { // both edges available
107 } else if (has_above || has_left) { // one edge available
108 return 2 * !is_inter_block(has_above ? above_mi : left_mi);
160 const int has_above = !!above_mi; local
163 (has_above && !above_mi->skip) ? (int)above_mi->tx_size : max_tx_size;
168 if (!has_above) above_ctx = left_ctx;
  /external/libaom/libaom/av1/common/
pred_common.c 127 const int has_above = xd->up_available; local
130 if (has_above && has_left) { // both edges available
134 } else if (has_above || has_left) { // one edge available
135 return 2 * !is_inter_block(has_above ? above_mbmi : left_mbmi);
149 const int has_above = xd->up_available; local
156 if (has_above && has_left) { // both edges available
171 } else if (has_above || has_left) { // one edge available
172 const MB_MODE_INFO *edge_mbmi = has_above ? above_mbmi : left_mbmi;
pred_common.h 336 const int has_above = xd->up_available; local
342 if (has_above)
350 if (has_above && has_left)
352 else if (has_above)
  /external/libaom/libaom/av1/encoder/
partition_strategy.c 289 const int has_above = !!xd->above_mbmi; local
291 const BLOCK_SIZE above_bsize = has_above ? xd->above_mbmi->sb_type : bsize;
293 features[f_idx++] = (float)has_above;
508 const int has_above = !!xd->above_mbmi; local
510 const BLOCK_SIZE above_bsize = has_above ? xd->above_mbmi->sb_type : bsize;
512 features[f_idx++] = (float)has_above;

Completed in 133 milliseconds