Class VideoDecodeAcceleratorCapability
- java.lang.Object
-
- org.openqa.selenium.devtools.systeminfo.model.VideoDecodeAcceleratorCapability
-
public class VideoDecodeAcceleratorCapability extends java.lang.Object
Describes a supported video decoding profile with its associated minimum and maximum resolutions.
-
-
Constructor Summary
Constructors Constructor Description VideoDecodeAcceleratorCapability(java.lang.String profile, Size maxResolution, Size minResolution)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Size
getMaxResolution()
Maximum video dimensions in pixels supported for this |profile|.Size
getMinResolution()
Minimum video dimensions in pixels supported for this |profile|.java.lang.String
getProfile()
Video codec profile that is supported, e.g.
-
-
-
Method Detail
-
getProfile
public java.lang.String getProfile()
Video codec profile that is supported, e.g. VP9 Profile 2.
-
getMaxResolution
public Size getMaxResolution()
Maximum video dimensions in pixels supported for this |profile|.
-
getMinResolution
public Size getMinResolution()
Minimum video dimensions in pixels supported for this |profile|.
-
-