Home
last modified time | relevance | path

Searched refs:Y_OFF_ENC (Results 1 – 6 of 6) sorted by relevance

/external/webp/src/enc/
Dquant_enc.c58 const uint8_t* const y_in = it->yuv_in_ + Y_OFF_ENC; in PrintBlockInfo()
59 const uint8_t* const y_out = it->yuv_out_ + Y_OFF_ENC; in PrintBlockInfo()
760 const uint8_t* const src = it->yuv_in_ + Y_OFF_ENC; in ReconstructIntra16()
986 const uint8_t* const src = it->yuv_in_ + Y_OFF_ENC; in PickBestIntra16()
994 uint8_t* const tmp_dst = it->yuv_out2_ + Y_OFF_ENC; // scratch buffer in PickBestIntra16()
1050 const uint8_t* const src0 = it->yuv_in_ + Y_OFF_ENC; in PickBestIntra4()
1051 uint8_t* const best_blocks = it->yuv_out2_ + Y_OFF_ENC; in PickBestIntra4()
1198 nz = ReconstructIntra16(it, rd, it->yuv_out_ + Y_OFF_ENC, it->preds_[0]); in SimpleQuantize()
1204 const uint8_t* const src = it->yuv_in_ + Y_OFF_ENC + VP8Scan[it->i4_]; in SimpleQuantize()
1205 uint8_t* const dst = it->yuv_out_ + Y_OFF_ENC + VP8Scan[it->i4_]; in SimpleQuantize()
[all …]
Dfilter_enc.c90 uint8_t* const y_dst = it->yuv_out2_ + Y_OFF_ENC; in DoFilter()
119 sum += VP8SSIMGetClipped(yuv1 + Y_OFF_ENC, BPS, yuv2 + Y_OFF_ENC, BPS, in GetMBSSIM()
Danalysis_enc.c252 VP8CollectHistogram(it->yuv_in_ + Y_OFF_ENC, in MBAnalyzeBestIntra16Mode()
273 VP8Mean16x4(it->yuv_in_ + Y_OFF_ENC + k * BPS, &dc[k]); in FastMBAnalyze()
302 const uint8_t* const src = it->yuv_in_ + Y_OFF_ENC + VP8Scan[it->i4_]; in MBAnalyzeBestIntra4Mode()
321 } while (VP8IteratorRotateI4(it, it->yuv_in_ + Y_OFF_ENC)); in MBAnalyzeBestIntra4Mode()
Diterator_enc.c143 ImportBlock(ysrc, pic->y_stride, it->yuv_in_ + Y_OFF_ENC, w, h, 16); in VP8IteratorImport()
192 const uint8_t* const ysrc = it->yuv_out_ + Y_OFF_ENC; in VP8IteratorExport()
293 const uint8_t* const ysrc = it->yuv_out_ + Y_OFF_ENC; in VP8IteratorSaveBoundary()
Dframe_enc.c482 enc->sse_[0] += VP8SSE16x16(in + Y_OFF_ENC, out + Y_OFF_ENC); in StoreSSE()
517 SetBlock(it->yuv_out_ + Y_OFF_ENC, mb->segment_ * 64, 16); in StoreSideInfo()
Dvp8i_enc.h74 #define Y_OFF_ENC (0) macro