dvdif.idl
上传用户:dzyhzl
上传日期:2019-04-29
资源大小:56270k
文件大小:91k
源码类别:

模拟服务器

开发平台:

C/C++

  1. //------------------------------------------------------------------------------
  2. // File: DVDIf.idl
  3. //
  4. // Desc: DirectShow interfaces to control playback of a DVD filter graph.
  5. //
  6. // Copyright (c) 1992-2000, Microsoft Corporation. All rights reserved.
  7. //------------------------------------------------------------------------------
  8. // forward declarations - these are the interfaces declared in this file
  9. import "unknwn.idl";
  10. import "objidl.idl";
  11. cpp_quote("#include <ddraw.h>")
  12. interface IDvdControl;
  13. interface IDvdInfo;
  14. interface IDirectDraw;
  15. interface IDirectDrawSurface;
  16. interface IDvdGraphBuilder ;
  17. interface IDDrawExclModeVideo;
  18. interface IDDrawExclModeVideoCallback;
  19. interface IDvdCmd;
  20. interface IDvdState;
  21. //==========================================================================
  22. //==========================================================================
  23. //
  24. // typedefs used by IDvdControl and IDvdInfo interfaces.
  25. //
  26. //==========================================================================
  27. //==========================================================================
  28. typedef enum tagDVD_DOMAIN {
  29.     // The DVD_DOMAIN is used to indicate the stat of a DVD player.
  30.     DVD_DOMAIN_FirstPlay=1,       // doing default initialization of a dvd disc
  31.     DVD_DOMAIN_VideoManagerMenu,  // displaying menus for whole disc
  32.     DVD_DOMAIN_VideoTitleSetMenu, // displaying menus for current title set
  33.     DVD_DOMAIN_Title,             // displaying current title
  34.     DVD_DOMAIN_Stop               // player is in stopped state
  35. } DVD_DOMAIN;
  36. typedef enum tagDVD_MENU_ID {
  37.     DVD_MENU_Title = 2,     // to choose a title from any VTS in a DVD-Video volume
  38.     DVD_MENU_Root = 3,      // main menu for a specific VTS 
  39.     DVD_MENU_Subpicture =4, // to choose subpicture stream in a VTS
  40.     DVD_MENU_Audio = 5,     // to choose audio stream in a VTS
  41.     DVD_MENU_Angle = 6,     // to choose angle num in a VTS
  42.     DVD_MENU_Chapter = 7    // to choose a chapter in a VTS
  43.     // the Root menu always provides a means of getting to to Subpicture, Audio, 
  44.     // Angle and Chapter menus if they exist.
  45. } DVD_MENU_ID;
  46. typedef enum tagDVD_DISC_SIDE {
  47.     DVD_SIDE_A = 1,
  48.     DVD_SIDE_B = 2
  49. } DVD_DISC_SIDE;
  50. typedef enum tagDVD_PREFERRED_DISPLAY_MODE
  51. {
  52.     // DVD_PREFERRED_DISPLAY_MODE is used to indicate the user's
  53.     // preferred window aspect ratio and preferred method of converion of
  54.     // 16*9 content to a 4*3 window aspect ratio.  Pan-scan and letterboxing are
  55.     // the two conversion methods.  This enum is used to indicate only a preference of 
  56.     // conversion mechinism since some content can only be converted using one 
  57.     // of these methods.  4*3 content is converted to a 16*9 window always by using
  58.     // "reverse" letterboxing where black bars are added to the right and left 
  59.     // sides of the display instead of the top and bottom of the display as in the 16*9
  60.     // to 4*3 conversion useing letterboxing.
  61.     DISPLAY_CONTENT_DEFAULT = 0,    // default to content
  62.     DISPLAY_16x9 = 1,               // 16x9 display
  63.     DISPLAY_4x3_PANSCAN_PREFERRED = 2,   // 4x3 display with pan-scan preferrence
  64.     DISPLAY_4x3_LETTERBOX_PREFERRED = 3   // 4x3 display with letterbox preferrence
  65. } DVD_PREFERRED_DISPLAY_MODE;
  66. typedef WORD DVD_REGISTER;
  67. typedef DVD_REGISTER    GPRMARRAY[16]; // DVD-Video 1.0 has 16 16-bit General Parameter Registers
  68. typedef DVD_REGISTER    SPRMARRAY[24]; // DVD-Video 1.0 has 24 16-bit System Parameter Registers
  69. // these are only for IDVDInfo1 compatibility and require the DVD-Video 1.0 specification
  70. // Please use the IDVDInfo2's DVD_Title/MenuAttributes, DVD_VideoAttributes, DVD_AudioAttributes, and DVD_SubpictureAttributes
  71. typedef struct tagDVD_ATR 
  72. {
  73.     //
  74.     // Refer to the DVD-Video 1.0 spec to parse these structures.
  75.     //
  76.     ULONG    ulCAT;     // VMG_CAT if this is for a volume; or VTS_CAT 
  77.                         //      if this is for a Video Title Set (VTS)
  78.     BYTE    pbATRI[768];// All stream attributes for menu and title from bytes
  79.                         //      256 to 1023 of VMGI or VTSI.
  80. } DVD_ATR;
  81. typedef BYTE DVD_VideoATR[2];   // video stream attributes.
  82. typedef BYTE DVD_AudioATR[8];   // audio stream attributes.
  83. typedef BYTE DVD_SubpictureATR[6]; // subpicture stream attributes.
  84. // DVD1.0 Timecode is BCD encoded in this format: 0xHhMmSsFf, where
  85. //      H is tens of hours
  86. //      h is hours
  87. //      M is tens of minutes
  88. //      m is minutes
  89. //      S is tens of seconds
  90. //      s is seconds
  91. //      F is tens of frames
  92. //      f is frames
  93. // Note that you must know the frame rate to interperate the frame count as time.
  94. typedef enum tagDVD_FRAMERATE
  95. {
  96.     DVD_FPS_25 =1, // 25 frames per second
  97.     DVD_FPS_30NonDrop = 3 // exactly 30 frames per second
  98. } DVD_FRAMERATE;
  99. cpp_quote("typedef struct tagDVD_TIMECODE")
  100. cpp_quote("{")
  101. cpp_quote("   ULONG Hours1    :4; // Hours")
  102. cpp_quote("   ULONG Hours10  :4; // Tens of Hours ")
  103. cpp_quote("")
  104. cpp_quote("   ULONG Minutes1  :4; // Minutes ")
  105. cpp_quote("   ULONG Minutes10:4; // Tens of Minutes ")
  106. cpp_quote("")
  107. cpp_quote("   ULONG Seconds1  :4; // Seconds ")
  108. cpp_quote("   ULONG Seconds10:4; // Tens of Seconds ")
  109. cpp_quote("")
  110. cpp_quote("   ULONG Frames1   :4; // Frames ")
  111. cpp_quote("   ULONG Frames10 :2; // Tens of Frames ")
  112. cpp_quote("")
  113. cpp_quote("   ULONG FrameRateCode: 2; // use DVD_FRAMERATE to indicate frames/sec and drop/non-drop")
  114. cpp_quote("} DVD_TIMECODE;")
  115. //
  116. //  Newer IDVD2 methods can use the HMSF format instead
  117. // Call SetOption( DVD_HMSF_TimeCodeEvents, TRUE) to return EC_DVD_CURRENT_HMSF_TIME
  118. // instead of EC_DVD_CURRENT_TIME events
  119. //
  120. typedef enum tagDVD_TIMECODE_FLAGS
  121. {
  122.     DVD_TC_FLAG_25fps         = 0x00000001, // 25 frames per second
  123.     DVD_TC_FLAG_30fps         = 0x00000002, // 30 frames per second
  124.     DVD_TC_FLAG_DropFrame     = 0x00000004, // 29.97 instead of 30 fps
  125.     DVD_TC_FLAG_Interpolated  = 0x00000008, // timecode may be inaccurate
  126.     // remainder of bits are reserved and should not be read
  127. } DVD_TIMECODE_FLAGS;
  128. // this can be cast to/from a ULONG
  129. typedef struct tagDVD_HMSF_TIMECODE
  130. {
  131.     BYTE    bHours;
  132.     BYTE    bMinutes;
  133.     BYTE    bSeconds;
  134.     BYTE    bFrames;
  135. } DVD_HMSF_TIMECODE;
  136. typedef struct tagDVD_PLAYBACK_LOCATION2 
  137. {
  138.     //
  139.     // TitleNum & ChapterNum or TitleNum & TimeCode are sufficient to save 
  140.     // playback location for One_Sequential_PGC_Titles.
  141.     //
  142.     ULONG   TitleNum;   // title number for whole disc (TTN not VTS_TTN)
  143.     ULONG   ChapterNum; // part-of-title number with title. 0xffffffff if not Once_Sequential_PGC_Title
  144.     DVD_HMSF_TIMECODE   TimeCode;   // use DVD_TIMECODE for current playback time.
  145.     ULONG   TimeCodeFlags;  // union of DVD_TIMECODE_EVENT_FLAGS
  146. } DVD_PLAYBACK_LOCATION2;
  147. typedef struct tagDVD_PLAYBACK_LOCATION 
  148. {
  149.     //
  150.     // TitleNum & ChapterNum or TitleNum & TimeCode are sufficient to save 
  151.     // playback location for One_Sequential_PGC_Titles.
  152.     //
  153.     ULONG   TitleNum;   // title number for whole disc (TTN not VTS_TTN)
  154.     ULONG   ChapterNum; // part-of-title number with title. 0xffffffff if not Once_Sequential_PGC_Title
  155.     ULONG   TimeCode;   // use DVD_TIMECODE for current playback time. 0xffffffff if not Once_Sequential_PGC_Title
  156. } DVD_PLAYBACK_LOCATION;
  157. typedef DWORD VALID_UOP_SOMTHING_OR_OTHER;
  158. typedef enum {
  159.                                                             //
  160.                                                             // Annex J User Functions ---
  161.                                                             //
  162.     UOP_FLAG_Play_Title_Or_AtTime           = 0x00000001,   // Title_Or_Time_Play
  163.     UOP_FLAG_Play_Chapter                   = 0x00000002,   // Chapter_Search_Or_Play
  164.     UOP_FLAG_Play_Title                     = 0x00000004,   // Title_Play
  165.     UOP_FLAG_Stop                           = 0x00000008,   // Stop
  166.     UOP_FLAG_ReturnFromSubMenu              = 0x00000010,   // GoUp
  167.     UOP_FLAG_Play_Chapter_Or_AtTime         = 0x00000020,   // Time_Or_Chapter_Search
  168.     UOP_FLAG_PlayPrev_Or_Replay_Chapter     = 0x00000040,   // Prev_Or_Top_PG_Search
  169.     UOP_FLAG_PlayNext_Chapter               = 0x00000080,   // Next_PG_Search
  170.     UOP_FLAG_Play_Forwards                  = 0x00000100,   // Forward_Scan
  171.     UOP_FLAG_Play_Backwards                 = 0x00000200,   // Backward_Scan
  172.     UOP_FLAG_ShowMenu_Title                 = 0x00000400,   // Title_Menu_Call
  173.     UOP_FLAG_ShowMenu_Root                  = 0x00000800,   // Root_Menu_Call
  174.     UOP_FLAG_ShowMenu_SubPic                = 0x00001000,   // SubPic_Menu_Call
  175.     UOP_FLAG_ShowMenu_Audio                 = 0x00002000,   // Audio_Menu_Call
  176.     UOP_FLAG_ShowMenu_Angle                 = 0x00004000,   // Angle_Menu_Call
  177.     UOP_FLAG_ShowMenu_Chapter               = 0x00008000,   // Chapter_Menu_Call
  178.     UOP_FLAG_Resume                         = 0x00010000,   // Resume
  179.     UOP_FLAG_Select_Or_Activate_Button      = 0x00020000,   // Button_Select_Or_Activate
  180.     UOP_FLAG_Still_Off                      = 0x00040000,   // Still_Off
  181.     UOP_FLAG_Pause_On                       = 0x00080000,   // Pause_On
  182.     UOP_FLAG_Select_Audio_Stream            = 0x00100000,   // Audio_Stream_Change
  183.     UOP_FLAG_Select_SubPic_Stream           = 0x00200000,   // SubPic_Stream_Change
  184.     UOP_FLAG_Select_Angle                   = 0x00400000,   // Angle_Change
  185.     UOP_FLAG_Select_Karaoke_Audio_Presentation_Mode = 0x00800000, // Karaoke_Audio_Pres_Mode_Change
  186.     UOP_FLAG_Select_Video_Mode_Preference           = 0x01000000  // Video_Pres_Mode_Change
  187. } VALID_UOP_FLAG ;
  188. typedef enum {
  189.     DVD_CMD_FLAG_None               = 0x00000000,
  190.     DVD_CMD_FLAG_Flush              = 0x00000001,
  191.     DVD_CMD_FLAG_SendEvents         = 0x00000002,
  192.     DVD_CMD_FLAG_Block              = 0x00000004,    // block end
  193.     DVD_CMD_FLAG_StartWhenRendered  = 0x00000008,    // command "start" when the first frame is rendered
  194.     DVD_CMD_FLAG_EndAfterRendered   = 0x00000010,    // command "ends" after the last frame is rendered
  195. } DVD_CMD_FLAGS;
  196. // For IDVDControl2::SetOption flags
  197. typedef enum {
  198.     DVD_ResetOnStop               = 1,  // default TRUE
  199.     DVD_NotifyParentalLevelChange = 2,  // default FALSE
  200.     DVD_HMSF_TimeCodeEvents        = 3,  // default FALSE (send DVD_CURRENT_TIME events)
  201. } DVD_OPTION_FLAG;
  202. typedef enum {
  203.     DVD_Relative_Upper   = 1,
  204.     DVD_Relative_Lower   = 2,
  205.     DVD_Relative_Left    = 3,
  206.     DVD_Relative_Right   = 4
  207. } DVD_RELATIVE_BUTTON;
  208. // Parental Level Information
  209. typedef enum tagDVD_PARENTAL_LEVEL
  210. {
  211.     DVD_PARENTAL_LEVEL_8 = 0x8000,
  212.     DVD_PARENTAL_LEVEL_7 = 0x4000,
  213.     DVD_PARENTAL_LEVEL_6 = 0x2000,
  214.     DVD_PARENTAL_LEVEL_5 = 0x1000,
  215.     DVD_PARENTAL_LEVEL_4 = 0x0800,
  216.     DVD_PARENTAL_LEVEL_3 = 0x0400,
  217.     DVD_PARENTAL_LEVEL_2 = 0x0200,
  218.     DVD_PARENTAL_LEVEL_1 = 0x0100
  219. } DVD_PARENTAL_LEVEL;
  220. typedef enum tagDVD_AUDIO_LANG_EXT
  221. {
  222.     DVD_AUD_EXT_NotSpecified        =0,
  223.     DVD_AUD_EXT_Captions            =1,
  224.     DVD_AUD_EXT_VisuallyImpaired    =2,
  225.     DVD_AUD_EXT_DirectorComments1   =3,
  226.     DVD_AUD_EXT_DirectorComments2   =4,
  227. } DVD_AUDIO_LANG_EXT;
  228. typedef enum tagDVD_SUBPICTURE_LANG_EXT
  229. {
  230.     DVD_SP_EXT_NotSpecified     =0,
  231.     DVD_SP_EXT_Caption_Normal   =1,
  232.     DVD_SP_EXT_Caption_Big      =2,
  233.     DVD_SP_EXT_Caption_Children =3,
  234.     DVD_SP_EXT_CC_Normal        =5,
  235.     DVD_SP_EXT_CC_Big           =6,
  236.     DVD_SP_EXT_CC_Children      =7,
  237.     DVD_SP_EXT_Forced           =9,
  238.     DVD_SP_EXT_DirectorComments_Normal      =13,
  239.     DVD_SP_EXT_DirectorComments_Big         =14,
  240.     DVD_SP_EXT_DirectorComments_Children    =15,
  241. } DVD_SUBPICTURE_LANG_EXT;
  242. typedef enum tagDVD_AUDIO_APPMODE
  243. {
  244.     DVD_AudioMode_None     = 0, // no special mode
  245.     DVD_AudioMode_Karaoke  = 1,
  246.     DVD_AudioMode_Surround = 2, 
  247.     DVD_AudioMode_Other    = 3, 
  248. } DVD_AUDIO_APPMODE;
  249. typedef enum tagDVD_AUDIO_FORMAT
  250. {
  251.     DVD_AudioFormat_AC3       = 0,
  252.     DVD_AudioFormat_MPEG1     = 1,
  253.     DVD_AudioFormat_MPEG1_DRC = 2,    // MPEG1 with dynamic range control
  254.     DVD_AudioFormat_MPEG2     = 3,
  255.     DVD_AudioFormat_MPEG2_DRC = 4,    // MPEG2 with dynamic range control
  256.     DVD_AudioFormat_LPCM      = 5,
  257.     DVD_AudioFormat_DTS       = 6,
  258.     DVD_AudioFormat_SDDS      = 7,
  259.     DVD_AudioFormat_Other     = 8
  260. } DVD_AUDIO_FORMAT;
  261. // flags for SelectKaraokeAudioPresentationMode
  262. typedef enum tagDVD_KARAOKE_DOWNMIX
  263. {
  264.     DVD_Mix_0to0 = 0x0001,  // unused - reserved for future use
  265.     DVD_Mix_1to0 = 0x0002,  // unused - reserved for future use
  266.     DVD_Mix_2to0 = 0x0004,
  267.     DVD_Mix_3to0 = 0x0008,
  268.     DVD_Mix_4to0 = 0x0010,
  269.     DVD_Mix_Lto0 = 0x0020,  // mix auxillary L to channel 0 (left speaker)
  270.     DVD_Mix_Rto0 = 0x0040,  // mix auxillary R to channel 0 (left speaker)
  271.     DVD_Mix_0to1 = 0x0100,  // unused - reserved for future use
  272.     DVD_Mix_1to1 = 0x0200,  // unused - reserved for future use
  273.     DVD_Mix_2to1 = 0x0400,
  274.     DVD_Mix_3to1 = 0x0800,
  275.     DVD_Mix_4to1 = 0x1000,
  276.     DVD_Mix_Lto1 = 0x2000,  // mix auxillary L to channel 1 (right speaker)
  277.     DVD_Mix_Rto1 = 0x4000,  // mix auxillary R to channel 1 (right speaker)
  278. } DVD_KARAOKE_DOWNMIX;
  279. typedef struct tagDVD_AudioAttributes
  280. {
  281.     DVD_AUDIO_APPMODE   AppMode;
  282.     BYTE                AppModeData;            
  283.     DVD_AUDIO_FORMAT    AudioFormat;            // Use GetKaraokeAttributes()
  284.     LCID                Language;               // 0 if no language is present
  285.     DVD_AUDIO_LANG_EXT  LanguageExtension;      // (captions, if for children etc)
  286.     BOOL                fHasMultichannelInfo;   // multichannel attributes are present (Use GetMultiChannelAudioAttributes())
  287.     DWORD               dwFrequency;            // in hertz (48k, 96k)
  288.     BYTE                bQuantization;          // resolution (16, 20, 24 bits etc), 0 is unknown
  289.     BYTE                bNumberOfChannels;      // 5.1 AC3 has 6 channels
  290.     DWORD               dwReserved[2];
  291. } DVD_AudioAttributes;
  292. typedef struct tagDVD_MUA_MixingInfo
  293. {   
  294.     // surround sound mixing information applied when:
  295.     // AppMode = DVD_AudioMode_Surround
  296.     // AudioFormat = DVD_AudioFormat_LPCM,
  297.     // fHasMultichannelInfo=1 modes are all on
  298.     //
  299.     BOOL    fMixTo0;
  300.     BOOL    fMixTo1;
  301.     //
  302.     BOOL    fMix0InPhase;
  303.     BOOL    fMix1InPhase;
  304.     DWORD   dwSpeakerPosition;  // see ksmedia.h: SPEAKER_FRONT_LEFT, SPEAKER_FRONT_RIGHT, etc
  305. } DVD_MUA_MixingInfo;
  306. //  The alpha coeff is used to mix to ACH0 and beta is used to mix to ACH1
  307. //
  308. //  In general:
  309. //      ACH0 = coeff[0].alpha * value[0] + coeff[1].alpha * value[1] + ... 
  310. //      ACH1 = coeff[0].beta * value[0]  + coeff[1].beta * value[1] + ... 
  311. typedef struct tagDVD_MUA_Coeff
  312. {
  313.     double   log2_alpha; // actual coeff = 2^alpha
  314.     double   log2_beta;  // actual coeff = 2^beta
  315. } DVD_MUA_Coeff;
  316. typedef struct tagDVD_MultichannelAudioAttributes
  317. {
  318.     // actual Data for each data stream
  319.     DVD_MUA_MixingInfo  Info[8];
  320.     DVD_MUA_Coeff       Coeff[8];
  321. } DVD_MultichannelAudioAttributes;
  322. // bitwise OR of these flags descript the contents of each channel
  323. typedef enum tagDVD_KARAOKE_CONTENTS
  324. {
  325.     DVD_Karaoke_GuideVocal1  = 0x0001,
  326.     DVD_Karaoke_GuideVocal2  = 0x0002,
  327.     DVD_Karaoke_GuideMelody1 = 0x0004,
  328.     DVD_Karaoke_GuideMelody2 = 0x0008,
  329.     DVD_Karaoke_GuideMelodyA = 0x0010,
  330.     DVD_Karaoke_GuideMelodyB = 0x0020,
  331.     DVD_Karaoke_SoundEffectA = 0x0040,
  332.     DVD_Karaoke_SoundEffectB = 0x0080
  333. } DVD_KARAOKE_CONTENTS;
  334. typedef enum tagDVD_KARAOKE_ASSIGNMENT
  335. {
  336.     DVD_Assignment_reserved0   = 0,
  337.     DVD_Assignment_reserved1   = 1,
  338.     DVD_Assignment_LR    = 2,   // left right
  339.     DVD_Assignment_LRM   = 3,   // left right middle
  340.     DVD_Assignment_LR1   = 4,   // left right audio1
  341.     DVD_Assignment_LRM1  = 5,   // left right middle audio1
  342.     DVD_Assignment_LR12  = 6,   // left right audio1 audio2
  343.     DVD_Assignment_LRM12 = 7        // left right middle audio1 audio2
  344. } DVD_KARAOKE_ASSIGNMENT;
  345. typedef struct tagDVD_KaraokeAttributes
  346. {
  347.     BYTE            bVersion;
  348.     BOOL            fMasterOfCeremoniesInGuideVocal1;
  349.     BOOL            fDuet;  // false = solo
  350.     DVD_KARAOKE_ASSIGNMENT  ChannelAssignment;
  351.     WORD            wChannelContents[8];        // logical OR of DVD_KARAOKE_CONTENTS  
  352. } DVD_KaraokeAttributes;
  353. typedef enum tagDVD_VIDEO_COMPRESSION
  354. {
  355.     DVD_VideoCompression_Other  = 0,
  356.     DVD_VideoCompression_MPEG1  = 1,
  357.     DVD_VideoCompression_MPEG2  = 2,
  358. } DVD_VIDEO_COMPRESSION;
  359. typedef struct tagDVD_VideoAttributes
  360. {
  361.     BOOL        fPanscanPermitted;      // if a 4x3 display, can be shown as PanScan
  362.     BOOL        fLetterboxPermitted;    // if a 4x3 display, can be shown as Letterbox
  363.     ULONG       ulAspectX;              // 4x3 or 16x9
  364.     ULONG       ulAspectY;
  365.     ULONG       ulFrameRate;            // 50hz or 60hz
  366.     ULONG       ulFrameHeight;          // 525 (60hz) or 625 (50hz)
  367.     DVD_VIDEO_COMPRESSION   Compression;// MPEG1 or MPEG2
  368.     BOOL        fLine21Field1InGOP;     // true if there is user data in field 1 of GOP of video stream
  369.     BOOL        fLine21Field2InGOP;     // true if there is user data in field 1 of GOP of video stream
  370.     ULONG       ulSourceResolutionX;    // X source resolution (352,704, or 720)
  371.     ULONG       ulSourceResolutionY;    // Y source resolution (240,480, 288 or 576)
  372.     BOOL        fIsSourceLetterboxed;   // subpictures and highlights (e.g. subtitles or menu buttons) are only
  373.                                         // displayed in the active video area and cannot be displayed in the top/bottom 'black' bars
  374.     BOOL        fIsFilmMode;          // for 625/50hz systems, is film mode (true) or camera mode (false) 
  375. } DVD_VideoAttributes;
  376. typedef enum tagDVD_SUBPICTURE_TYPE
  377. {
  378.     DVD_SPType_NotSpecified = 0,
  379.     DVD_SPType_Language     = 1,
  380.     DVD_SPType_Other        = 2,
  381. } DVD_SUBPICTURE_TYPE;
  382. typedef enum tagDVD_SUBPICTURE_CODING
  383. {
  384.     DVD_SPCoding_RunLength    = 0,
  385.     DVD_SPCoding_Extended     = 1,
  386.     DVD_SPCoding_Other        = 2,
  387. } DVD_SUBPICTURE_CODING;
  388. typedef struct tagDVD_SubpictureAttributes
  389. {
  390.     DVD_SUBPICTURE_TYPE     Type;
  391.     DVD_SUBPICTURE_CODING   CodingMode;
  392.     LCID                    Language;
  393.     DVD_SUBPICTURE_LANG_EXT LanguageExtension;
  394. } DVD_SubpictureAttributes;
  395. typedef enum tagDVD_TITLE_APPMODE
  396. {
  397.     DVD_AppMode_Not_Specified = 0, // no special mode
  398.     DVD_AppMode_Karaoke  = 1,
  399.     DVD_AppMode_Other    = 3, 
  400. } DVD_TITLE_APPMODE;
  401. typedef struct tagDVD_TitleMainAttributes 
  402. {
  403.     // for Titles
  404.     DVD_TITLE_APPMODE           AppMode;
  405.     // Attributes about the 'main' video of the menu or title
  406.     DVD_VideoAttributes         VideoAttributes;
  407.     ULONG                       ulNumberOfAudioStreams;
  408.     DVD_AudioAttributes         AudioAttributes[8];
  409.     // present if the multichannel bit is set in the corresponding stream's audio attributes
  410.     DVD_MultichannelAudioAttributes     MultichannelAudioAttributes[8];
  411.     ULONG                       ulNumberOfSubpictureStreams;
  412.     DVD_SubpictureAttributes    SubpictureAttributes[32];
  413. } DVD_TitleAttributes;
  414. typedef struct tagDVD_MenuAttributes 
  415. {
  416.     // for VMG only 
  417.     BOOL                        fCompatibleRegion[8];  // indeces 0..7 correspond to regions 1..8
  418.     // Attributes about the main menu (VMGM or VTSM)
  419.     DVD_VideoAttributes         VideoAttributes;
  420.     BOOL                        fAudioPresent;
  421.     DVD_AudioAttributes         AudioAttributes;
  422.     BOOL                        fSubpicturePresent;
  423.     DVD_SubpictureAttributes    SubpictureAttributes;
  424. } DVD_MenuAttributes;
  425. //==========================================================================
  426. //==========================================================================
  427. // IDvdControl interface -- Basic DVD-Video playback control.
  428. // This modeled after the app control of a player specified in Annex J 
  429. // of the DVD Video spec.  IDvdInfo can be used to get information useful
  430. // in using IDvdControl
  431. //==========================================================================
  432. //==========================================================================
  433. [
  434. object,
  435. uuid(A70EFE61-E2A3-11d0-A9BE-00AA0061BE93),
  436. pointer_default(unique)
  437. ]
  438. interface IDvdControl : IUnknown {
  439.     import "unknwn.idl";
  440.     
  441.     // TitlePlay 
  442.     // Start playing the specified title number. 
  443.     // Title numbers range between 1 and 99.
  444.     HRESULT TitlePlay
  445.     ( [in]  ULONG   ulTitle
  446.     );
  447.     // ChapterPlay
  448.     // Start playing at the specified chapter (or part-of-title) 
  449.     // within the specified title.  Chapters range from 1 to 999.
  450.     HRESULT ChapterPlay
  451.     ( [in]  ULONG   ulTitle, 
  452.       [in]  ULONG   ulChapter
  453.     );
  454.     // TimePlay
  455.     // Start playing at the specified time within the specified title.
  456.     // NOTE: the actual start time will be the closest sync point before
  457.     // or equal to the specified frame number.
  458.     HRESULT TimePlay
  459.     ( [in]  ULONG   ulTitle,
  460.       [in]  ULONG   bcdTime  // use DVD_TIMECODE.  Framerate code is ignored.
  461.     );
  462.     // StopForResume
  463.     // Stop playback after saving resume information.  DVD Navigator transfers to the DVD "Stop State" and 
  464.     // (same as DVD_DOMAIN_Stop), but filter graph remains in DirectShow's Run state.
  465.     HRESULT StopForResume();     
  466.     // GoUp
  467.     // Start playback of the program chain currently authored as the "GoUp_PGCN".
  468.     HRESULT GoUp();     
  469.     // TimeSearch
  470.     // Start playing at the specified time within the current title.
  471.     // NOTE: the actual start time will be the closest sync point before
  472.     // or equal to the specified frame number.
  473.     HRESULT TimeSearch
  474.     ( [in]  ULONG   bcdTime  // use DVD_TIMECODE.  Framerate code is ignored.
  475.     );      
  476.     // ChapterSearch
  477.     // Start playing at the specified chapter (or part-of-title) within
  478.     // the current title.
  479.     HRESULT ChapterSearch
  480.     ( [in]  ULONG   ulChapter
  481.     );      
  482.     // PrevPGSearch
  483.     // Start playing at the beginning of the previous DVD "program".
  484.     // For One-Sequential_PGC_Titles (which includes most titles) a program 
  485.     // is equivalent to a chapter, otherwise a program is part of a chapter. 
  486.     HRESULT PrevPGSearch();     
  487.     // TopPGSearch
  488.     // Start playing from the beginning of they current program.
  489.     HRESULT TopPGSearch();      
  490.     // NextPGSearch
  491.     // Start playing from the beginning of the next program.
  492.     HRESULT NextPGSearch();     
  493.     // ForwardScan
  494.     // Set forward play at the specified speed.  
  495.     //      dwSpeed == 1 is normal play
  496.     //      dwSpeed  < 1 is slow play
  497.     //      dwSpeed  > 1 is fast play
  498.     // For dwSpeed != 1, audio and subpicture is muted.
  499.     HRESULT ForwardScan
  500.     ( [in]  double  dwSpeed
  501.     );      
  502.     // BackwardScan
  503.     // Set reverse play at the specified speed.  
  504.     //      dwSpeed == 1 is normal play speed in reverse
  505.     //      dwSpeed  < 1 is slow play in reverse
  506.     //      dwSpeed  > 1 is fast play in reverse
  507.     // For reverse play, audio and subpicture are always muted.
  508.     HRESULT BackwardScan
  509.     ( [in]  double  dwSpeed
  510.     );      
  511.     // MenuCall
  512.     // Start playback of the Menu specified by an enum DVD_MENU_ID.
  513.     HRESULT MenuCall
  514.     ( [in]  DVD_MENU_ID   MenuID  
  515.     );      
  516.     // Resume
  517.     // Returns to title playback in DVD_DOMAIN_Title. This is typically
  518.     // done after MenuCall which puts the DVD Navigator in 
  519.     // DVD_DOMAIN_VideoTitleSetMenu or DVD_DOMAIN_VideoManagerMenu.
  520.     HRESULT Resume();       
  521.     // UpperButtonSelect
  522.     // Selects the button above the current button.
  523.     // "Selecting" a DVD button simply highlights the button but does
  524.     // not "Activate" the button.  Selecting is the Windows equivalent 
  525.     // to tabbing to a button but not pressing the space bar or enter key.
  526.     // Activating is the Windows equivalent of pressing the space bar or
  527.     // enter key after tabbing to a button.
  528.     HRESULT UpperButtonSelect();        
  529.     // LowerButtonSelect
  530.     // Selects the button below the current button.
  531.     HRESULT LowerButtonSelect();        
  532.     // LeftButtonSelect
  533.     // Selects the button to the left of the current button.
  534.     HRESULT LeftButtonSelect();     
  535.     // RightButtonSelect
  536.     // Selects the button to the right of the current button.
  537.     HRESULT RightButtonSelect();        
  538.     // ButtonActivate
  539.     // Activates current button.
  540.     HRESULT ButtonActivate();       
  541.     // ButtonSelectAndActivate
  542.     // Selects and then activates the button specified by the user.  
  543.     // ulButton is intended to be a number entered by a user corresponding
  544.     // to button numbers currently displayed on screen.  
  545.     // Button numbers range from 1 to 36.
  546.     HRESULT ButtonSelectAndActivate
  547.     ( [in]  ULONG   ulButton
  548.     );      
  549.     // StillOff
  550.     // Releases any current still if there are no available buttons.
  551.     // This includes VOBU stills, Cell stills, and PGC stills, whether the 
  552.     // still is infinite.  When buttons are available, stills are released by
  553.     // activating a button.  Note this does not release a Pause.
  554.     HRESULT StillOff();     
  555.     // PauseOn
  556.     // Freezes playback and any internal timers. This is similar to
  557.     // IMediaControl::Pause()
  558.     HRESULT PauseOn();      
  559.     // PauseOff
  560.     // Releases a Pause.  
  561.     HRESULT PauseOff();     
  562.     // MenuLanguageSelect
  563.     // Selects the default language for menus.  Languages are specified with
  564.     // Windows standard LCIDs.  LCIDs can be created from ISO-639 codes with
  565.     // MAKELCID( MAKELANGID(wISO639LangID ,SUBLANG_DEFAULT ), SORT_DEFAULT )
  566.     // NOTE: MAKELANGID seems to have a bug so 'jp' may have to be used 
  567.     // instead of 'ja' for the ISO639 code for Japanese.
  568.     // MenuLanguageSelect may only called from the DVD Stop state (DVD_DOMAIN_Stop).
  569.     HRESULT MenuLanguageSelect
  570.     ( [in]  LCID    Language
  571.     );      
  572.     // AudioStreamChange
  573.     // Changes the current audio stream.
  574.     HRESULT AudioStreamChange
  575.     ( [in]  ULONG   ulAudio
  576.     );      
  577.     // SubpictureStreamChange
  578.     // Changes the current subpicture stream number to nSubpic, and toggles 
  579.     // its display.
  580.     HRESULT SubpictureStreamChange
  581.     ( [in]  ULONG   ulSubPicture,
  582.       [in]  BOOL    bDisplay
  583.     );      
  584.     // AngleChange
  585.     // Changes the current angle number.
  586.     HRESULT AngleChange
  587.     ( [in]  ULONG   ulAngle
  588.     );      
  589.     // ParentalLevelSelect
  590.     // Selects the current player parental level between 1 and 8.  The
  591.     // defined parental levels are listed below :
  592.     //
  593.     //      Level   Rating  
  594.     //      -----   ------  
  595.     //
  596.     //      1       G       
  597.     //      3       PG      
  598.     //      4       PG13    
  599.     //      6       R       
  600.     //      7       NC17    
  601.     // Higher levels can play lower level content; lower levels cannot play 
  602.     // higher level content.  The DVD Navigator provides no restriction on
  603.     // setting the parental level.  DVD player application may enforce 
  604.     // restriction on parental level setting, such as password protection for 
  605.     // raising the current parental level.  Parental Management is disabled in
  606.     // the Navigator by default.
  607.     //
  608.     //      Note : To disable parental management, pass 0xffffffff for ulParentalLevel
  609.     //                 If parental management is disabled, then the player will play the
  610.     //                 first PGC in a parental block regardless of parental IDs.
  611.     //
  612.     HRESULT ParentalLevelSelect
  613.     ( [in]  ULONG   ulParentalLevel  
  614.     );      
  615.     // ParentalCountrySelect
  616.     // Sets the country in which to interpret the the Parental Level.
  617.     // The country specified using the Alpha-2 code of the ISO-3166 standard,
  618.     // with the addition of 'ZZ' 
  619.     HRESULT ParentalCountrySelect
  620.     ( [in]  WORD    wCountry
  621.     );      
  622.     // KaraokeAudioPresentationModeChange
  623.     // Sets the Karaoke audio mode.  
  624.     // NOTE: This and all other Karoke support is currently not implemented.
  625.     HRESULT KaraokeAudioPresentationModeChange
  626.     ( [in] ULONG    ulMode
  627.     );      
  628.     // VideoModePreferrence
  629.     // The user can specify the preferred display mode that should
  630.     // be used to display content. The parameter is a ULONG that has
  631.     // one of the values defined in DVD_PREFERRED_DISPLAY_MODE
  632.     HRESULT VideoModePreferrence
  633.     ( [in]  ULONG    ulPreferredDisplayMode
  634.     );
  635.     
  636.     // SetRoot
  637.     // Sets the root directory containing the DVD-Video volume. 
  638.     // Can only be called from the DVD Stop State (DVD_DOMAIN_Stop).
  639.     // If the root directory is not successfully set before 
  640.     // IMediaControl::Play is called, the first drive starting from c:
  641.     // containing a VIDEO_TS directory in the top level directory
  642.     // will be used as the root.
  643.     HRESULT SetRoot
  644.     ( [in]  LPCWSTR     pszPath
  645.     );        
  646.     // MouseActivate
  647.     // This is typically called in response to a mouse click.
  648.     // The specified point within the display window is to see if it is
  649.     // within a current DVD button's highlight rect.  If it is, that 
  650.     // button is first selected, then activated.  
  651.     // NOTE: DVD Buttons do not all necessarily have highlight rects,
  652.     // button rects can overlap, and button rects do not always
  653.     // correspond to the visual representation of DVD buttons.
  654.     HRESULT MouseActivate       // typically called after a mouse click
  655.     ( [in]  POINT       point
  656.     );
  657.     // MouseSelect
  658.     // This is typically called in response to a mouse move within the 
  659.     // display window.
  660.     // The specified point within the display window is to see if it is
  661.     // within a current DVD button's highlight rect.  If it is, that 
  662.     // button is selected.
  663.     // NOTE: DVD Buttons do not all necessarily have highlight rects,
  664.     // button rects can overlap, and button rects do not always
  665.     // correspond to the visual representation of DVD buttons.
  666.     HRESULT MouseSelect         // typically called after a mouse move
  667.     ( [in]  POINT       point
  668.     );
  669.     
  670.     // ChapterPlayAutoStop
  671.     // Start playing at the specified chapter within the specified title
  672.     // and play the number of chapters specified by the third parameter.
  673.     // Chapters range from 1 to 999.
  674.     HRESULT ChapterPlayAutoStop
  675.     ( [in] ULONG ulTitle,           // title number
  676.       [in] ULONG ulChapter,         // chapter number to start playback
  677.       [in] ULONG ulChaptersToPlay   // number of chapters to play from the start chapter
  678.     );
  679. }
  680. //==========================================================================
  681. //==========================================================================
  682. // IDvdInfo interface -- allow an app to query for attributes of available 
  683. // DVD titles and DVD player status.  Also allow for control of a DVD 
  684. // player beyond Annex J in the DVD spec.
  685. //==========================================================================
  686. //==========================================================================
  687. [
  688. object,
  689. uuid(A70EFE60-E2A3-11d0-A9BE-00AA0061BE93),
  690. pointer_default(unique)
  691. ]
  692. interface IDvdInfo : IUnknown {
  693.     import "unknwn.idl";
  694.     // GetCurrentDomain
  695.     // Returns the current DVD Domain of the DVD player.
  696.     HRESULT GetCurrentDomain
  697.     ( [out] DVD_DOMAIN *pDomain 
  698.     );
  699.     // GetCurrentLocation
  700.     // Returns information sufficient to restart playback of a video
  701.     // from the current playback location in titles that don't explicitly
  702.     // disable seeking to the current location.
  703.     HRESULT GetCurrentLocation
  704.     ( [out] DVD_PLAYBACK_LOCATION *pLocation
  705.     );
  706.     // GetTotalTitleTime
  707.     // Return the total playback time for the current title.  Only works
  708.     // for One_Sequential_PGC_Titles.
  709.     HRESULT GetTotalTitleTime
  710.     ( [out] ULONG * pulTotalTime // use DVD_TIMECODE.
  711.     );
  712.     // GetCurrentButton
  713.     // Indicates the number of currently available buttons and the current
  714.     // selected button number. If buttons are not present it returns 0 for
  715.     // both pulButtonsAvailable and pulCurrentButton
  716.     HRESULT GetCurrentButton
  717.     ( [out] ULONG *    pulButtonsAvailable,
  718.       [out] ULONG *    pulCurrentButton
  719.     );
  720.     // GetCurrentAngle
  721.     // Indicates the number of currently available angles and the current
  722.     // selected angle number.  If *pnAnglesAvailable==1, then the current
  723.     // video is not multiangle.
  724.     HRESULT GetCurrentAngle
  725.     ( [out] ULONG *    pulAnglesAvailable,
  726.       [out] ULONG *    pulCurrentAngle
  727.     );
  728.     // GetCurrentAudio
  729.     // Indicates the number of currently available audio streams and 
  730.     // the current selected audio stream number.
  731.     // This only work when in DVD_DOMAIN_Title.
  732.     HRESULT GetCurrentAudio
  733.     ( [out] ULONG *    pulStreamsAvailable,
  734.       [out] ULONG *    pulCurrentStream
  735.     );
  736.     // GetCurrentSubpicture
  737.     // Indicates the number of currently available subpicture streams,
  738.     // the current selected subpicture stream number, and if the 
  739.     // subpicture display is currently disabled.  Subpicture streams 
  740.     // authored as Forcedly Activated stream will be displayed even if
  741.     // subpicture display has been disabled by the app with 
  742.     // IDVDControl::SubpictureChangeStream.
  743.     // This only work when in DVD_DOMAIN_Title.
  744.     HRESULT GetCurrentSubpicture
  745.     ( [out] ULONG *    pulStreamsAvailable,
  746.       [out] ULONG *    pulCurrentStream,
  747.       [out] BOOL *     pIsDisabled
  748.     );
  749.     // GetCurrentUOPS
  750.     // Indicates which IDVDControl methods are currently valid.  DVD titles
  751.     // can enable or disable individual user operations at almost any point 
  752.     // during playback.
  753.     HRESULT GetCurrentUOPS  
  754.     ( [out] VALID_UOP_SOMTHING_OR_OTHER *    pUOP
  755.     );
  756.     // GetAllSPRMs
  757.     // Returns the current contents of all System Parameter Registers.
  758.     // See DVD-Video spec for use of individual registers.
  759.     HRESULT GetAllSPRMs
  760.     ( [out] SPRMARRAY * pRegisterArray
  761.     );
  762.     // GetAllGPRMs
  763.     // Returns the current contents of all General Parameter Registers.
  764.     // Use of GPRMs is title specific. 
  765.     HRESULT GetAllGPRMs
  766.     ( [out] GPRMARRAY * pRegisterArray
  767.     );
  768.     // GetAudioLanguage
  769.     // Returns the language of the specified stream within the current
  770.     // title.  Does not return languages for menus.  Sets *pLanguage=0 if
  771.     // if the stream does not include language.
  772.     // Use GetLocaleInfo(*pLanguage, LOCALE_SENGLANGUAGE, pszString, cbSize)
  773.     // to create a human readable string name from the result LCID.
  774.     HRESULT GetAudioLanguage
  775.     ( [in]  ULONG        ulStream, 
  776.       [out] LCID *       pLanguage
  777.     );
  778.     // GetSubpictureLanguage
  779.     // Returns the language of the specified stream within the current
  780.     // title.  Does not return languages for menus.  Sets *pLanguage=0 if
  781.     // if the stream does not include language.
  782.     // Use GetLocaleInfo(*pLanguage, LOCALE_SENGLANGUAGE, pszString, cbSize)
  783.     // to create a human readable string name from the result LCID.
  784.     HRESULT GetSubpictureLanguage
  785.     ( [in]  ULONG        ulStream, 
  786.       [out] LCID *       pLanguage
  787.     );
  788.     // GetTitleAttributes
  789.     // Returns attributes of all video, audio, and subpicture 
  790.     // streams for the specified title including menus.  
  791.     // If nTitle == 0xffffffff, attributes for the current title are returned.
  792.     HRESULT GetTitleAttributes
  793.     ( [in]  ULONG       ulTitle, // requested title number
  794.       [out] DVD_ATR *   pATR 
  795.     );
  796.     // GetVMGAttributes
  797.     // Returns attributes of all video, audio, and subpicture 
  798.     // streams for Video Manager Menus.  Some menus, such as the DVD_MENU_Title
  799.     // are in a separate group of streams called the VMG (Video Manager) and
  800.     // are not associated with any particular title number.
  801.     HRESULT GetVMGAttributes
  802.     ( [out] DVD_ATR *   pATR 
  803.     );
  804.     // GetCurrentVideoAttributes
  805.     // Returns the video attributes for the current title or menu.
  806.     HRESULT GetCurrentVideoAttributes
  807.     ( [out] DVD_VideoATR *pATR 
  808.     );
  809.     // GetCurrentAudioAttributes
  810.     // Returns the video attributes for the stream in the current 
  811.     // title or menu.
  812.     HRESULT GetCurrentAudioAttributes
  813.     ( [out] DVD_AudioATR *pATR 
  814.     );
  815.     // GetCurrentSubpictureAttributes
  816.     // Returns the video attributes for the stream in the current 
  817.     // title or menu.
  818.     HRESULT GetCurrentSubpictureAttributes
  819.     ( [out] DVD_SubpictureATR *pATR 
  820.     );
  821.     // GetCurrentVolumeInfo
  822.     // Returns current DVD volume info.
  823.     HRESULT GetCurrentVolumeInfo
  824.     ( [out] ULONG *pulNumOfVol,   // number of volumes (disc sides?) in a volume set
  825.       [out] ULONG *pulThisVolNum, // volume number for this root directory
  826.       [out] DVD_DISC_SIDE *pSide, // current disc side
  827.       [out] ULONG *pulNumOfTitles // number of titles available in this volume
  828.     );
  829.     // GetDVDTextInfo
  830.     // Returns the TXTDT_MG structure, which can contain text descriptions for title
  831.     // name, volume name, producer name, vocalist name, etc. in various languages.
  832.     // refer to Section 4.1.6 and Annex A of the DVD-Video spec.
  833.     // If the buffer size passed in is insufficient (for example if cbBufSize==0),
  834.     // then E_OUTOFMEMORY is returned, and *pcbActualSize is set to the required size.
  835.     HRESULT GetDVDTextInfo
  836.     ( [out, size_is(ulBufSize)] BYTE *pTextManager, 
  837.       [in]  ULONG ulBufSize,        // buffer size passed in
  838.       [out] ULONG *pulActualSize    // amount of actual data return
  839.     );
  840.     //  GetPlayerParentalLevel
  841.     //  Returns the current parental level and the current country code
  842.     //  that has been set in the system registers in player. 
  843.     //  See Table 3.3.4-1 of the DVD-Video spec for the defined parental levels.
  844.     //  Valid Parental Levels = 1..8 if parental management is enabled
  845.     //  0xffffffff if parental management is disabled
  846.     //  See ISO3166 : Alpha-2 Code for the country codes.
  847.     HRESULT GetPlayerParentalLevel
  848.     ( [out] ULONG *pulParentalLevel,    // current parental level
  849.       [out] ULONG *pulCountryCode       // current country code
  850.     );
  851.     
  852.     //  GetNumberOfChapters
  853.     //  Returns the number of chapters that are defined for a
  854.     //  given title.
  855.     HRESULT GetNumberOfChapters
  856.     ( [in]  ULONG ulTitle,              // Title for which number of chapters is requested
  857.       [out] ULONG *pulNumberOfChapters    // Number of chapters for the specified title
  858.     );
  859.     // GetTitleParentalLevels
  860.     // Returns the parental levels that are defined for a
  861.     // particular title. pParentalLevels will be combination
  862.     // of DVD_PARENTAL_LEVEL_8, DVD_PARENTAL_LEVEL_6, or 
  863.     // DVD_PARENTAL_LEVEL_1 "OR"ed together
  864.     HRESULT GetTitleParentalLevels
  865.     ( [in] ULONG ulTitle,           // Title for which parental levels are requested
  866.       [out] ULONG *pulParentalLevels  // Parental levels defined for the title "OR"ed together
  867.     );
  868.     // GetRoot
  869.     // Returns the root directory that is set in the player. If a valid root
  870.     // has been found, it returns the root string. Otherwise, it returns 0 for
  871.     // pcbActualSize indicating that a valid root directory has not been found
  872.     // or initialized.
  873.     //
  874.     // !!! used to return LPTSTR. interface was changed to return
  875.     // LPSTR (ansi) for compatibility. COM APIs should pass with
  876.     // UNICODE strings only.
  877.     // 
  878.     HRESULT GetRoot
  879.     ( [out, size_is(ulBufSize)] LPSTR pRoot,    // pointer to buffer to get root string
  880.       [in]  ULONG ulBufSize,                    // size of buffer passed in
  881.       [out] ULONG *pulActualSize                // size of actual data returned
  882.     );
  883. }
  884. //==========================================================================
  885. //==========================================================================
  886. // IDvdCmd interface -- the IDVDControl2 command sequencing object.
  887. //
  888. // For the IDVDControl2 interface, the application can track the status of
  889. // commands that have been issued to the navigator.  Each command is identified
  890. // by an IDvdCmd object.  The IDvdCmd object stores the results of the command
  891. // at both the start (when the command has begun processing) and the end after
  892. // it has completed.  It also allows the app to synchronize with the processing
  893. // of the command.
  894. //
  895. //  The command object also allows the app to uniquely identify and correlate
  896. // completion events (if it prefers to process events in a message loop instead
  897. // of creating another process).
  898. //
  899. //     Allows the app to track the status of an issued command to the nav.
  900. //==========================================================================
  901. //==========================================================================
  902. [
  903. object,
  904. uuid(5a4a97e4-94ee-4a55-9751-74b5643aa27d),
  905. pointer_default(unique)
  906. ]
  907. interface IDvdCmd : IUnknown {
  908.     import "unknwn.idl";
  909.     //
  910.     // WaitForStart
  911.     //
  912.     // Blocks the application until the command has begun.
  913.     //
  914.     HRESULT WaitForStart();
  915.     //
  916.     // WaitForEnd
  917.     //
  918.     // Blocks until the command has completed or has been cancelled.
  919.     HRESULT WaitForEnd();
  920. }
  921. //==========================================================================
  922. //==========================================================================
  923. // IDvdState interface -- the State state object.
  924. //
  925. // Whenever the application wishes to save or restore a location on the disc,
  926. // it needs to store the DVD state into an object.
  927. // The State object supports the IPersistStream  
  928. //
  929. //==========================================================================
  930. //==========================================================================
  931. [
  932. object,
  933. uuid(86303d6d-1c4a-4087-ab42-f711167048ef),
  934. pointer_default(unique)
  935. ]
  936. interface IDvdState : IUnknown
  937. {
  938.     //
  939.     // GetDiscID
  940.     //
  941.     // Returns the disc ID from which the bookmark was made.
  942.     //
  943.     HRESULT GetDiscID
  944.     ( [out] ULONGLONG* pullUniqueID ); // 64-bit unique id for the disc
  945.     //
  946.     // GetParentalLevel
  947.     //
  948.     // Returns the state's parental level
  949.     //
  950.     HRESULT GetParentalLevel
  951.     ( [out] ULONG* pulParentalLevel );
  952. }
  953. //==========================================================================
  954. //==========================================================================
  955. // IDvdControl2 interface -- Basic DVD-Video playback control.
  956. // This is modeled after the app control of a player specified in Annex J 
  957. // of the DVD Video spec.  IDvdInfo2 can be used to get information useful
  958. // in using IDvdControl2
  959. //==========================================================================
  960. //==========================================================================
  961. [
  962. object,
  963. uuid(33BC7430-EEC0-11D2-8201-00A0C9D74842),
  964. pointer_default(unique)
  965. ]
  966. interface IDvdControl2 : IUnknown {
  967.     import "unknwn.idl";
  968.     
  969.     // PlayTitle
  970.     //
  971.     // Start playing from the beginning of the specified title number.
  972.     // Annex J: Title_Play
  973.     // Title numbers range between 1 and 99.
  974.     HRESULT PlayTitle
  975.     ( [in]  ULONG   ulTitle,
  976.       [in]  DWORD   dwFlags,  
  977.       [out] IDvdCmd** ppCmd 
  978.     );
  979.     // PlayChapterInTitle
  980.     //
  981.     // Start playing from the beginning of the given chapter (or part-of-title) number
  982.     // within the specified title number.
  983.     // Annex J: PTT_Play
  984.     // Title numbers range between 1 and 99.
  985.     // Chapters range from 1 to 999.
  986.     HRESULT PlayChapterInTitle
  987.     ( [in]  ULONG   ulTitle, 
  988.       [in]  ULONG   ulChapter,
  989.       [in]  DWORD   dwFlags,  
  990.       [out] IDvdCmd** ppCmd 
  991.     );
  992.     // PlayAtTimeInTitle
  993.     //
  994.     // Start playing from the specified time within the specified title number.
  995.     // NOTE: the actual start time will be the closest sync point before
  996.     // or equal to the specified frame number.
  997.     // Annex J: Time_Play
  998.     // Title numbers range between 1 and 99.
  999.     HRESULT PlayAtTimeInTitle
  1000.     ( [in]  ULONG   ulTitle,
  1001.       [in]  DVD_HMSF_TIMECODE*   pStartTime,
  1002.       [in]  DWORD   dwFlags,  
  1003.       [out] IDvdCmd** ppCmd 
  1004.     );
  1005.     // Stop
  1006.     // Stop playback by transferring DVD Navigator to the DVD "Stop State" (same 
  1007.     // as DVD_DOMAIN_Stop), but filter graph remains in DirectShow's Run state.
  1008.     // Annex J: Stop
  1009.     HRESULT Stop();
  1010.     // ReturnFromSubmenu
  1011.     //
  1012.     // Stop playback of current program chain (PGC) and start playing the PGC 
  1013.     // specified by "GoUp_PGCN".in the PGCI.
  1014.     // If the GoUp_PGCN value is 0xFFFF the Resume() operation is carried out.
  1015.     // Annex J: GoUp
  1016.     HRESULT ReturnFromSubmenu(
  1017.       [in]  DWORD   dwFlags,  
  1018.       [out] IDvdCmd** ppCmd );
  1019.     // PlayAtTime
  1020.     // Start playing at the specified time within the current title.
  1021.     // NOTE: the actual start time will be the closest sync point before
  1022.     // or equal to the specified frame number.
  1023.     // Annex J: Time_Search
  1024.     // The time is in BCD format, passed in as a ULONG.
  1025.     HRESULT PlayAtTime
  1026.     ( [in]  DVD_HMSF_TIMECODE* pTime,
  1027.       [in]  DWORD   dwFlags,  
  1028.       [out] IDvdCmd** ppCmd 
  1029.     );
  1030.     // PlayChapter
  1031.     // Start playing at the specified chapter (or part-of-title) within
  1032.     // the current title.
  1033.     // Annex J: PTT_Search
  1034.     // Chapters range from 1 to 999.
  1035.     HRESULT PlayChapter
  1036.     ( [in]  ULONG   ulChapter,
  1037.       [in]  DWORD   dwFlags,  
  1038.       [out] IDvdCmd** ppCmd 
  1039.     );
  1040.     // PlayPrevChapter
  1041.     // Start playing at the beginning of the previous DVD "program".
  1042.     // For One-Sequential_PGC_Titles (which includes most titles) a program 
  1043.     // is equivalent to a chapter, otherwise a program is part of a chapter. 
  1044.     // Annex J: PrevPG_Search
  1045.     HRESULT PlayPrevChapter(
  1046.       [in]  DWORD   dwFlags,  
  1047.       [out] IDvdCmd** ppCmd );
  1048.     // ReplayChapter
  1049.     // Start playing from the beginning of they current program.
  1050.     // Annex J: TopPG_Search
  1051.     HRESULT ReplayChapter(
  1052.       [in]  DWORD   dwFlags,  
  1053.       [out] IDvdCmd** ppCmd );
  1054.     // PlayNextChapter
  1055.     // Start playing from the beginning of the next program.
  1056.     // Annex J: NextPG_Search
  1057.     HRESULT PlayNextChapter(
  1058.       [in]  DWORD   dwFlags,  
  1059.       [out] IDvdCmd** ppCmd );
  1060.     // PlayForwards
  1061.     // Set forward play at the specified speed.  
  1062.     // Annex J: Forward_Scan
  1063.     //      dSpeed == 1 is normal play
  1064.     //      dSpeed  < 1 is slow play
  1065.     //      dSpeed  > 1 is fast play
  1066.     // For dSpeed != 1, audio and subpicture is muted.
  1067.     HRESULT PlayForwards
  1068.     ( [in]  double  dSpeed,
  1069.       [in]  DWORD   dwFlags,  
  1070.       [out] IDvdCmd** ppCmd
  1071.     );
  1072.     // PlayBackwards
  1073.     // Set reverse play at the specified speed.  
  1074.     // Annex J: Backward_Scan
  1075.     //      dSpeed == 1 is normal play speed in reverse
  1076.     //      dSpeed  < 1 is slow play in reverse
  1077.     //      dSpeed  > 1 is fast play in reverse
  1078.     // For reverse play, audio and subpicture are always muted.
  1079.     HRESULT PlayBackwards
  1080.     ( [in]  double  dSpeed,
  1081.       [in]  DWORD   dwFlags,  
  1082.       [out] IDvdCmd** ppCmd
  1083.     );
  1084.     // ShowMenu
  1085.     // Start playback of the Menu specified by an enum DVD_MENU_ID.
  1086.     // Annex J: Menu_Call
  1087.     HRESULT ShowMenu
  1088.     ( [in]  DVD_MENU_ID   MenuID,
  1089.       [in]  DWORD   dwFlags,  
  1090.       [out] IDvdCmd** ppCmd  
  1091.     );
  1092.     // Resume
  1093.     // Returns to title playback in DVD_DOMAIN_Title. This is typically
  1094.     // done after MenuCall which puts the DVD Navigator in 
  1095.     // DVD_DOMAIN_VideoTitleSetMenu or DVD_DOMAIN_VideoManagerMenu.
  1096.     // Annex J: Resume
  1097.     HRESULT Resume(
  1098.       [in]  DWORD   dwFlags,  
  1099.       [out] IDvdCmd** ppCmd );
  1100.     // SelectRelativeButton
  1101.     // Moves the selection highlight above, below, to the left of, or to the right of the
  1102.     // currently selected.
  1103.     // "Selecting" a DVD button simply highlights the button but does
  1104.     // not "Activate" the button.  Selecting is the Windows equivalent 
  1105.     // to tabbing to a button but not pressing the space bar or enter key.
  1106.     // Activating is the Windows equivalent of pressing the space bar or
  1107.     // enter key after tabbing to a button.
  1108.     // Annex J: Upper_button_Select, Lower_button_Select, Left_button_Select, Right_button_Select
  1109.     HRESULT SelectRelativeButton( DVD_RELATIVE_BUTTON buttonDir );
  1110.     // ActivateButton
  1111.     // Activates current button.
  1112.     // Annex J: Button_Activate
  1113.     HRESULT ActivateButton();
  1114.     // SelectButton
  1115.     // Selects a specific button (with the index from 1 to 36).
  1116.     // ulButton is intended to be a number entered by a user corresponding
  1117.     // to button numbers currently displayed on screen.  
  1118.     // Button numbers range from 1 to 36.
  1119.     HRESULT SelectButton
  1120.     ( [in]  ULONG   ulButton
  1121.     );
  1122.     // SelectAndActivateButton
  1123.     // Selects and then activates the button specified by the user.  
  1124.     // ulButton is intended to be a number entered by a user corresponding
  1125.     // to button numbers currently displayed on screen.  
  1126.     // Annex J: Button_Select_And_Activate
  1127.     // Button numbers range from 1 to 36.
  1128.     HRESULT SelectAndActivateButton
  1129.     ( [in]  ULONG   ulButton
  1130.     );
  1131.     // StillOff
  1132.     // Releases any current still if there are no available buttons.
  1133.     // This includes VOBU stills, Cell stills, and PGC stills, whether the 
  1134.     // still is infinite.  When buttons are available, stills are released by
  1135.     // activating a button.  Note this does not release a Pause.
  1136.     // Annex J: Still_Off
  1137.     HRESULT StillOff();
  1138.     // Pause
  1139.     // Freezes / unfreezes playback and any internal timers. This is similar to
  1140.     // IMediaControl::Pause(), but not the same in effect as IMediaControl::Pause
  1141.     // puts the filter (all filters, if done to the graph) in paused state.
  1142.     // Annex J: Pause_On and Pause_Off
  1143.     // bState is TRUE or FALSE to indicate whether to do Puase_on/Pause_Off according
  1144.     // to Annex J terminology.
  1145.     HRESULT Pause
  1146.     ( [in]  BOOL   bState
  1147.     );
  1148.     // SelectAudioStream
  1149.     // Changes the current audio stream to ulAudio.
  1150.     // Annex J: Audio_Stream_Change
  1151.     // Audio stream number ranges between 0 and 7 or DEFAULT_AUDIO_STREAM (15 - default based on default language & language extension)
  1152.     HRESULT SelectAudioStream
  1153.     ( [in]  ULONG   ulAudio,
  1154.       [in]  DWORD dwFlags,  
  1155.       [out] IDvdCmd** ppCmd 
  1156.     );
  1157.     // SelectSubpictureStream
  1158.     // Changes the current subpicture stream number to ulSubPicture
  1159.     // Annex J: Sub-picture_Stream_Change (first param)
  1160.     // Subpicture stream number should be between 0 and 31 or 63.
  1161.     HRESULT SelectSubpictureStream
  1162.     ( [in]  ULONG   ulSubPicture,
  1163.       [in]  DWORD dwFlags,  
  1164.       [out] IDvdCmd** ppCmd 
  1165.     );
  1166.     // SetSubpictureState
  1167.     // Turns on/off current subpicture stream display.
  1168.     // Annex J: Sub-picture_Stream_Change (second param)
  1169.     // Subpicture state is On or Off (TRUE or FALSE)
  1170.     HRESULT SetSubpictureState
  1171.     ( [in]  BOOL    bState,
  1172.       [in]  DWORD dwFlags,  
  1173.       [out] IDvdCmd** ppCmd
  1174.     );
  1175.     // SelectAngle
  1176.     // Changes the current angle number.
  1177.     // Annex J: Angle_Change
  1178.     // Angle number is between 1 and 9.
  1179.     HRESULT SelectAngle
  1180.     ( [in]  ULONG   ulAngle,
  1181.       [in]  DWORD dwFlags,  
  1182.       [out] IDvdCmd** ppCmd
  1183.     );
  1184.     // SelectParentalLevel
  1185.     // Selects the current player parental level.  
  1186.     // Annex J: Parental_Level_Select
  1187.     // Parental level ranges between 1 and 8.
  1188.     // The defined parental levels are listed below :
  1189.     //
  1190.     //      Level   Rating  
  1191.     //      -----   ------  
  1192.     //      1       G       
  1193.     //      3       PG      
  1194.     //      4       PG13    
  1195.     //      6       R       
  1196.     //      7       NC17    
  1197.     // Higher levels can play lower level content; lower levels cannot play 
  1198.     // higher level content.  The DVD Navigator provides no restriction on
  1199.     // setting the parental level.  DVD player application may enforce 
  1200.     // restriction on parental level setting, such as password protection for 
  1201.     // raising the current parental level.  Parental Management is disabled in
  1202.     // the Navigator by default.
  1203.     //
  1204.     // Note : To disable parental management, pass 0xffffffff for ulParentalLevel
  1205.     //        If parental management is disabled, then the player will play the
  1206.     //        first PGC in a parental block regardless of parental IDs.
  1207.     //
  1208.     HRESULT SelectParentalLevel
  1209.     ( [in]  ULONG   ulParentalLevel  
  1210.     );
  1211.     // SelectParentalCountry
  1212.     // Sets the country in which to interpret the Parental Level.
  1213.     // Annex J: Parental_Country_Select
  1214.     // The country specified using the Alpha-2 code of the ISO-3166 standard,
  1215.     HRESULT SelectParentalCountry
  1216.     ( [in]  BYTE    bCountry[2]
  1217.     );
  1218.     // SelectKaraokeAudioPresentationMode
  1219.     // Sets the Karaoke audio mode.  
  1220.     // Annex J: Karaoke_Audio_Presentation_Mode_Change
  1221.     // NOTE: This and all other Karoke support is currently not implemented.
  1222.     // Mode represents the audio mixing mode for Karaoke (same info as SPRM11).
  1223.     // Use a bitwise OR of the bits in DVD_KARAOKE_DOWNMIX
  1224.     HRESULT SelectKaraokeAudioPresentationMode
  1225.     ( [in] ULONG    ulMode
  1226.     );
  1227.     // SelectVideoModePreference
  1228.     // The user can specify the (initial) preferred display mode (aspect ratio) 
  1229.     // (wide / letterbox / pan-scan) that should be used to display content
  1230.     // (16 : 9).
  1231.     // Annex J: Video_Presentation_Mode_Change
  1232.     // The parameter is a ULONG that has one of the values defined in 
  1233.     // DVD_PREFERRED_DISPLAY_MODE
  1234.     HRESULT SelectVideoModePreference
  1235.     ( [in]  ULONG    ulPreferredDisplayMode
  1236.     );
  1237.     
  1238.     // SetDVDDirectory
  1239.     // Sets the root directory containing the DVD-Video volume. 
  1240.     // Can only be called from the DVD Stop State (DVD_DOMAIN_Stop).
  1241.     // If the root directory is not successfully set before 
  1242.     // IMediaControl::Play is called, the first drive starting from c:
  1243.     // containing a VIDEO_TS directory in the top level directory
  1244.     // will be used as the root.
  1245.     HRESULT SetDVDDirectory
  1246.     ( [in]  LPCWSTR     pszwPath
  1247.     );
  1248.     // ActivateAtPosition
  1249.     // This is typically called in response to a mouse click.
  1250.     // The specified point within the display window is to see if it is
  1251.     // within a current DVD button's highlight rect.  If it is, that 
  1252.     // button is first selected, then activated.  
  1253.     // NOTE: DVD Buttons do not all necessarily have highlight rects,
  1254.     // button rects can overlap, and button rects do not always
  1255.     // correspond to the visual representation of DVD buttons.
  1256.     HRESULT ActivateAtPosition    // typically called after a mouse click
  1257.     ( [in]  POINT       point
  1258.     );
  1259.     // SelectAtPosition
  1260.     // This is typically called in response to a mouse move within the 
  1261.     // display window.
  1262.     // The specified point within the display window is to see if it is
  1263.     // within a current DVD button's highlight rect.  If it is, that 
  1264.     // button is selected.
  1265.     // NOTE: DVD Buttons do not all necessarily have highlight rects,
  1266.     // button rects can overlap, and button rects do not always
  1267.     // correspond to the visual representation of DVD buttons.
  1268.     HRESULT SelectAtPosition    // typically called after a mouse move
  1269.     ( [in]  POINT       point
  1270.     );
  1271.     
  1272.     // PlayChaptersAutoStop
  1273.     // Start playing at the specified chapter within the specified title
  1274.     // and play the number of chapters specified by the third parameter.
  1275.     // Then the playback stops by sending an event EC_DVD_CHAPTER_AUTOSTOP.
  1276.     // Title ranges from 1 to 99.
  1277.     // Chapter (and number of chapters to play) ranges from 1 to 999.
  1278.     HRESULT PlayChaptersAutoStop
  1279.     ( [in] ULONG ulTitle,           // title number
  1280.       [in] ULONG ulChapter,         // chapter number to start playback
  1281.       [in] ULONG ulChaptersToPlay,   // number of chapters to play from the start chapter
  1282.       [in] DWORD dwFlags,  
  1283.       [out] IDvdCmd** ppCmd 
  1284.     );
  1285.      // AcceptParentalLevelChange
  1286.     //
  1287.     // Application's way of informing the Navigator that the required parental 
  1288.     // level change indicated through a previous event was accepted or rejected 
  1289.     // by the app (and unblock the Navigator).
  1290.     //
  1291.     // FALSE - reject the disc's request to change the current parental level.
  1292.     // TRUE  - change the parental level as required by the disc.
  1293.     HRESULT AcceptParentalLevelChange
  1294.     ( [in] BOOL bAccept
  1295.     );
  1296.     // SetOption(flag, true/false )
  1297.     // Flags:
  1298.     //
  1299.     // DVD_ResetOnStop
  1300.     //      Disable reset of the Navigator's internal state on the 
  1301.     //      subsequent IMediaControl::Stop() call(s).
  1302.     //
  1303.     //      FALSE - Navigator does not reset its state on the subsequent Stop calls 
  1304.     //              (play from the current location on next Run call).
  1305.     //      TRUE  - (default) Navigator resets its state on the subsequent Stop call 
  1306.     //              (play from the first play PGC on the Run call after the Stop).
  1307.     //
  1308.     // DVD_NotifyParentalLevelChange
  1309.     //
  1310.     //      Allows the application to indicate to the Navigator that it wants to control 
  1311.     //      parent level change (e.g., through a dialog box) and indicate the acceptance
  1312.     //      or rejection of the new parental level to the Navigator through 
  1313.     //      AcceptParentalLevelChange().
  1314.     //
  1315.     //      FALSE - disable (default).  Always reject request by the disc to change parental level.
  1316.     //      TRUE  - enable.  Navigator will send the app a 'EC_DVD_PARENTAL_LEVEL_CHANGE' event
  1317.     //              and block until AcceptParentalLevelChange() is called by the app.
  1318.     //
  1319.     // DVD_HMSF_TimeCodeEvents
  1320.     //
  1321.     //      Lets the application specify to the Navigator if it wants to get the new time
  1322. //      event EC_DVD_CURRENT_HMSF_TIME with the HMSF format rather than the older 
  1323. //      EC_DVD_CURRENT_TIME events.
  1324.     //
  1325.     //      FALSE - disable (default).  Older EC_DVD_CURRENT_TIME events are returned.
  1326.     //      TRUE  - enable.  Navigator will send the app EC_DVD_CURRENT_HMSF_TIME events.
  1327.     HRESULT SetOption
  1328.     ( [in] DVD_OPTION_FLAG flag,
  1329.       [in] BOOL fState
  1330.     );
  1331.     // SetState
  1332.     //
  1333.     // The navigator will use the location information in the given state object to restore
  1334.     // the navigator's position to a specific location on the disc.
  1335.     // A valid state object is returned by either calling GetState(), or by using
  1336.     // "CoCreateInstance( CLSID_DVDState, NULL, CLSCTX_INPROC_SERVER, IID_IDvdState, (void **) ppState )"
  1337.     // to create a state object, followed by pState->IPersist::Load() to read it from memory or disk. 
  1338.     //
  1339.     HRESULT SetState
  1340.     ( [in] IDvdState* pState,
  1341.       [in]  DWORD     dwFlags,  
  1342.       [out] IDvdCmd** ppCmd
  1343.     );
  1344.     // PlayPeriodInTitleAutoStop
  1345.     //
  1346.     // Start playing from the specified time within the specified title number until the specified end time.
  1347.     // NOTE: the actual start and end times will be the closest sync points before
  1348.     // or equal to the specified frame number.
  1349.     // Annex J: Time_Play for a limited range
  1350.     // Title numbers range between 1 and 99.
  1351.     HRESULT PlayPeriodInTitleAutoStop
  1352.     ( [in]  ULONG   ulTitle,
  1353.       [in]  DVD_HMSF_TIMECODE*   pStartTime,
  1354.       [in]  DVD_HMSF_TIMECODE*   pEndTime,
  1355.       [in]  DWORD   dwFlags,  
  1356.       [out] IDvdCmd** ppCmd 
  1357.     );
  1358.     // SetGPRM
  1359.     // Sets the current contents of a DVD General Parameter Register.
  1360.     // Use of GPRMs is title specific.
  1361.     HRESULT SetGPRM
  1362.     ( [in] ULONG  ulIndex,
  1363.       [in] WORD   wValue,
  1364.       [in]  DWORD   dwFlags,  
  1365.       [out] IDvdCmd** ppCmd
  1366.     );
  1367.     // SelectDefaultMenuLanguage
  1368.     // Selects the default language for menus.  
  1369.     // Languages are specified with Windows standard LCIDs.  LCIDs can be created 
  1370.     // from ISO-639 codes with
  1371.     // MAKELCID( MAKELANGID(wISO639LangID ,SUBLANG_DEFAULT ), SORT_DEFAULT ).
  1372.     // SelectMenuLanguage may only called from the DVD Stop state (DVD_DOMAIN_Stop).
  1373.     // Annex J: Menu_Language_Select
  1374.     //
  1375.     // NOT TRUE ANYMORE:
  1376.     // NOTE: MAKELANGID seems to have a bug so 'jp' may have to be used 
  1377.     // instead of 'ja' for the ISO639 code for Japanese.
  1378.     HRESULT SelectDefaultMenuLanguage
  1379.     ( [in]  LCID    Language
  1380.     );
  1381.     // SelectDefaultAudioLanguage 
  1382.     // Selects the default audio language.  
  1383.     // Languages are specified with Windows standard LCIDs.
  1384.     HRESULT SelectDefaultAudioLanguage
  1385.     ( [in]  LCID    Language,
  1386.       [in] DVD_AUDIO_LANG_EXT   audioExtension
  1387.     );
  1388.     // SelectDefaultSubpictureLanguage 
  1389.     // Selects the default subpicture language.  
  1390.     // Languages are specified with Windows standard LCIDs.
  1391.     HRESULT SelectDefaultSubpictureLanguage
  1392.     ( [in] LCID    Language,
  1393.       [in] DVD_SUBPICTURE_LANG_EXT  subpictureExtension
  1394.     );
  1395. }
  1396. //==========================================================================
  1397. //==========================================================================
  1398. // IDvdInfo2 interface -- allows an app to query for attributes of available 
  1399. // DVD titles and DVD player status.  Also allows for control of a DVD 
  1400. // player beyond Annex J in the DVD spec.
  1401. //==========================================================================
  1402. //==========================================================================
  1403. enum DVD_TextStringType {
  1404.     // disc structure (0x00..0x0f)
  1405.     DVD_Struct_Volume               = 0x01, 
  1406.     DVD_Struct_Title                = 0x02, 
  1407.     DVD_Struct_ParentalID           = 0x03,
  1408.     DVD_Struct_PartOfTitle          = 0x04,
  1409.     DVD_Struct_Cell                 = 0x05,
  1410.     // stream (0x10..0x1f)
  1411.     DVD_Stream_Audio                = 0x10,
  1412.     DVD_Stream_Subpicture           = 0x11,
  1413.     DVD_Stream_Angle                = 0x12,
  1414.     // channel in stream (0x20..0x2f)
  1415.     DVD_Channel_Audio               = 0x20,
  1416.     // Application information
  1417.     // General (0x30..0x37)
  1418.     DVD_General_Name                = 0x30,
  1419.     DVD_General_Comments            = 0x31,
  1420.     // Title (0x38..0x3f)
  1421.     DVD_Title_Series                = 0x38,
  1422.     DVD_Title_Movie                 = 0x39,
  1423.     DVD_Title_Video                 = 0x3a,
  1424.     DVD_Title_Album                 = 0x3b,
  1425.     DVD_Title_Song                  = 0x3c,
  1426.     DVD_Title_Other                 = 0x3f,
  1427.     // Title (sub) (0x40..0x47)
  1428.     DVD_Title_Sub_Series            = 0x40,
  1429.     DVD_Title_Sub_Movie             = 0x41,
  1430.     DVD_Title_Sub_Video             = 0x42,
  1431.     DVD_Title_Sub_Album             = 0x43,
  1432.     DVD_Title_Sub_Song              = 0x44,
  1433.     DVD_Title_Sub_Other             = 0x47,
  1434.     // Title (original) (0x48..0x4f)
  1435.     DVD_Title_Orig_Series           = 0x48,
  1436.     DVD_Title_Orig_Movie            = 0x49,
  1437.     DVD_Title_Orig_Video            = 0x4a,
  1438.     DVD_Title_Orig_Album            = 0x4b,
  1439.     DVD_Title_Orig_Song             = 0x4c,
  1440.     DVD_Title_Orig_Other            = 0x4f,
  1441.     // Other info (0x50..0x57)
  1442.     DVD_Other_Scene                 = 0x50,
  1443.     DVD_Other_Cut                   = 0x51,
  1444.     DVD_Other_Take                  = 0x52,
  1445.     // Language     0x58..0x5b
  1446.     // Work         0x5c..0x6b
  1447.     // Character    0x6c..0x8f
  1448.     // Data         0x90..0x93
  1449.     // Karaoke      0x94..0x9b
  1450.     // Category     0x9c..0x9f
  1451.     // Lyrics       0xa0..0xa3
  1452.     // Document     0xa4..0xa7
  1453.     // Others       0xa8..0xab
  1454.     // Reserved     0xac..0xaf
  1455.     // Admin        0xb0..0xb7
  1456.     // more admin   0xb8..0xc0
  1457.     // Reserved     0xd0..0xdf
  1458.     // vendor       0xe0..0xef
  1459.     // extension    0xf0..0xf7
  1460.     // reserved     0xf8..0xff
  1461. };
  1462. enum DVD_TextCharSet {
  1463.     DVD_CharSet_Unicode                       = 0,
  1464.     DVD_CharSet_ISO646                        = 1,
  1465.     DVD_CharSet_JIS_Roman_Kanji               = 2,
  1466.     DVD_CharSet_ISO8859_1                     = 3,
  1467.     DVD_CharSet_ShiftJIS_Kanji_Roman_Katakana = 4
  1468. };
  1469. cpp_quote ("#define DVD_TITLE_MENU 0x000")
  1470. cpp_quote ("#define DVD_STREAM_DATA_CURRENT     0x800")
  1471. cpp_quote ("#define DVD_STREAM_DATA_VMGM        0x400")
  1472. cpp_quote ("#define DVD_STREAM_DATA_VTSM        0x401")
  1473. cpp_quote ("#define DVD_DEFAULT_AUDIO_STREAM 0x0f")
  1474. // DVD Decoder Caps data
  1475. typedef struct tagDVD_DECODER_CAPS
  1476. {
  1477.     DWORD   dwSize ;            // size of this struct
  1478.     DWORD   dwAudioCaps ;       // bits indicating audio support (AC3, DTS, SDDS, LPCM etc.) of decoder
  1479.     double  dFwdMaxRateVideo ;  // max data rate for video going forward
  1480.     double  dFwdMaxRateAudio ;  // ...  ..   ..  ... audio  ...    ...
  1481.     double  dFwdMaxRateSP ;     // ...  ..   ..  ...   SP   ...    ...
  1482.     double  dBwdMaxRateVideo ;  // if smooth reverse is not available, this will be set to 0
  1483.     double  dBwdMaxRateAudio ;  //   -- ditto --
  1484.     double  dBwdMaxRateSP ;     //   -- ditto --
  1485.     DWORD   dwRes1 ;            // reserved for future expansion
  1486.     DWORD   dwRes2 ;            //   -- ditto --
  1487.     DWORD   dwRes3 ;            //   -- ditto --
  1488.     DWORD   dwRes4 ;            //   -- ditto --
  1489. } DVD_DECODER_CAPS ;
  1490. // Bits for decoder's audio format support
  1491. cpp_quote ("#define DVD_AUDIO_CAPS_AC3 0x00000001")
  1492. cpp_quote ("#define DVD_AUDIO_CAPS_MPEG2 0x00000002")
  1493. cpp_quote ("#define DVD_AUDIO_CAPS_LPCM 0x00000004")
  1494. cpp_quote ("#define DVD_AUDIO_CAPS_DTS 0x00000008")
  1495. cpp_quote ("#define DVD_AUDIO_CAPS_SDDS 0x00000010")
  1496. [
  1497. object,
  1498. uuid(34151510-EEC0-11D2-8201-00A0C9D74842),
  1499. pointer_default(unique)
  1500. ]
  1501. interface IDvdInfo2 : IUnknown {
  1502.     import "unknwn.idl";
  1503.     // GetCurrentDomain
  1504.     // Returns the current DVD Domain of the DVD player.
  1505.     HRESULT GetCurrentDomain
  1506.     ( [out] DVD_DOMAIN *pDomain 
  1507.     );
  1508.     // GetCurrentLocation
  1509.     // Returns information sufficient to restart playback of a video
  1510.     // from the current playback location in titles that don't explicitly
  1511.     // disable seeking to the current location.
  1512.     HRESULT GetCurrentLocation
  1513.     ( [out] DVD_PLAYBACK_LOCATION2 *pLocation
  1514.     );
  1515.     // GetTotalTitleTime
  1516.     // Returns the total playback time for the current title.  Only works
  1517.     // for One_Sequential_PGC_Titles.
  1518.     // THIS SHOULD CHANGE, RIGHT?
  1519.     HRESULT GetTotalTitleTime
  1520.     ( [out] DVD_HMSF_TIMECODE* pTotalTime,
  1521.       [out] ULONG* ulTimeCodeFlags  // union of DVD_TIMECODE_FLAGS
  1522.     );
  1523.     // GetCurrentButton
  1524.     // Indicates the number of currently available buttons and the current
  1525.     // selected button number. If buttons are not present it returns 0 for
  1526.     // both pulButtonsAvailable and pulCurrentButton
  1527.     HRESULT GetCurrentButton
  1528.     ( [out] ULONG *    pulButtonsAvailable,
  1529.       [out] ULONG *    pulCurrentButton
  1530.     );
  1531.     // GetCurrentAngle
  1532.     // Indicates the number of currently available angles and the current
  1533.     // selected angle number.  If *pulAnglesAvailable is returned as 1 then 
  1534.     // the current content is not multiangle.
  1535.     HRESULT GetCurrentAngle
  1536.     ( [out] ULONG *    pulAnglesAvailable,
  1537.       [out] ULONG *    pulCurrentAngle
  1538.     );
  1539.     // GetCurrentAudio
  1540.     // Indicates the number of currently available audio streams and 
  1541.     // the currently selected audio stream number.
  1542.     // This only works inside the Title domain.
  1543.     HRESULT GetCurrentAudio
  1544.     ( [out] ULONG *    pulStreamsAvailable,
  1545.       [out] ULONG *    pulCurrentStream
  1546.     );
  1547.     // GetCurrentSubpicture
  1548.     // Indicates the number of currently available subpicture streams,
  1549.     // the currently selected subpicture stream number, and if the 
  1550.     // subpicture display is currently disabled.  Subpicture streams 
  1551.     // authored as "Forcedly Activated" stream will be displayed even if
  1552.     // subpicture display has been disabled by the app with 
  1553.     // IDVDControl::SetSubpictureState.
  1554.     // This only works inside the Title domain.
  1555.     HRESULT GetCurrentSubpicture
  1556.     ( [out] ULONG *    pulStreamsAvailable,
  1557.       [out] ULONG *    pulCurrentStream,
  1558.       [out] BOOL *     pbIsDisabled
  1559.     );
  1560.     // GetCurrentUOPS
  1561.     // Indicates which IDVDControl methods (Annex J user operations) are 
  1562.     // currently valid.  DVD titles can enable or disable individual user 
  1563.     // operations at almost any point during playback.
  1564.     HRESULT GetCurrentUOPS  
  1565.     ( [out] ULONG *   pulUOPs
  1566.     );
  1567.     // GetAllSPRMs
  1568.     // Returns the current contents of all DVD System Parameter Registers.
  1569.     // See DVD-Video spec for use of individual registers.
  1570.     // WE SHOULD DOC THE SPRMs RATHER THAN ASKING TO REFER TO DVD SPEC.
  1571.     HRESULT GetAllSPRMs
  1572.     ( [out] SPRMARRAY * pRegisterArray
  1573.     );
  1574.     // GetAllGPRMs
  1575.     // Returns the current contents of all DVD General Parameter Registers.
  1576.     // Use of GPRMs is title specific.
  1577.     // WE SHOULD DOC THE GPRMs RATHER THAN ASKING TO REFER TO DVD SPEC.
  1578.     HRESULT GetAllGPRMs
  1579.     ( [out] GPRMARRAY * pRegisterArray
  1580.     );
  1581.     // GetAudioLanguage
  1582.     // Returns the language of the specified stream within the current title.
  1583.     // Does not return languages for menus.  Returns *pLanguage as 0 if the
  1584.     // stream does not include language.
  1585.     // Use Win32 API GetLocaleInfo(*pLanguage, LOCALE_SENGLANGUAGE, pszString, cbSize)
  1586.     // to create a human readable string name from the returned LCID.
  1587.     HRESULT GetAudioLanguage
  1588.     ( [in]  ULONG        ulStream, 
  1589.       [out] LCID *       pLanguage
  1590.     );
  1591.     // GetSubpictureLanguage
  1592.     // Returns the language of the specified stream within the current title.
  1593.     // Does not return languages for menus.  Returns *pLanguage=0 as 0 if the
  1594.     // stream does not include language.
  1595.     // Use Win32 API GetLocaleInfo(*pLanguage, LOCALE_SENGLANGUAGE, pszString, cbSize)
  1596.     // to create a human readable string name from the returned LCID.
  1597.     HRESULT GetSubpictureLanguage
  1598.     ( [in]  ULONG        ulStream, 
  1599.       [out] LCID *       pLanguage
  1600.     );
  1601.     // GetTitleAttributes
  1602.     // Returns attributes of all video, audio, and subpicture streams for the 
  1603.     // specified title including menus.  
  1604.     // If 0xffffffff is specified as ulTitle, attributes for the current title 
  1605.     // are returned.
  1606.     HRESULT GetTitleAttributes
  1607.     ( [in]  ULONG       ulTitle, // requested title number
  1608.       [out] DVD_MenuAttributes *   pMenu,
  1609.       [out] DVD_TitleAttributes *   pTitle       
  1610.     );
  1611.     // GetVMGAttributes
  1612.     // Returns attributes of all video, audio, and subpicture 
  1613.     // streams for Video Manager Menus.  This method suppliments GetTitleAttributes()
  1614.     // for some menus, such as the Title menu, which are in a separate group of 
  1615.     // streams called the VMG (Video Manager) and are not associated with any 
  1616.     // particular title number.
  1617.     HRESULT GetVMGAttributes
  1618.     ( [out] DVD_MenuAttributes*   pATR 
  1619.     );
  1620.     // GetCurrentVideoAttributes
  1621.     // Returns the video attributes for the current title or menu.
  1622.     //
  1623.     HRESULT GetCurrentVideoAttributes
  1624.     ( [out] DVD_VideoAttributes *   pATR       
  1625.     );
  1626.     // GetAudioAttributes
  1627.     // Returns the audio attributes for the specified stream in the current title 
  1628.     // or menu.
  1629.     HRESULT GetAudioAttributes
  1630.     ( [in]  ULONG ulStream,
  1631.       [out] DVD_AudioAttributes *pATR 
  1632.     );
  1633.     // GetKaraokeChannelContents
  1634.     // Returns the karaoke contents of each channel of the specified stream in the current title 
  1635.     // or menu.
  1636.     HRESULT GetKaraokeAttributes
  1637.     ( [in]  ULONG ulStream,
  1638.       [out] DVD_KaraokeAttributes* pAttributes
  1639.     );
  1640.     // GetSubpictureAttributes
  1641.     // Returns the subpicture attributes for the specified stream in the current
  1642.     // title or menu.
  1643.     HRESULT GetSubpictureAttributes
  1644.     ( [in]  ULONG ulStream,
  1645.       [out] DVD_SubpictureAttributes *pATR 
  1646.     );
  1647.     // GetDVDVolumeInfo
  1648.     // Returns current DVD volume information.
  1649.     HRESULT GetDVDVolumeInfo
  1650.     ( [out] ULONG *pulNumOfVolumes,  // number of volumes (disc sides?) in a volume set
  1651.       [out] ULONG *pulVolume,        // volume number for current DVD directory
  1652.       [out] DVD_DISC_SIDE *pSide,    // current disc side
  1653.       [out] ULONG *pulNumOfTitles    // number of titles available in this volume
  1654.     );
  1655.     // GetDVDTextNumberOfLanguages
  1656.     // Returns the number of text languages for the current DVD directory.
  1657.     // Should return some error code if no root directory is found.
  1658.     HRESULT GetDVDTextNumberOfLanguages
  1659.     ( [out] ULONG * pulNumOfLangs
  1660.     );
  1661.     
  1662.     // GetDVDTextLanguageInfo
  1663.     // Returns the text languages information (number of strings, language code, 
  1664.     // char set) for the specified language index.
  1665.     // Should return some error code if an invalid text index is specified.
  1666.     HRESULT GetDVDTextLanguageInfo
  1667.     ( [in] ULONG ulLangIndex,
  1668.       [out] ULONG* pulNumOfStrings, 
  1669.       [out] LCID* pLangCode, 
  1670.       [out] enum DVD_TextCharSet * pbCharacterSet
  1671.     );
  1672.     // GetDVDTextStringAsNative
  1673.     // Returns the text string as an array of bytes for the specified language 
  1674.     // index.and string index.
  1675.     // Should return some error code if an invalid text or string index is specified.
  1676.     // It also just returns the length of the string if pchBuffer is specified as NULL.
  1677.     HRESULT GetDVDTextStringAsNative
  1678.     ( [in] ULONG ulLangIndex, 
  1679.       [in] ULONG ulStringIndex, 
  1680.       [out] BYTE* pbBuffer, 
  1681.       [in] ULONG ulMaxBufferSize, 
  1682.       [out] ULONG* pulActualSize, 
  1683.       [out] enum DVD_TextStringType* pType
  1684.     );
  1685.     // GetDVDTextStringAsUnicode
  1686.     // Returns the text string in Unicode for the specified language index.and string index.
  1687.     // Should return some error code if an invalid text or string index is specified.
  1688.     // It also just returns the length of the string if pchBuffer is specified as NULL.
  1689.     HRESULT GetDVDTextStringAsUnicode
  1690.     ( [in] ULONG ulLangIndex, 
  1691.       [in] ULONG ulStringIndex, 
  1692.       [out] WCHAR* pchwBuffer, 
  1693.       [in] ULONG ulMaxBufferSize, 
  1694.       [out] ULONG* pulActualSize, 
  1695.       [out] enum DVD_TextStringType* pType
  1696.     );
  1697.     // GetPlayerParentalLevel
  1698.     // Returns the current parental level and the current country code that has 
  1699.     // been set in the system registers in player.
  1700.     // See Table 3.3.4-1 of the DVD-Video spec for the defined parental levels.
  1701.     // Valid Parental Levels range from 1 to 8 if parental management is enabled.
  1702.     // Returns 0xffffffff if parental management is disabled
  1703.     // See ISO3166 : Alpha-2 Code for the country codes.
  1704.     HRESULT GetPlayerParentalLevel
  1705.     ( [out] ULONG *pulParentalLevel,    // current parental level
  1706.       [out] BYTE pbCountryCode[2]       // current country code
  1707.     );
  1708.     
  1709.     //  GetNumberOfChapters
  1710.     //  Returns the number of chapters that are defined for a
  1711.     //  given title.
  1712.     HRESULT GetNumberOfChapters
  1713.     ( [in]  ULONG ulTitle,           // Title for which number of chapters is requested
  1714.       [out] ULONG *pulNumOfChapters  // Number of chapters for the specified title
  1715.     );
  1716.     // GetTitleParentalLevels
  1717.     // Returns the parental levels that are defined for a particular title. 
  1718.     // pulParentalLevels will be combination of DVD_PARENTAL_LEVEL_8, 
  1719.     // DVD_PARENTAL_LEVEL_6, or DVD_PARENTAL_LEVEL_1 OR-ed together
  1720.     HRESULT GetTitleParentalLevels
  1721.     ( [in]  ULONG ulTitle,            // Title for which parental levels are requested
  1722.       [out] ULONG *pulParentalLevels  // Parental levels defined for the title "OR"ed together
  1723.     );
  1724.     // GetDVDDirectory
  1725.     // Returns the root directory that is set in the player. If a valid root
  1726.     // has been found, it returns the root string. Otherwise, it returns 0 for
  1727.     // pcbActualSize indicating that a valid root directory has not been found
  1728.     // or initialized.
  1729.     //
  1730.     // !!! used to return LPTSTR. interface was changed to return
  1731.     // LPSTR (ansi) for compatibility. COM APIs should pass with
  1732.     // UNICODE strings only.
  1733.     // 
  1734.     HRESULT GetDVDDirectory
  1735.     ( [out, size_is(ulMaxSize)] LPWSTR pszwPath, // pointer to buffer to get root string
  1736.       [in]  ULONG ulMaxSize,                     // size of buffer in WCHARs passed in
  1737.       [out] ULONG *pulActualSize                 // size of actual data returned (in WCHARs)
  1738.     );
  1739.     
  1740.     // IsAudioStreamEnabled
  1741.     //
  1742.     // Determines if the specified audio stream is enabled/disabled in the current PGC.
  1743.     //
  1744.     // ulStreamNum - audio stream number to test
  1745.     // pbEnabled   - where to place the result
  1746.     HRESULT IsAudioStreamEnabled
  1747.     ( [in] ULONG ulStreamNum,   // stream number to test
  1748.       [out] BOOL *pbEnabled     // returned state
  1749.     );
  1750.     // GetDiscID
  1751.     //
  1752.     // If pszwPath is specified as NULL, DVD Navigator will use the current path
  1753.     // that would be returned by GetDVDDirectory() at this point.
  1754.     //
  1755.     // Returns a 64-bit identification number for the specified DVD disc.
  1756.     HRESULT GetDiscID
  1757.     ( [in] LPCWSTR pszwPath,         // root path (should we rather use const WCHAR*?)
  1758.       [out] ULONGLONG* pullDiscID  // 64-bit unique id for the disc
  1759.     ) ;
  1760.     // GetState
  1761.     //
  1762.     // The navigator will create a new state object and save the current location into it.
  1763.     // The state object can be used to restore the navigator the saved location at a later time.
  1764.     // A new IDvdState object is created (with a single AddRef) and returned in *pStateData.
  1765.     // The object must be Released() when the application is finished with it.
  1766.     //
  1767.     HRESULT GetState
  1768.     ( [out] IDvdState **pStateData // returned object
  1769.     );
  1770.     //
  1771.     // GetMenuLanguages
  1772.     //
  1773.     // Navigator gets all of the menu languages for the VMGM and VTSM domains.
  1774.     //
  1775.     HRESULT GetMenuLanguages
  1776.     ( [out] LCID *pLanguages,                     // data buffer (NULL returns #languages) 
  1777.       [in]  ULONG ulMaxLanguages,                  // maxiumum number of languages to retrieve
  1778.       [out] ULONG *pulActualLanguages              // actual number of languages retrieved
  1779.     );
  1780.     //
  1781.     // GetButtonAtPosition
  1782.     //
  1783.     // This is typically called in response to a mouse move within the 
  1784.     // display window.
  1785.     // It returns the button located at the specified point within the display window.
  1786.     // If no button is present at that position, then VFW_E_DVD_NO_BUTTON is returned.
  1787.     // Button indices start at 1. 
  1788.     //
  1789.     // NOTE: DVD Buttons do not all necessarily have highlight rects,
  1790.     // button rects can overlap, and button rects do not always
  1791.     // correspond to the visual representation of DVD buttons.
  1792.     HRESULT GetButtonAtPosition    // typically called after a mouse move
  1793.     ( [in]  POINT       point,
  1794.       [out] ULONG *pulButtonIndex
  1795.     );
  1796.     //
  1797.     // GetCmdFromEvent
  1798.     //
  1799.     // This method maps an EC_DVD_CMD_BEGIN/COMPLETE/CANCEL event's lParam1 into an AddRef'd
  1800.     // IDvdCmd pointer.  You must Release the returned pointer.  NULL is returned if the function
  1801.     // fails.
  1802.     //
  1803.     HRESULT GetCmdFromEvent
  1804.     ( [in]  LONG_PTR    lParam1,
  1805.       [out] IDvdCmd **pCmdObj
  1806.     );
  1807.     // GetDefaultMenuLanguage
  1808.     // Returns the default language for menus.
  1809.     HRESULT GetDefaultMenuLanguage
  1810.     ( [out] LCID *       pLanguage
  1811.     );
  1812.     // GetDefaultAudioLanguage 
  1813.     // Gets the default audio language.  
  1814.     // Languages are specified with Windows standard LCIDs.
  1815.     HRESULT GetDefaultAudioLanguage
  1816.     ( [out] LCID*    pLanguage,
  1817.       [out] DVD_AUDIO_LANG_EXT*   pAudioExtension
  1818.     );
  1819.     // GetDefaultSubpictureLanguage 
  1820.     // Gets the default subpicture language.  
  1821.     // Languages are specified with Windows standard LCIDs.
  1822.     HRESULT GetDefaultSubpictureLanguage
  1823.     ( [out] LCID*    pLanguage,
  1824.       [out] DVD_SUBPICTURE_LANG_EXT*  pSubpictureExtension
  1825.     );
  1826.     //
  1827.     // GetDecoderCaps:
  1828.     // Retrieves the DVD decoder's details about max data rate for video, audio
  1829.     // and subpicture (going backward and forward) as well as support for various
  1830.     // types of audio (AC3, MPEG2, DTS, SDDS, LPCM).
  1831.     //
  1832.     HRESULT GetDecoderCaps
  1833.     ( [out] DVD_DECODER_CAPS *pCaps
  1834.     ) ;
  1835.     //
  1836.     // GetButtonRect:
  1837.     // Retrieves the coordinates for a given button number
  1838.     //
  1839.     HRESULT GetButtonRect
  1840.     ( [in] ULONG  ulButton,
  1841.       [out] RECT *pRect
  1842.     ) ;
  1843.     // IsSubpictureStreamEnabled
  1844.     //
  1845.     // Determines if the specified subpicture stream is enabled/disabled in the current PGC.
  1846.     //
  1847.     // ulStreamNum - Subpicture stream number to test
  1848.     // pbEnabled   - where to place the result
  1849.     HRESULT IsSubpictureStreamEnabled
  1850.     ( [in] ULONG ulStreamNum,   // stream number to test
  1851.       [out] BOOL *pbEnabled     // returned state
  1852.     );
  1853. }
  1854. //==========================================================================
  1855. //==========================================================================
  1856. //
  1857. // typedefs used by IDvdGraphBuilder interface.
  1858. //
  1859. //==========================================================================
  1860. //==========================================================================
  1861. typedef enum _AM_DVD_GRAPH_FLAGS {
  1862.     AM_DVD_HWDEC_PREFER =  0x01,   // default 
  1863.     AM_DVD_HWDEC_ONLY   =  0x02,
  1864.     AM_DVD_SWDEC_PREFER =  0x04,
  1865.     AM_DVD_SWDEC_ONLY   =  0x08,
  1866.     AM_DVD_NOVPE        = 0x100
  1867. } AM_DVD_GRAPH_FLAGS ;
  1868. typedef enum _AM_DVD_STREAM_FLAGS {
  1869.     AM_DVD_STREAM_VIDEO  = 0x01,
  1870.     AM_DVD_STREAM_AUDIO  = 0x02,
  1871.     AM_DVD_STREAM_SUBPIC = 0x04
  1872. } AM_DVD_STREAM_FLAGS ;
  1873. typedef struct {
  1874.     HRESULT hrVPEStatus ;         // VPE mixing error code (0 => success)
  1875.     BOOL    bDvdVolInvalid ;      // Is specified DVD volume invalid?
  1876.     BOOL    bDvdVolUnknown ;      // Is DVD volume to be played not specified/not found?
  1877.     BOOL    bNoLine21In ;         // video decoder doesn't produce line21 (CC) data
  1878.     BOOL    bNoLine21Out ;        // can't show decoded line21 data as CC on video
  1879.     int     iNumStreams ;         // number of DVD streams to render
  1880.     int     iNumStreamsFailed ;   // number of streams failed to render
  1881.     DWORD   dwFailedStreamsFlag ; // combination of flags to indicate failed streams
  1882. } AM_DVD_RENDERSTATUS ;
  1883. // 
  1884. // IDvdGraphBuilder interface to build a filter graph for DVD-Video playback.
  1885. //
  1886. [
  1887.     object,
  1888.     local,
  1889.     uuid(FCC152B6-F372-11d0-8E00-00C04FD7C08B),
  1890.     pointer_default(unique)
  1891. ]
  1892. interface IDvdGraphBuilder : IUnknown {
  1893.     // Returns the IGraphBuilder interface for the filtergraph used by the
  1894.     // CDvdGraphBuilder object.
  1895.     // Remember to *ppGB->Release() when you're done with it
  1896.     HRESULT GetFiltergraph
  1897.     ( [out] IGraphBuilder **ppGB
  1898.     ) ;
  1899.     // Gets specific interface pointers in the DVD-Video playback graph to 
  1900.     // make DVD-Video playback development easier.
  1901.     // It helps get the following interfaces to control playback/show CC/
  1902.     // position window/control volume etc:
  1903.     // - IDvdControl, IDvdInfo
  1904.     // - IAMLine21Decoder
  1905.     // - IVideoWindow, IBasicVideo
  1906.     // - IBasicAudio
  1907.     // This method will return 
  1908.     // a) E_INVALIDARG if ppvIF is invalid
  1909.     // b) E_NOINTERFACE if riid is an IID we don't know about
  1910.     // c) VFW_E_DVD_GRAPHNOTREADY if the graph has not been built through 
  1911.     //    RenderDvdVideoVolume() yet.
  1912.     // Remember to *ppvIF->Release() when you're done with it
  1913.     HRESULT GetDvdInterface
  1914.     ( [in] REFIID riid,    // IID of the interface required
  1915.       [out] void **ppvIF   // returns pointer to the required interface
  1916.     ) ;
  1917.     // Builds a filter graph according to user specs for playing back a
  1918.     // DVD-Video volume.
  1919.     // This method returns S_FALSE if
  1920.     // 1.  the graph has been either built, but either
  1921.     //     a) VPE mixing doesn't work (app didn't use AM_DVD_NOVPE flag)
  1922.     //     b) video decoder doesn't produce line21 data
  1923.     //     c) line21 data couldn't be rendered (decoding/mixing problem)
  1924.     //     d) the call specified an invalid volume path or DVD Nav couldn't
  1925.     //        locate any DVD-Video volume to be played.
  1926.     // 2.  some streams didn't render (completely), but the others have
  1927.     //     been rendered so that the volume can be partially played back.
  1928.     // The status is indicated through the fields of the pStatus (out)
  1929.     // parameter.
  1930.     // About 1(a), the app will have enough info to tell the user that the
  1931.     // video won't be visible unless a TV is connected to the NTSC out 
  1932.     // port of the DVD decoder (presumably HW in this case).
  1933.     // For case 1(b) & (c), the app "can" put up a warning/informative message
  1934.     // that closed captioning is not available because of the decoder.
  1935.     // 1(d) helps an app to ask the user to insert a DVD-Video disc if none 
  1936.     // is specified/available in the drive when playback is started.
  1937.     // This method builds the graph even if 
  1938.     // - an invalid DVD-Video volume is specified
  1939.     // - the caller uses lpwszPathName = NULL to make the DVD Nav to locate
  1940.     //   the default volume to be played back, but DVD Nav doesn't find a 
  1941.     //   default DVD-Video volume to be played back.
  1942.     // An app can later specify the volume using IDvdControl::SetRoot() 
  1943.     // method.
  1944.     // #2 will help the app indicate to the user that some of the streams
  1945.     // can't be played.
  1946.     // 
  1947.     // The graph is built using filters based on the dwFlags value (to use 
  1948.     // HW decoders or SW decoders or a mix of them).
  1949.     // The dwFlags value is one of the values in AM_DVD_GRAPH_FLAGS enum
  1950.     // type.  The default value is AM_DVD_HWDEC_PREFER. None of the 
  1951.     // AM_DVD_HWDEC_xxx or AM_DVD_SWDEC_xxx flags can be mixed. However
  1952.     // AM_DVD_NOVPE can be OR-ed with any of the AM_DVD_HWDEC_xxx flags.
  1953.     //
  1954.     // The method returns S_OK if the playback graph is built successfully
  1955.     // with all the streams completely rendered and a valid DVD-Video volume 
  1956.     // is specified or a default one has been located.
  1957.     //
  1958.     // If the dwFlags specify conflicting options, E_INVALIDARG is returned.
  1959.     // If the graph building fails, the method returns one of the following 
  1960.     // error codes:
  1961.     //    VFW_E_DVD_RENDERFAIL, VFW_E_DVD_DECNOTENOUGH
  1962.     //
  1963.     HRESULT RenderDvdVideoVolume
  1964.     ( [in] LPCWSTR lpcwszPathName,  // Can be NULL too
  1965.       [in] DWORD dwFlags,           // 0 is the default (use max HW)
  1966.       [out] AM_DVD_RENDERSTATUS *pStatus // returns indications of ANY failure
  1967.     ) ;
  1968. }
  1969. //
  1970. //  DDraw Exclusive Mode Video standard COM interface for Overlay Mixer
  1971. //
  1972. [
  1973.     object,
  1974.     local,
  1975.     uuid(153ACC21-D83B-11d1-82BF-00A0C9696C8F),
  1976.     pointer_default(unique)
  1977. ]
  1978. interface IDDrawExclModeVideo : IUnknown {
  1979.     // set a ddraw object to be used by the overlay mixer. If even one of the pins
  1980.     // of the ovmixer is connected, then it won't start using the new ddraw obect
  1981.     // immediately but just cache it. It will start using it the next time, all its
  1982.     // pins are disconnected.
  1983.     HRESULT SetDDrawObject([in] IDirectDraw *pDDrawObject);
  1984.     // gets the ddraw object currently being used by the overlay mixer. If the app has not
  1985.     // set any ddraw object and the ovmixer has not yet allocated one, then *ppDDrawObject
  1986.     // will be set to NULL and *pbUsingExternal will be set TO FALSE. Otherwise *pbUsingExternal
  1987.     // will be set to TRUE if the ovmixer is currently USING an app given ddraw object and FALSE
  1988.     // othewise
  1989.     HRESULT GetDDrawObject([out] IDirectDraw **ppDDrawObject, 
  1990.                            [out] BOOL *pbUsingExternal);
  1991.     // set a primary surface to be used by the overlay mixer. If even one of the pins
  1992.     // of the ovmixer is connected, then it won't start using the new primary surface
  1993.     // immediately but just cache it. It will start using it the next time, all its
  1994.     // pins are disconnected.
  1995.     // Also when the ovmixer does start using an app given primary surface, it will delete
  1996.     // its output pin (and not draw its own colorkey) since the app is expected to do the
  1997.     // window management and drawing colorkey etc on the primary surface
  1998.     // This function makes sure that the surface provided exposes IDirectDrawSurface3, and 
  1999.     // is consistent with the ddraw object provided. 
  2000.     HRESULT SetDDrawSurface([in] IDirectDrawSurface *pDDrawSurface);
  2001.     // gets the ddraw surface currently being used by the overlay mixer. If the app has not
  2002.     // set any ddraw surface and the ovmixer has not yet allocated one, then *ppDDrawSurface
  2003.     // will be set to NULL and *pbUsingExternal will be set to FALSE. Otherwise *pbUsingExternal
  2004.     // will be set to TRUE if the ovmixer is curretnly USING an app given ddraw surface and FALSE
  2005.     // otherwise
  2006.     HRESULT GetDDrawSurface([out] IDirectDrawSurface **ppDDrawSurface, 
  2007.                             [out] BOOL *pbUsingExternal);
  2008.     // set draw paramters on the ovmixer (src and dest rect). Note that if the mode
  2009.     // of the ovmixer is set to LETTER_BOX, then the ovmixer might show the video in
  2010.     // only a subrect of *prcTarget (see IMixerPinConfig for details).
  2011.     HRESULT SetDrawParameters([in] const RECT * prcSource, 
  2012.                               [in] const RECT * prcTarget);
  2013.     // gets the current video size and picture aspect ratio of the primary stream of the overlay mixer
  2014.     // The app should look for the evene EC_VIDEO_SIZE_AR_CHANGED and on its receipt
  2015.     // call this function again
  2016.     HRESULT GetNativeVideoProps([out] DWORD *pdwVideoWidth, 
  2017.                                 [out] DWORD *pdwVideoHeight, 
  2018.                                 [out] DWORD *pdwPictAspectRatioX, 
  2019.                                 [out] DWORD *pdwPictAspectRatioY);
  2020.     // Set the callback interface - the callback interface will be defined in a later release
  2021.     // Currently returns E_NOTIMPL
  2022.     HRESULT SetCallbackInterface([in] IDDrawExclModeVideoCallback *pCallback, 
  2023.                                  [in] DWORD dwFlags);
  2024. }
  2025. //
  2026. //  DDraw Exclusive Mode Video callbacks
  2027. //
  2028. //  enum for flags 
  2029. enum _AM_OVERLAY_NOTIFY_FLAGS {
  2030.     AM_OVERLAY_NOTIFY_VISIBLE_CHANGE = 0x00000001,
  2031.     AM_OVERLAY_NOTIFY_SOURCE_CHANGE  = 0x00000002,
  2032.     AM_OVERLAY_NOTIFY_DEST_CHANGE    = 0x00000004
  2033. };
  2034. [
  2035.     object,
  2036.     local,
  2037.     uuid(913c24a0-20ab-11d2-9038-00a0c9697298),
  2038.     pointer_default(unique)
  2039. ]
  2040. interface IDDrawExclModeVideoCallback : IUnknown {
  2041.     //  Called once before UpdateOverlay is called with bBefore == TRUE
  2042.     //  and once after it is called with bBefore == FALSE and otherwise
  2043.     //  identical parameters
  2044.     HRESULT OnUpdateOverlay(
  2045.                             [in] BOOL bBefore, // After UpdateOverlayCalled?
  2046.                             [in] DWORD dwFlags,// _AM_OVERLAY_NOTIFY enum
  2047.                             [in] BOOL bOldVisible,
  2048.                             [in] const RECT *prcOldSrc,
  2049.                             [in] const RECT *prcOldDest,
  2050.                             [in] BOOL bNewVisible,
  2051.                             [in] const RECT *prcNewSrc,
  2052.                             [in] const RECT *prcNewDest);
  2053.      //  Called when the surface color key is changed
  2054.      HRESULT OnUpdateColorKey(
  2055.                               [in] const COLORKEY *pKey,
  2056.                               [in] DWORD dwColor);
  2057.      //  Called when the video size or aspect ratio changes
  2058.      HRESULT OnUpdateSize( [in] DWORD dwWidth,     // Movie pixel width
  2059.                            [in] DWORD dwHeight,    // Movie pixel height
  2060.                            [in] DWORD dwARWidth,   // Aspect ratio horizontal
  2061.                            [in] DWORD dwARHeight); // Aspect ratio vertical
  2062. }