VideoEncodingSettingsConfig constructor
const
VideoEncodingSettingsConfig(- {required int maxBitrate,
- required double maxFramerate,
- required double scaleResolutionDownBy}
)
Implementation
const factory VideoEncodingSettingsConfig({
/// Maximum bandwidth (bits/s) that the encoding is permitted to use for a track it encodes.
required int maxBitrate,
/// Maximum frame rate (frames/s) that can be used to send the encoded data.
required double maxFramerate,
/// Factor by which to scale down the track's frame resolution.
required double scaleResolutionDownBy,
}) = _VideoEncodingSettingsConfig;