Microsoft DirectX 8.1 (C++)

DVD_ATR Structure

The DVD_ATR structure describes various DVD attributes as found on the disc. To parse this information, refer to the DVD-Video specification.

Syntax

typedef struct tagDVD_ATR {
    ULONG    ulCAT;     
    BYTE    pbATRI[768];
} DVD_ATR;

Members

ulCAT

VMG_CAT if this is for a volume; or VTS_CAT if this is for a Video Title Set (VTS).

pbATRI

All stream attributes for menu and title from bytes 256 to 1023 of Video Manager Information (VMGI) or Video Title Set Information (VTSI).

Remarks

This structure is used with the deprecated IDvdInfo interface. Newer applications should use the IDvdInfo2 interface.

See Also