Home
last modified time | relevance | path

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

/external/webp/src/enc/
Dfilter_enc.c161 const int level0 = enc->dqm_[s].fstrength_; in VP8StoreFilterStats()
210 enc->dqm_[s].fstrength_ = best_level; in VP8AdjustFilterStrength()
224 if (level > dqm->fstrength_) { in VP8AdjustFilterStrength()
225 dqm->fstrength_ = level; in VP8AdjustFilterStrength()
227 if (max_level < dqm->fstrength_) { in VP8AdjustFilterStrength()
228 max_level = dqm->fstrength_; in VP8AdjustFilterStrength()
Dquant_enc.c308 m->fstrength_ = (f < FSTRENGTH_CUTOFF) ? 0 : (f > 63) ? 63 : f; in SetupFilterStrength()
311 enc->filter_hdr_.level_ = enc->dqm_[0].fstrength_; in SetupFilterStrength()
359 return (S1->quant_ == S2->quant_) && (S1->fstrength_ == S2->fstrength_); in SegmentsAreEquivalent()
Dvp8i_enc.h195 int fstrength_; // final in-loop filtering strength member
Dwebp_enc.c289 stats->segment_level[i] = enc->dqm_[i].fstrength_; in StoreStats()
Dsyntax_enc.c203 VP8PutSignedBits(bw, enc->dqm_[s].fstrength_, 6); in PutSegmentHeader()