Skip to main content

Video Decompressor

A Node object whose type is VIDEO_DECOMPRESSOR.

Configuration

VideoDecompressorNodeConfig
{
"version" : Integer
}
Member nameTypeDescription
versionIntegerVideo compression version to use for decompression.

Can be either:
2 Improved video compression.
1 Backward compatibility with devices that only support this version.

Refer to the version_support member for the maximum version supported by a device.

This member must be configured as same version as the device from which it is receiving the compressed video, such as HDMI stream 0 if compression is enabled.

Status

{
"version_support" : Integer
}
Member nameTypeDescription
version_supportIntegerCompression version supported by device, is either 1 or 2.

Inputs

None

Example

As returned by get device:

{
"type": "VIDEO_DECOMPRESSOR",
"index": 0,
"configuration": {
"version": 2
},
"status": {
"version_support": 2
},
"inputs": []
}