Home
last modified time | relevance | path

Searched refs:top_nz_ (Results 1 – 5 of 5) sorted by relevance

/external/webp/src/enc/
Dcost.c226 ctx = it->top_nz_[x] + it->left_nz_[y]; in VP8GetCostLuma4()
243 R += VP8GetResidualCost(it->top_nz_[8] + it->left_nz_[8], &res); in VP8GetCostLuma16()
249 const int ctx = it->top_nz_[x] + it->left_nz_[y]; in VP8GetCostLuma16()
252 it->top_nz_[x] = it->left_nz_[y] = (res.last >= 0); in VP8GetCostLuma16()
270 const int ctx = it->top_nz_[4 + ch + x] + it->left_nz_[4 + ch + y]; in VP8GetCostUV()
273 it->top_nz_[4 + ch + x] = it->left_nz_[4 + ch + y] = (res.last >= 0); in VP8GetCostUV()
Dframe.c310 it->top_nz_[8] = it->left_nz_[8] = in CodeResiduals()
311 PutCoeffs(bw, it->top_nz_[8] + it->left_nz_[8], &res); in CodeResiduals()
320 const int ctx = it->top_nz_[x] + it->left_nz_[y]; in CodeResiduals()
322 it->top_nz_[x] = it->left_nz_[y] = PutCoeffs(bw, ctx, &res); in CodeResiduals()
332 const int ctx = it->top_nz_[4 + ch + x] + it->left_nz_[4 + ch + y]; in CodeResiduals()
334 it->top_nz_[4 + ch + x] = it->left_nz_[4 + ch + y] = in CodeResiduals()
360 it->top_nz_[8] = it->left_nz_[8] = in RecordResiduals()
361 VP8RecordCoeffs(it->top_nz_[8] + it->left_nz_[8], &res); in RecordResiduals()
370 const int ctx = it->top_nz_[x] + it->left_nz_[y]; in RecordResiduals()
372 it->top_nz_[x] = it->left_nz_[y] = VP8RecordCoeffs(ctx, &res); in RecordResiduals()
[all …]
Dquant.c760 const int ctx = it->top_nz_[x] + it->left_nz_[y]; in ReconstructIntra16()
764 it->top_nz_[x] = it->left_nz_[y] = non_zero; in ReconstructIntra16()
803 const int ctx = it->top_nz_[x] + it->left_nz_[y]; in ReconstructIntra4()
831 const int ctx = it->top_nz_[4 + ch + x] + it->left_nz_[4 + ch + y]; in ReconstructUV()
835 it->top_nz_[4 + ch + x] = it->left_nz_[4 + ch + y] = non_zero; in ReconstructUV()
1042 it->top_nz_[it->i4_ & 3] = it->left_nz_[it->i4_ >> 2] = (rd_i4.nz ? 1 : 0); in PickBestIntra4()
Diterator.c232 int* const top_nz = it->top_nz_; in VP8IteratorNzToBytes()
265 const int* const top_nz = it->top_nz_; in VP8IteratorBytesToNz()
Dvp8enci.h236 int top_nz_[9]; // top-non-zero context. member