Skip to content

DECODE_FRAME_INFO

Structure Definition

1
2
3
4
5
6
7
8
typedef struct decode_frameInfo
{
    int nWidth;           
    int nHeight;          
    unsigned int time;    
    unsigned int dwLen;   
    unsigned char* pData; 
} DECODE_FRAME_INFO;
1
2
3
4
5
6
7
8
9
[StructLayout(LayoutKind.Sequential, Pack = 4)]
public struct DECODE_FRAME_INFO
{
    public Int32 nWidth;
    public Int32 nHeight;
    public UInt32 time;
    public UInt32 dwLen;
    public IntPtr pData;
}

Function Description

Decode frame information.

Member Description

Member Type Remark
nWidth int Frame width.
nHeight int Frame height.
time unsigned int The frame time in seconds.
dwLen unsigned int Frame data length.
pData unsigned char* Frame data.
Error Code