chrome-devtools-kotlin / org.hildan.chrome.devtools.domains.systeminfo / VideoEncodeAcceleratorCapability

VideoEncodeAcceleratorCapability

data class VideoEncodeAcceleratorCapability

Describes a supported video encoding profile with its associated maximum resolution and maximum framerate.

Official doc

Constructors

<init>

Describes a supported video encoding profile with its associated maximum resolution and maximum framerate.

VideoEncodeAcceleratorCapability(profile: String, maxResolution: Size, maxFramerateNumerator: Int, maxFramerateDenominator: Int)

Properties

maxFramerateDenominator

val maxFramerateDenominator: Int

maxFramerateNumerator

Maximum encoding framerate in frames per second supported for this |profile|, as fraction's numerator and denominator, e.g. 24/1 fps, 24000/1001 fps, etc.

val maxFramerateNumerator: Int

maxResolution

Maximum video dimensions in pixels supported for this |profile|.

val maxResolution: Size

profile

Video codec profile that is supported, e.g H264 Main.

val profile: String