DVD_HMSF_TIMECODE Structure

 
Microsoft DirectShow 9.0

DVD_HMSF_TIMECODE Structure

The DVD_HMSF_TIMECODE structure gives the hours, minutes, seconds, and frames in a DVD timecode.

Syntax

typedef struct tagDVD_HMSF_TIMECODE {
    BYTE    bHours;
    BYTE    bMinutes;
    BYTE    bSeconds;
    BYTE    bFrames;
} DVD_HMSF_TIMECODE;

Members

bHours

Hours.

bMinutes

Minutes.

bSeconds

Seconds.

bFrames

Frames.

Remarks

A DVD_HMSF_TIMECODE structure is used in various IDvdControl2 and IDvdInfo2 methods. A DVD_HMSF_TIMECODE structure can be cast to or from a ULONG value. This means that if you need to use the old BCD time format for backward compatibility, you can do so in place of a DVD_HMSF_TIMECODE structure.

Requirements

Header: Dshow.h.

See Also