Home
last modified time | relevance | path

Searched refs:QpSmoother (Results 1 – 4 of 4) sorted by relevance

/external/webrtc/modules/video_coding/utility/
Dquality_scaler.h62 class QpSmoother;
98 std::unique_ptr<QpSmoother> qp_smoother_high_ RTC_GUARDED_BY(&task_checker_);
99 std::unique_ptr<QpSmoother> qp_smoother_low_ RTC_GUARDED_BY(&task_checker_);
Dquality_scaler.cc43 class QualityScaler::QpSmoother { class in webrtc::QualityScaler
45 explicit QpSmoother(float alpha) in QpSmoother() function in webrtc::QualityScaler::QpSmoother
279 qp_smoother_high_.reset(new QpSmoother(config_.alpha_high)); in QualityScaler()
280 qp_smoother_low_.reset(new QpSmoother(config_.alpha_low)); in QualityScaler()
/external/webrtc/modules/video_coding/codecs/vp8/
Dlibvpx_vp8_decoder.h50 class QpSmoother;
66 const std::unique_ptr<QpSmoother> qp_smoother_;
Dlibvpx_vp8_decoder.cc97 class LibvpxVp8Decoder::QpSmoother { class in webrtc::LibvpxVp8Decoder
99 QpSmoother() : last_sample_ms_(rtc::TimeMillis()), smoother_(kAlpha) {} in QpSmoother() function in webrtc::LibvpxVp8Decoder::QpSmoother
135 qp_smoother_(use_postproc_ ? new QpSmoother() : nullptr) {} in LibvpxVp8Decoder()