HomeSort by relevance Sort by last modified time
    Searched full:preds_ (Results 1 - 7 of 7) sorted by null

  /external/webp/src/enc/
iterator.c 48 it->preds_ = enc->preds_;
273 it->preds_ += 4;
280 it->preds_ = enc->preds_ + it->y_ * 4 * enc->preds_w_;
291 uint8_t* preds = it->preds_;
301 uint8_t* preds = it->preds_;
webpenc.c 83 // Note: actually, initializing the preds_[] is only needed for intra4.
85 uint8_t* const top = enc->preds_ - enc->preds_w_;
86 uint8_t* const left = enc->preds_ - 1;
244 enc->preds_ = ((uint8_t*)mem) + 1 + enc->preds_w_;
vp8enci.h 280 uint8_t* preds_; // intra mode predictors (4x4 blocks) member in struct:__anon18238
380 int preds_w_; // stride of the *preds_ prediction plane (=4*mb_w + 1)
433 uint8_t* preds_; // predictions modes: (4*mb_w+1) * (4*mb_h+1) member in struct:VP8Encoder
quant.c 814 const int left = (x == 0) ? it->preds_[y * preds_w - 1] : modes[it->i4_ - 1];
815 const int top = (y == 0) ? it->preds_[-preds_w + x] : modes[it->i4_ - 4];
940 nz = ReconstructIntra16(it, rd, it->yuv_out_ + Y_OFF, it->preds_[0]);
    [all...]
frame.c 669 case 4: *info = (mb->type_ == 1) ? it->preds_[0] : 0xff; break;
681 SetBlock(it->yuv_out_ + U_OFF, it->preds_[0] * 64, 8);
analysis.c 394 (enc->method_ == 0); // for method 0, we need preds_[] to be filled.
tree.c 322 const uint8_t* preds = it.preds_;

Completed in 49 milliseconds