跳转至

DECODE_FRAME_INFO

结构体定义

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;
}

功能描述

解码帧信息。

成员说明

成员 类型 备注
nWidth int 帧宽。
nHeight int 帧高。
time unsigned int 帧时间,以秒为单位。
dwLen unsigned int 帧数据长度。
pData unsigned char* 帧数据。
错误码