HomeSort by relevance Sort by last modified time
    Searched refs:dqm_ (Results 1 - 10 of 10) sorted by null

  /external/webp/src/dec/
quant.c 85 dec->dqm_[i] = dec->dqm_[0];
92 VP8QuantMatrix* const m = &dec->dqm_[i];
vp8i.h 224 VP8QuantMatrix dqm_[NUM_MB_SEGMENTS]; member in struct:VP8Decoder
vp8.c 554 const VP8QuantMatrix* q = &dec->dqm_[dec->segment_];
  /external/webp/src/enc/
quant.c 167 VP8SegmentInfo* const m = &enc->dqm_[i];
209 const int level = level0 * 256 * enc->dqm_[i].quant_ / 128;
210 const int f = level / (256 + enc->dqm_[i].beta_);
211 enc->dqm_[i].fstrength_ = (f < FSTRENGTH_CUTOFF) ? 0 : (f > 63) ? 63 : f;
214 enc->filter_hdr_.level_ = enc->dqm_[0].fstrength_;
271 const VP8SegmentInfo* const S1 = &enc->dqm_[s1];
275 const VP8SegmentInfo* const S2 = &enc->dqm_[s2];
284 enc->dqm_[num_final_segments] = enc->dqm_[s1];
295 enc->dqm_[i] = enc->dqm_[num_final_segments - 1]
    [all...]
analysis.c 95 enc->dqm_[n].alpha_ = clip(alpha, -127, 127);
96 enc->dqm_[n].beta_ = clip(beta, 0, 255);
383 enc->dqm_[0].alpha_ = 0;
384 enc->dqm_[0].beta_ = 0;
filter.c 355 const int level0 = it->enc_->dqm_[s].fstrength_; // TODO: ref_lf_delta[]
358 const int delta_min = -it->enc_->dqm_[s].quant_;
359 const int delta_max = it->enc_->dqm_[s].quant_;
403 enc->dqm_[s].fstrength_ = best_level;
syntax.c 202 VP8PutSignedValue(bw, enc->dqm_[s].quant_, 7);
205 VP8PutSignedValue(bw, enc->dqm_[s].fstrength_, 6);
webpenc.c 320 stats->segment_level[i] = enc->dqm_[i].fstrength_;
321 stats->segment_quant[i] = enc->dqm_[i].quant_;
vp8enci.h 405 VP8SegmentInfo dqm_[NUM_MB_SEGMENTS]; member in struct:VP8Encoder
frame.c 668 case 3: *info = enc->dqm_[mb->segment_].quant_; break;

Completed in 324 milliseconds