Video Decompressor
A Node object whose type is VIDEO_DECOMPRESSOR.
Configuration
VideoDecompressorNodeConfig{
"version" : Integer
}
| Member name | Type | Description |
|---|---|---|
| version | Integer | Video 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 name | Type | Description |
|---|---|---|
| version_support | Integer | Compression 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": []
}