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

模拟服务器

开发平台:

C/C++

  1. //------------------------------------------------------------------------------
  2. // File: DVDevCod.h
  3. //
  4. // Desc: List of standard DVD-Video event codes and the expected params.
  5. //
  6. // Copyright (c) 1992 - 2000, Microsoft Corporation.  All rights reserved.
  7. //------------------------------------------------------------------------------
  8. #define EC_DVDBASE                          0x0100
  9. #ifndef EXCLUDE_DVDEVCODE_ENUMS
  10. typedef enum _tagDVD_ERROR {
  11.     DVD_ERROR_Unexpected=1,         // Something unexpected happened, perhaps content
  12.                                     //   is incorrectly authored.  Playback is stopped.
  13.     DVD_ERROR_CopyProtectFail=2,    // Key exchange for DVD copy protection failed. 
  14.                                     //   Playback is stopped.
  15.     DVD_ERROR_InvalidDVD1_0Disc=3,  // DVD-Video disc is incorrectly authored for v1.0 
  16.                                     //   of spec. Playback is stopped.
  17.     DVD_ERROR_InvalidDiscRegion=4,  // The Disc cannot be played because the disc is not
  18.                                     // authored to play in system region.
  19.                                     // The region mismatch may be fixable by 
  20.                                     // changing the system region with dvdrgn.exe
  21.     DVD_ERROR_LowParentalLevel=5,   // Player parental level is lower than the lowest parental
  22.                                     //   level available in the DVD content. Playback is stopped.
  23.     DVD_ERROR_MacrovisionFail=6,    // Macrovision Distribution Failed.
  24.                                     // Playback is stopped.
  25.     DVD_ERROR_IncompatibleSystemAndDecoderRegions=7,
  26.                                     // No discs can be played because the system region
  27.                                     // does not match the decoder region.
  28.     DVD_ERROR_IncompatibleDiscAndDecoderRegions=8
  29.                                     // The disc cannot be played because the disc is
  30.                                     // not authored to be played in the decoder's region
  31. } DVD_ERROR;
  32. typedef enum _tagDVD_WARNING {
  33.     DVD_WARNING_InvalidDVD1_0Disc=1,// DVD-Video disc is incorrectly authored. Playback
  34.                                     //   can continue, but unexpected behavior may occur.
  35.     DVD_WARNING_FormatNotSupported=2,// A decoder would not support the current format.  Playback
  36.                                     //   of a stream (audio, video of SP) may not function.
  37.     DVD_WARNING_IllegalNavCommand=3,// The internal DVD navigation command processor attempted to 
  38.                                     //   process an illegal command.
  39.     DVD_WARNING_Open = 4,           // File Open Failed
  40.     DVD_WARNING_Seek = 5,           // File Seek Failed
  41.     DVD_WARNING_Read = 6            // File Read Failed
  42. } DVD_WARNING;
  43. #endif
  44. // DVD-Video event codes
  45. // ======================
  46. //
  47. // All DVD-Video event are always passed on to the application, and are 
  48. // never processed by the filter graph
  49. #define EC_DVD_DOMAIN_CHANGE                    (EC_DVDBASE + 0x01)
  50. // Parameters: ( DWORD, void ) 
  51. // lParam1 is enum DVD_DOMAIN, and indicates the player's new domain
  52. //
  53. // Raised from following domains: all
  54. //
  55. // Signaled when ever the DVD player changes domains.
  56. #define EC_DVD_TITLE_CHANGE                     (EC_DVDBASE + 0x02)
  57. // Parameters: ( DWORD, void ) 
  58. // lParam1 is the new title number.
  59. //
  60. // Raised from following domains: DVD_DOMAIN_Title
  61. //
  62. // Indicates when the current title number changes.  Title numbers
  63. // range 1 to 99.  This indicates the TTN, which is the title number
  64. // with respect to the whole disc, not the VTS_TTN which is the title
  65. // number with respect to just a current VTS.
  66. #define EC_DVD_CHAPTER_START                   (EC_DVDBASE + 0x03)
  67. // Parameters: ( DWORD, void ) 
  68. // lParam1 is the new chapter number (which is the program number for 
  69. // One_Sequential_PGC_Titles).
  70. //
  71. // Raised from following domains: DVD_DOMAIN_Title
  72. //
  73. // Signales that DVD player started playback of a new program in the Title 
  74. // domain.  This is only signaled for One_Sequential_PGC_Titles.
  75. #define EC_DVD_AUDIO_STREAM_CHANGE              (EC_DVDBASE + 0x04)
  76. // Parameters: ( DWORD, void ) 
  77. // lParam1 is the new user audio stream number.
  78. //
  79. // Raised from following domains: all
  80. //
  81. // Signaled when ever the current user audio stream number changes for the main 
  82. // title.  This can be changed automatically with a navigation command on disc
  83. // as well as through IDVDAnnexJ.
  84. // Audio stream numbers range from 0 to 7.  Stream 0xffffffff
  85. // indicates that no stream is selected.
  86. #define EC_DVD_SUBPICTURE_STREAM_CHANGE         (EC_DVDBASE + 0x05)
  87. // Parameters: ( DWORD, void ) 
  88. // lParam1 is the new user subpicture stream number.
  89. //
  90. // Raised from following domains: all
  91. //
  92. // Signaled when ever the current user subpicture stream number changes for the main 
  93. // title.  This can be changed automatically with a navigation command on disc
  94. // as well as through IDVDAnnexJ.  
  95. // Subpicture stream numbers range from 0 to 31.  Stream 0xffffffff
  96. // indicates that no stream is selected.  
  97. #define EC_DVD_ANGLE_CHANGE                     (EC_DVDBASE + 0x06)
  98. // Parameters: ( DWORD, DWORD ) 
  99. // lParam1 is the number of available angles.
  100. // lParam2 is the current user angle number.
  101. //
  102. // Raised from following domains: all
  103. //
  104. // Signaled when ever either 
  105. //   a) the number of available angles changes, or  
  106. //   b) the current user angle number changes.
  107. // Current angle number can be changed automatically with navigation command 
  108. // on disc as well as through IDVDAnnexJ.
  109. // When the number of available angles is 1, the current video is not multiangle.
  110. // Angle numbers range from 1 to 9.
  111. #define EC_DVD_BUTTON_CHANGE                    (EC_DVDBASE + 0x07)
  112. // Parameters: ( DWORD, DWORD ) 
  113. // lParam1 is the number of available buttons.
  114. // lParam2 is the current selected button number.
  115. //
  116. // Raised from following domains: all
  117. //
  118. // Signaled when ever either 
  119. //   a) the number of available buttons changes, or  
  120. //   b) the current selected button number changes.
  121. // The current selected button can be changed automatically with navigation 
  122. // commands on disc as well as through IDVDAnnexJ.  
  123. // Button numbers range from 1 to 36.  Selected button number 0 implies that
  124. // no button is selected.  Note that these button numbers enumerate all 
  125. // available button numbers, and do not always correspond to button numbers
  126. // used for IDVDAnnexJ::ButtonSelectAndActivate since only a subset of buttons
  127. // may be activated with ButtonSelectAndActivate.
  128. #define EC_DVD_VALID_UOPS_CHANGE                (EC_DVDBASE + 0x08)
  129. // Parameters: ( DWORD, void ) 
  130. // lParam1 is a VALID_UOP_SOMTHING_OR_OTHER bit-field stuct which indicates
  131. //   which IDVDAnnexJ commands are explicitly disable by the DVD disc.
  132. //
  133. // Raised from following domains: all
  134. //
  135. // Signaled when ever the available set of IDVDAnnexJ methods changes.  This
  136. // only indicates which operations are explicited disabled by the content on 
  137. // the DVD disc, and does not guarentee that it is valid to call methods 
  138. // which are not disabled.  For example, if no buttons are currently present,
  139. // IDVDAnnexJ::ButtonActivate() won't work, even though the buttons are not
  140. // explicitly disabled. 
  141. #define EC_DVD_STILL_ON                         (EC_DVDBASE + 0x09)
  142. // Parameters: ( BOOL, DWORD ) 
  143. // lParam1 == 0  -->  buttons are available, so StillOff won't work
  144. // lParam1 == 1  -->  no buttons available, so StillOff will work
  145. // lParam2 indicates the number of seconds the still will last, with 0xffffffff 
  146. //   indicating an infinite still (wait till button or StillOff selected).
  147. //
  148. // Raised from following domains: all
  149. //
  150. // Signaled at the beginning of any still: PGC still, Cell Still, or VOBU Still.
  151. // Note that all combinations of buttons and still are possible (buttons on with
  152. // still on, buttons on with still off, button off with still on, button off
  153. // with still off).
  154. #define EC_DVD_STILL_OFF                         (EC_DVDBASE + 0x0a)
  155. // Parameters: ( void, void ) 
  156. //
  157. //   Indicating that any still that is currently active
  158. //   has been released.
  159. //
  160. // Raised from following domains: all
  161. //
  162. // Signaled at the end of any still: PGC still, Cell Still, or VOBU Still.
  163. //
  164. #define EC_DVD_CURRENT_TIME                     (EC_DVDBASE + 0x0b)
  165. // Parameters: ( DWORD, BOOL ) 
  166. // lParam1 is a DVD_TIMECODE which indicates the current 
  167. //   playback time code in a BCD HH:MM:SS:FF format.
  168. // lParam2 == 0  -->  time code is 25 frames/sec
  169. // lParam2 == 1  -->  time code is 30 frames/sec (non-drop).
  170. // lParam2 == 2  -->  time code is invalid (current playback time 
  171. //                    cannot be determined for current title)
  172. //
  173. // Raised from following domains: DVD_DOMAIN_Title
  174. //
  175. // Signaled at the beginning of every VOBU, which occurs every .4 to 1.0 sec.
  176. // This is only signaled for One_Sequential_PGC_Titles.
  177. #define EC_DVD_ERROR                            (EC_DVDBASE + 0x0c)
  178. // Parameters: ( DWORD, void) 
  179. // lParam1 is an enum DVD_ERROR which notifies the app of some error condition.
  180. //
  181. // Raised from following domains: all
  182. //
  183. #define EC_DVD_WARNING                           (EC_DVDBASE + 0x0d)
  184. // Parameters: ( DWORD, void) 
  185. // lParam1 is an enum DVD_WARNING which notifies the app of some warning condition.
  186. //
  187. // Raised from following domains: all
  188. //
  189. #define EC_DVD_CHAPTER_AUTOSTOP                  (EC_DVDBASE + 0x0e)
  190. // Parameters: (BOOL, void)
  191. // lParam1 is a BOOL which indicates the reason for the cancellation of ChapterPlayAutoStop
  192. // lParam1 == 0 indicates successful completion of ChapterPlayAutoStop
  193. // lParam1 == 1 indicates that ChapterPlayAutoStop is being cancelled as a result of another
  194. //            IDVDControl call or the end of content has been reached & no more chapters
  195. //            can be played.
  196. //  Indicating that playback is stopped as a result of a call
  197. //  to IDVDControl::ChapterPlayAutoStop()
  198. //
  199. // Raised from following domains : DVD_DOMAIN_TITLE
  200. //
  201. #define EC_DVD_NO_FP_PGC                         (EC_DVDBASE + 0x0f)
  202. //  Parameters : (void, void)
  203. //
  204. //  Raised from the following domains : FP_DOM
  205. //
  206. //  Indicates that the DVD disc does not have a FP_PGC (First Play Program Chain)
  207. //  and the DVD Navigator will not automatically load any PGC and start playback.
  208. //
  209. #define EC_DVD_PLAYBACK_RATE_CHANGE              (EC_DVDBASE + 0x10)
  210. //  Parameters : (LONG, void)
  211. //  lParam1 is a LONG indicating the new playback rate.
  212. //  lParam1 < 0 indicates reverse playback mode.
  213. //  lParam1 > 0 indicates forward playback mode
  214. //  Value of lParam1 is the actual playback rate multiplied by 10000.
  215. //  i.e. lParam1 = rate * 10000
  216. //
  217. //  Raised from the following domains : TT_DOM
  218. //
  219. //  Indicates that a rate change in playback has been initiated and the parameter
  220. //  lParam1 indicates the new playback rate that is being used.
  221. //
  222. #define EC_DVD_PARENTAL_LEVEL_CHANGE            (EC_DVDBASE + 0x11)
  223. //  Parameters : (LONG, void)
  224. //  lParam1 is a LONG indicating the new parental level.
  225. //
  226. //  Raised from the following domains : VMGM_DOM
  227. //
  228. //  Indicates that an authored Nav command has changed the parental level
  229. //  setting in the player.
  230. //
  231. #define EC_DVD_PLAYBACK_STOPPED                 (EC_DVDBASE + 0x12)
  232. //  Parameters : (void, void)
  233. //
  234. //  Raised from the following domains : All Domains
  235. //
  236. // Indicates that playback has been stopped as the Navigator has completed
  237. // playback of the pgc and did not find any other branching instruction for
  238. // subsequent playback.
  239. //
  240. #define EC_DVD_ANGLES_AVAILABLE                 (EC_DVDBASE + 0x13)
  241. //  Parameters : (BOOL, void)
  242. //  lParam1 == 0 indicates that playback is not in an angle block and angles are
  243. //             not available
  244. //  lParam1 == 1 indicates that an angle block is being played back and angle changes
  245. //             can be performed.
  246. //
  247. //  Indicates whether an angle block is being played and if angle changes can be 
  248. //  performed. However, angle changes are not restricted to angle blocks and the
  249. //  manifestation of the angle change can be seen only in an angle block.
  250. #define EC_DVD_PLAYPERIOD_AUTOSTOP              (EC_DVDBASE + 0x14)
  251. // Parameters: (void, void)
  252. // Sent when the PlayPeriodInTitle completes or is cancelled
  253. //
  254. // Raised from following domains : DVD_DOMAIN_TITLE
  255. //
  256. #define EC_DVD_BUTTON_AUTO_ACTIVATED                 (EC_DVDBASE + 0x15)
  257. // Parameters: (DWORD button, void)
  258. // Sent when a button is automatically activated
  259. //
  260. // Raised from following domains : DVD_DOMAIN_MENU
  261. //
  262. #define EC_DVD_CMD_START                 (EC_DVDBASE + 0x16)
  263. // Parameters: (CmdID, HRESULT)
  264. // Sent when a command begins
  265. //
  266. #define EC_DVD_CMD_END                 (EC_DVDBASE + 0x17)
  267. // Parameters: (CmdID, HRESULT)
  268. // Sent when a command completes
  269. //
  270. #define EC_DVD_DISC_EJECTED                (EC_DVDBASE + 0x18)
  271. // Parameters: none
  272. // Sent when the nav detects that a disc was ejected and stops the playback
  273. // The app does not need to take any action to stop the playback.
  274. //
  275. #define EC_DVD_DISC_INSERTED                (EC_DVDBASE + 0x19)
  276. // Parameters: none
  277. // Sent when the nav detects that a disc was inserted and the nav begins playback
  278. // The app does not need to take any action to start the playback.
  279. //
  280. #define EC_DVD_CURRENT_HMSF_TIME                     (EC_DVDBASE + 0x1a)
  281. // Parameters: ( ULONG, ULONG ) 
  282. // lParam2 contains a union of the DVD_TIMECODE_FLAGS
  283. // lParam1 contains a DVD_HMSF_TIMECODE.  Assign lParam1 to a ULONG then cast the
  284. // ULONG as a DVD_HMSF_TIMECODE to use its values.
  285. //
  286. // Raised from following domains: DVD_DOMAIN_Title
  287. //
  288. // Signaled at the beginning of every VOBU, which occurs every .4 to 1.0 sec.
  289. #define EC_DVD_KARAOKE_MODE                     (EC_DVDBASE + 0x1b)
  290. // Parameters: ( BOOL, reserved ) 
  291. // lParam1 is either TRUE (a karaoke track is being played) or FALSE (no karaoke data is being played).
  292. //