Lines Matching refs:kSimulcastFormats
80 constexpr const SimulcastFormat kSimulcastFormats[] = { variable
141 for (uint32_t i = 0; i < arraysize(kSimulcastFormats); ++i) { in FindSimulcastFormatIndex()
143 kSimulcastFormats[i].width * kSimulcastFormats[i].height) { in FindSimulcastFormatIndex()
168 return kSimulcastFormats[index]; in InterpolateSimulcastFormat()
170 kSimulcastFormats[index - 1].width * kSimulcastFormats[index - 1].height; in InterpolateSimulcastFormat()
172 kSimulcastFormats[index].width * kSimulcastFormats[index].height; in InterpolateSimulcastFormat()
177 size_t max_layers = kSimulcastFormats[index].max_layers; in InterpolateSimulcastFormat()
179 Interpolate(kSimulcastFormats[index - 1].max_bitrate, in InterpolateSimulcastFormat()
180 kSimulcastFormats[index].max_bitrate, rate); in InterpolateSimulcastFormat()
182 Interpolate(kSimulcastFormats[index - 1].target_bitrate, in InterpolateSimulcastFormat()
183 kSimulcastFormats[index].target_bitrate, rate); in InterpolateSimulcastFormat()
185 Interpolate(kSimulcastFormats[index - 1].min_bitrate, in InterpolateSimulcastFormat()
186 kSimulcastFormats[index].min_bitrate, rate); in InterpolateSimulcastFormat()
239 kSimulcastFormats[FindSimulcastFormatIndex(width, height)].max_layers); in LimitSimulcastLayerCount()