Home
last modified time | relevance | path

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

/external/webp/src/enc/
Dquant_enc.c819 const int x = it->i4_ & 3, y = it->i4_ >> 2; in ReconstructIntra4()
1044 const int x = (it->i4_ & 3), y = it->i4_ >> 2; in GetCostModeI4()
1045 const int left = (x == 0) ? it->preds_[y * preds_w - 1] : modes[it->i4_ - 1]; in GetCostModeI4()
1046 const int top = (y == 0) ? it->preds_[-preds_w + x] : modes[it->i4_ - 4]; in GetCostModeI4()
1073 const uint8_t* const src = src0 + VP8Scan[it->i4_]; in PickBestIntra4()
1075 uint8_t* best_block = best_blocks + VP8Scan[it->i4_]; in PickBestIntra4()
1086 ReconstructIntra4(it, tmp_levels, src, tmp_dst, mode) << it->i4_; in PickBestIntra4()
1115 memcpy(rd_best.y_ac_levels[it->i4_], tmp_levels, in PickBestIntra4()
1116 sizeof(rd_best.y_ac_levels[it->i4_])); in PickBestIntra4()
1129 if (best_block != best_blocks + VP8Scan[it->i4_]) { in PickBestIntra4()
[all …]
Diterator_enc.c407 it->i4_ = 0; // first 4x4 sub-block in VP8IteratorStartI4()
432 const uint8_t* const blk = yuv_out + VP8Scan[it->i4_]; in VP8IteratorRotateI4()
440 if ((it->i4_ & 3) != 3) { // if not on the right sub-blocks #3, #7, #11, #15 in VP8IteratorRotateI4()
450 ++it->i4_; in VP8IteratorRotateI4()
451 if (it->i4_ == 16) { // we're done in VP8IteratorRotateI4()
455 it->i4_top_ = it->i4_boundary_ + VP8TopLeftI4[it->i4_]; in VP8IteratorRotateI4()
Dcost_enc.c219 const int x = (it->i4_ & 3), y = (it->i4_ >> 2); in VP8GetCostLuma4()
Dvp8i_enc.h239 int i4_; // current intra4x4 mode being tested member