Home
last modified time | relevance | path

Searched refs:bandwidth_headroom_factor (Results 1 – 2 of 2) sorted by relevance

/external/webrtc/modules/video_coding/codecs/vp8/
Dlibvpx_vp8_encoder.cc102 double bandwidth_headroom_factor) { in Interpolate() argument
103 RTC_DCHECK_GE(bandwidth_headroom_factor, kLowRateFactor); in Interpolate()
104 RTC_DCHECK_LE(bandwidth_headroom_factor, kHighRateFactor); in Interpolate()
107 const double factor = bandwidth_headroom_factor - kLowRateFactor; in Interpolate()
112 Vp8RateSettings GetRateSettings(double bandwidth_headroom_factor) { in GetRateSettings() argument
116 if (bandwidth_headroom_factor <= kLowRateFactor) { in GetRateSettings()
118 } else if (bandwidth_headroom_factor >= kHighRateFactor) { in GetRateSettings()
125 high_settings.rc_undershoot_pct, bandwidth_headroom_factor); in GetRateSettings()
128 bandwidth_headroom_factor); in GetRateSettings()
131 bandwidth_headroom_factor); in GetRateSettings()
[all …]
/external/webrtc/modules/video_coding/codecs/vp9/
Dvp9_impl.cc166 double bandwidth_headroom_factor) { in Interpolate() argument
167 RTC_DCHECK_GE(bandwidth_headroom_factor, kLowRateFactor); in Interpolate()
168 RTC_DCHECK_LE(bandwidth_headroom_factor, kHighRateFactor); in Interpolate()
171 const double factor = bandwidth_headroom_factor - kLowRateFactor; in Interpolate()
176 Vp9RateSettings GetRateSettings(double bandwidth_headroom_factor) { in GetRateSettings() argument
180 if (bandwidth_headroom_factor <= kLowRateFactor) { in GetRateSettings()
182 } else if (bandwidth_headroom_factor >= kHighRateFactor) { in GetRateSettings()
189 high_settings.rc_undershoot_pct, bandwidth_headroom_factor); in GetRateSettings()
192 bandwidth_headroom_factor); in GetRateSettings()
195 bandwidth_headroom_factor); in GetRateSettings()
[all …]