ltmmDVD_TIMECODE_FLAGS constants
typedef enum ltmmDVD_TIMECODE_FLAGS
{
ltmmDVD_TC_FLAG_25fps = 0x00000001,
ltmmDVD_TC_FLAG_30fps = 0x00000002,
ltmmDVD_TC_FLAG_DropFrame = 0x00000004,
ltmmDVD_TC_FLAG_Interpolated = 0x00000008,
} ltmmDVD_TIMECODE_FLAGS;
The ltmmDVD_TIMECODE_FLAGS constants indicate the frame rate at which a digital video disc (DVD) has been authored to play. The values listed below can be used with the IltmmDVDControl interface methods and properties.
Constant |
Description |
ltmmDVD_TC_FLAG_25fps |
[0x00000001] Disc is authored to play at 25 frames per second. |
ltmmDVD_TC_FLAG_30fps |
[0x00000002] Disc is authored to play at 30 frames per second. |
ltmmDVD_TC_FLAG_DropFrame |
[0x00000004] Disc is authored to play at 29.97 frames per second. |
ltmmDVD_TC_FLAG_Interpolated |
[0x00000008] Timecode may be inaccurate (estimated). |
Comments
For more detailed information, see the Microsoft documentation for the DVD_TIMECODE_FLAGS Enumeration at http://msdn.microsoft.com/archive/default.asp?url=/library/en-us/directshow/htm/dvd_timecode_flagsenumeration.asp.