DVD_HMSF_TIMECODE structure (strmif.h)

[The feature associated with this page, DirectShow, is a legacy feature. It has been superseded by MediaPlayer, IMFMediaEngine, and Audio/Video Capture in Media Foundation. Those features have been optimized for Windows 10 and Windows 11. Microsoft strongly recommends that new code use MediaPlayer, IMFMediaEngine and Audio/Video Capture in Media Foundation instead of DirectShow, when possible. Microsoft suggests that existing code that uses the legacy APIs be rewritten to use the new APIs if possible.]

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

Requirement Value
Header strmif.h (include Dshow.h)

See also

DirectShow Structures