Searched refs:has_top (Results 1 – 3 of 3) sorted by relevance
/external/libgav1/src/tile/ |
D | prediction.cc | 169 bool has_top) { in GetIntraPredictor() argument 171 if (has_left && has_top) { in GetIntraPredictor() 177 if (has_top) { in GetIntraPredictor() 226 bool has_left, bool has_top, bool has_top_right, in IntraPrediction() argument 276 (mode == kPredictionModeDc && has_top); in IntraPrediction() 306 if (has_top || has_left) { in IntraPrediction() 308 top_row[-1] = has_top ? top_row_src[left_index] : buffer[y][left_index]; in IntraPrediction() 312 if (!has_top && has_left) { in IntraPrediction() 314 } else if (!has_top && !has_left) { in IntraPrediction() 330 if (has_top || has_left) { in IntraPrediction() [all …]
|
D | tile.cc | 1606 const bool has_top = y > 0 || block.top_available[plane]; in TransformBlock() local 1609 IntraPrediction, block, plane, start_x, start_y, has_left, has_top, in TransformBlock() 2043 const bool has_top = block.top_available[plane]; in ComputePrediction() local 2046 has_left, has_top, in ComputePrediction()
|
/external/libgav1/src/ |
D | tile.h | 550 bool has_left, bool has_top, bool has_top_right, 557 bool has_left, bool has_top, bool needs_left,
|