Class VideoDecodeAcceleratorCapability
- Namespace
- Selenium.WebDriver.BiDi.Cdp.SystemInfo
- Assembly
- Selenium.WebDriver.BiDi.Cdp.dll
Describes a supported video decoding profile with its associated minimum and maximum resolutions.
public sealed record VideoDecodeAcceleratorCapability : IEquatable<VideoDecodeAcceleratorCapability>
- Inheritance
-
VideoDecodeAcceleratorCapability
- Implements
- Inherited Members
Constructors
VideoDecodeAcceleratorCapability(string, Size, Size)
Describes a supported video decoding profile with its associated minimum and maximum resolutions.
public VideoDecodeAcceleratorCapability(string Profile, Size MaxResolution, Size MinResolution)
Parameters
ProfilestringVideo codec profile that is supported, e.g. VP9 Profile 2.
MaxResolutionSizeMaximum video dimensions in pixels supported for this |profile|.
MinResolutionSizeMinimum video dimensions in pixels supported for this |profile|.
Properties
MaxResolution
Maximum video dimensions in pixels supported for this |profile|.
public Size MaxResolution { get; init; }
Property Value
MinResolution
Minimum video dimensions in pixels supported for this |profile|.
public Size MinResolution { get; init; }
Property Value
Profile
Video codec profile that is supported, e.g. VP9 Profile 2.
public string Profile { get; init; }