MPEG_RQST_PACKET Structure

 
Microsoft DirectShow 9.0

MPEG_RQST_PACKET Structure

The MPEG_RQST_PACKET structure defines a buffer to receive MPEG-2 section data.

Syntax

typedef struct {
    DWORD     dwLength;
    PSECTION  pSection;
} MPEG_RQST_PACKET, *PMPEG_RQST_PACKET;

Members

dwLength

Specifies the length of the buffer that pSection points to. The minimum size for section data is 4096 bytes.

pSection

Pointer to a buffer that receives the section data. The pointer is typed as a SECTION structure. The first bytes in the section contain header fields that are defined in the SECTION structure. The SectionData member of the SECTION structure is an array of bytes, containing the body of the section after the header bytes.

Requirements

Header: Include Mpeg2Structs.h.

See Also