DirectShow DirectShow 레퍼런스 DirectShow 구조체 DVD_TIMECODE   [목차열람] [주소복사] [슬롯비우기]
DVD_TIMECODE 구조체
 
Microsoft DirectX 9.0

DVD_TIMECODE 구조체

DVD_TIMECODE 구조체에는, DVD 타임 코드 (시, 분, 초, 프레임)를 저장 한다.

구문

typedef struct tagDVD_TIMECODE {
   ULONG Hours1:4; 
   ULONG Hours10:4; 
   ULONG Minutes1:4; 
   ULONG Minutes10:4; 
   ULONG Seconds1:4; 
   ULONG Seconds10:4; 
   ULONG Frames1:4; 
   ULONG Frames10:2; 
   ULONG FrameRateCode:2; 
} DVD_TIMECODE;

멤버

Hours1

시.

Hours10

때 (10 의 자리수).

Minutes1

분.

Minutes10

분 (10 의 자리수).

Seconds1

초.

Seconds10

초 (10 의 자리수).

Frames1

프레임.

Frames10

프레임 (10 의 자리수).

FrameRateCode

DVD_FRAMERATE 가 가리키는, 1 초 쯤의 드롭 되는 프레임수, 드롭 되지 않는 프레임수.

주의

DVD 타임 코드는, 0xHhMmSsFf 포맷의 BCD (Binary Coded Decimal) 코드이다.

참조

↑TOP