Skip to content

DD_ENCODE_CONFIG_SUPPORT

Structure Definition

1
2
3
4
5
typedef struct _dd_encode_config_support_
{
    DD_ENCODE_CONFIG encodeConfig[DD_MAX_SUPPORT_RESOLUTION]; 
    unsigned int num;                                         
} DD_ENCODE_CONFIG_SUPPORT;
1
2
3
4
5
6
7
[StructLayout(LayoutKind.Sequential, Pack = 4)]
public struct DD_ENCODE_CONFIG_SUPPORT
{
    [MarshalAs(UnmanagedType.ByValArray, ArraySubType = UnmanagedType.Struct, SizeConst = 7)]
    public DD_ENCODE_CONFIG[] encodeConfig;
    public UInt32 num;
}

Function Description

The encoding parameter structure supported by the device.

Member Description

Member Type Remark
encodeConfig DD_ENCODE_CONFIG[DD_MAX_SUPPORT_RESOLUTION] Video encoding configuration information.
num unsigned int The number of encoding configurations actually supported by the device.
Error Code