Table of Contents

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

Profile string

Video codec profile that is supported, e.g. VP9 Profile 2.

MaxResolution Size

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

MinResolution Size

Minimum 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

Size

MinResolution

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

public Size MinResolution { get; init; }

Property Value

Size

Profile

Video codec profile that is supported, e.g. VP9 Profile 2.

public string Profile { get; init; }

Property Value

string