Lines Matching refs:max_layers
65 size_t max_layers; member
177 size_t max_layers = kSimulcastFormats[index].max_layers; in InterpolateSimulcastFormat() local
188 return {width, height, max_layers, max_bitrate, target_bitrate, min_bitrate}; in InterpolateSimulcastFormat()
239 kSimulcastFormats[FindSimulcastFormatIndex(width, height)].max_layers); in LimitSimulcastLayerCount()
251 size_t max_layers, in GetSimulcastConfig() argument
258 RTC_DCHECK_LE(min_layers, max_layers); in GetSimulcastConfig()
259 RTC_DCHECK(max_layers > 1 || is_screenshare_with_conference_mode); in GetSimulcastConfig()
265 return GetScreenshareLayers(max_layers, width, height, bitrate_priority, in GetSimulcastConfig()
272 max_layers = in GetSimulcastConfig()
273 LimitSimulcastLayerCount(width, height, min_layers, max_layers); in GetSimulcastConfig()
275 return GetNormalSimulcastLayers(max_layers, width, height, bitrate_priority, in GetSimulcastConfig()
353 size_t max_layers, in GetScreenshareLayers() argument
362 std::min<int>(max_layers, max_screenshare_layers); in GetScreenshareLayers()