home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 1997 May / VPR9705A.ISO / VPR_DATA / PROGRAM / CBTRIAL / SETUP / DATA.Z / MSVIDEO.H < prev    next >
C/C++ Source or Header  |  1997-02-14  |  12KB  |  296 lines

  1. /****************************************************************************/
  2. /*                                                                          */
  3. /*  THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY   */
  4. /*  KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE     */
  5. /*  IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR   */
  6. /*  PURPOSE.                                                                */
  7. /*        MSVIDEO.H - Include file for Video APIs                           */
  8. /*                                                                          */
  9. /*        Note: You must include WINDOWS.H before including this file.      */
  10. /*                                                                          */
  11. /****************************************************************************/
  12.  
  13. /*
  14.  *      C/C++ Run Time Library - Version 8.0
  15.  *
  16.  *      Copyright (c) 1994, 1997 by Borland International
  17.  *      All Rights Reserved.
  18.  *
  19.  */
  20.  
  21. #ifndef _INC_MSVIDEO
  22. #define _INC_MSVIDEO    50      /* version number */
  23. #define __MSVIDEO_H
  24. #pragma option -b
  25.  
  26. #ifdef __cplusplus
  27. extern "C" {            /* Assume C declarations for C++ */
  28. #endif  /* __cplusplus */
  29.  
  30. #ifndef _RCINVOKED
  31.  
  32. /* video data types */
  33. DECLARE_HANDLE(HVIDEO);                 // generic handle
  34. typedef HVIDEO FAR * LPHVIDEO;
  35. #endif                                  // ifndef RCINVOKED
  36.  
  37. /****************************************************************************
  38.  
  39.             version api
  40.  
  41. ****************************************************************************/
  42.  
  43. DWORD FAR PASCAL VideoForWindowsVersion(void);
  44.  
  45. /****************************************************************************
  46.  
  47.                 Error Return Values
  48.  
  49. ****************************************************************************/
  50. #define DV_ERR_OK               (0)                  /* No error */
  51. #define DV_ERR_BASE             (1)                  /* Error Base */
  52. #define DV_ERR_NONSPECIFIC      (DV_ERR_BASE)
  53. #define DV_ERR_BADFORMAT        (DV_ERR_BASE + 1)
  54.                 /* unsupported video format */
  55. #define DV_ERR_STILLPLAYING     (DV_ERR_BASE + 2)
  56.                 /* still something playing */
  57. #define DV_ERR_UNPREPARED       (DV_ERR_BASE + 3)
  58.                 /* header not prepared */
  59. #define DV_ERR_SYNC             (DV_ERR_BASE + 4)
  60.                 /* device is synchronous */
  61. #define DV_ERR_TOOMANYCHANNELS  (DV_ERR_BASE + 5)
  62.                 /* number of channels exceeded */
  63. #define DV_ERR_NOTDETECTED      (DV_ERR_BASE + 6)    /* HW not detected */
  64. #define DV_ERR_BADINSTALL       (DV_ERR_BASE + 7)    /* Can not get Profile */
  65. #define DV_ERR_CREATEPALETTE    (DV_ERR_BASE + 8)
  66. #define DV_ERR_SIZEFIELD        (DV_ERR_BASE + 9)
  67. #define DV_ERR_PARAM1           (DV_ERR_BASE + 10)
  68. #define DV_ERR_PARAM2           (DV_ERR_BASE + 11)
  69. #define DV_ERR_CONFIG1          (DV_ERR_BASE + 12)
  70. #define DV_ERR_CONFIG2          (DV_ERR_BASE + 13)
  71. #define DV_ERR_FLAGS            (DV_ERR_BASE + 14)
  72. #define DV_ERR_13               (DV_ERR_BASE + 15)
  73.  
  74. #define DV_ERR_NOTSUPPORTED     (DV_ERR_BASE + 16)   /* function not suported */
  75. #define DV_ERR_NOMEM            (DV_ERR_BASE + 17)   /* out of memory */
  76. #define DV_ERR_ALLOCATED        (DV_ERR_BASE + 18)   /* device is allocated */
  77. #define DV_ERR_BADDEVICEID      (DV_ERR_BASE + 19)
  78. #define DV_ERR_INVALHANDLE      (DV_ERR_BASE + 20)
  79. #define DV_ERR_BADERRNUM        (DV_ERR_BASE + 21)
  80. #define DV_ERR_NO_BUFFERS       (DV_ERR_BASE + 22)   /* out of buffers */
  81.  
  82. #define DV_ERR_MEM_CONFLICT     (DV_ERR_BASE + 23)   /* Mem conflict detected */
  83. #define DV_ERR_IO_CONFLICT      (DV_ERR_BASE + 24)   /* I/O conflict detected */
  84. #define DV_ERR_DMA_CONFLICT     (DV_ERR_BASE + 25)   /* DMA conflict detected */
  85. #define DV_ERR_INT_CONFLICT     (DV_ERR_BASE + 26)   /* Interrupt conflict detected */
  86. #define DV_ERR_PROTECT_ONLY     (DV_ERR_BASE + 27)   /* Can not run in standard mode */
  87. #define DV_ERR_LASTERROR        (DV_ERR_BASE + 27)
  88.  
  89. //#define DV_IDS_PROFILING        (DV_ERR_BASE + 900)
  90. //#define DV_IDS_LISTBOX          (DV_ERR_BASE + 901)
  91.  
  92. #define DV_ERR_USER_MSG         (DV_ERR_BASE + 1000) /* Hardware specific errors */
  93.  
  94. /****************************************************************************
  95.  
  96.              Callback Messages
  97.  
  98. Note that the values for all installable driver callback messages are
  99. identical, (ie. MM_DRVM_DATA has the same value for capture drivers,
  100. installable video codecs, and the audio compression manager).
  101. ****************************************************************************/
  102. #ifndef _RCINVOKED
  103.  
  104. #ifndef MM_DRVM_OPEN
  105. #define MM_DRVM_OPEN       0x3D0
  106. #define MM_DRVM_CLOSE      0x3D1
  107. #define MM_DRVM_DATA       0x3D2
  108. #define MM_DRVM_ERROR      0x3D3
  109. #endif
  110.  
  111. #define DV_VM_OPEN         MM_DRVM_OPEN         // Obsolete messages
  112. #define DV_VM_CLOSE        MM_DRVM_CLOSE
  113. #define DV_VM_DATA         MM_DRVM_DATA
  114. #define DV_VM_ERROR        MM_DRVM_ERROR
  115.  
  116. /****************************************************************************
  117.  
  118.              Structures
  119.  
  120. ****************************************************************************/
  121. /* video data block header */
  122. #if !defined(__VFW_H)
  123. typedef struct videohdr_tag {
  124.     LPBYTE      lpData;                 /* pointer to locked data buffer */
  125.     DWORD       dwBufferLength;         /* Length of data buffer */
  126.     DWORD       dwBytesUsed;            /* Bytes actually used */
  127.     DWORD       dwTimeCaptured;         /* Milliseconds from start of stream */
  128.     DWORD       dwUser;                 /* for client's use */
  129.     DWORD       dwFlags;                /* assorted flags (see defines) */
  130.     DWORD       dwReserved[4];          /* reserved for driver */
  131. } VIDEOHDR, NEAR *PVIDEOHDR, FAR * LPVIDEOHDR;
  132. #endif
  133.  
  134. /* dwFlags field of VIDEOHDR */
  135. #define VHDR_DONE       0x00000001  /* Done bit */
  136. #define VHDR_PREPARED   0x00000002  /* Set if this header has been prepared */
  137. #define VHDR_INQUEUE    0x00000004  /* Reserved for driver */
  138. #define VHDR_KEYFRAME   0x00000008  /* Key Frame */
  139.  
  140. /* Channel capabilities structure */
  141. #if !defined(__VFW_H)
  142. typedef struct channel_caps_tag {
  143.     DWORD       dwFlags;                /* Capability flags*/
  144.     DWORD       dwSrcRectXMod;          /* Granularity of src rect in x */
  145.     DWORD       dwSrcRectYMod;          /* Granularity of src rect in y */
  146.     DWORD       dwSrcRectWidthMod;      /* Granularity of src rect width */
  147.     DWORD       dwSrcRectHeightMod;     /* Granularity of src rect height */
  148.     DWORD       dwDstRectXMod;          /* Granularity of dst rect in x */
  149.     DWORD       dwDstRectYMod;          /* Granularity of dst rect in y */
  150.     DWORD       dwDstRectWidthMod;      /* Granularity of dst rect width */
  151.     DWORD       dwDstRectHeightMod;     /* Granularity of dst rect height */
  152. } CHANNEL_CAPS, NEAR *PCHANNEL_CAPS, FAR * LPCHANNEL_CAPS;
  153. #endif
  154.  
  155. /* dwFlags of CHANNEL_CAPS */
  156. #define VCAPS_OVERLAY       0x00000001      /* overlay channel */
  157. #define VCAPS_SRC_CAN_CLIP  0x00000002      /* src rect can clip */
  158. #define VCAPS_DST_CAN_CLIP  0x00000004      /* dst rect can clip */
  159. #define VCAPS_CAN_SCALE     0x00000008      /* allows src != dst */
  160.  
  161. /****************************************************************************
  162.  
  163.    videoXXXX API's are only available on Win 3.x!  they are Not in Win32
  164.  
  165. ****************************************************************************/
  166.  
  167. #if !defined WIN32
  168.  
  169. /****************************************************************************
  170.  
  171.             video APIs
  172.  
  173. ****************************************************************************/
  174.  
  175.  
  176. DWORD WINAPI videoGetNumDevs(void);
  177.  
  178. DWORD WINAPI videoOpen  (LPHVIDEO lphVideo,
  179.           DWORD dwDevice, DWORD dwFlags);
  180. DWORD WINAPI videoClose (HVIDEO hVideo);
  181. DWORD WINAPI videoDialog(HVIDEO hVideo, HWND hWndParent, DWORD dwFlags);
  182. DWORD WINAPI videoGetChannelCaps(HVIDEO hVideo, LPCHANNEL_CAPS lpChannelCaps,
  183.         DWORD dwSize);
  184. DWORD WINAPI videoUpdate (HVIDEO hVideo, HWND hWnd, HDC hDC);
  185. DWORD WINAPI videoConfigure (HVIDEO hVideo, UINT msg, DWORD dwFlags,
  186.         LPDWORD lpdwReturn, LPVOID lpData1, DWORD dwSize1,
  187.         LPVOID lpData2, DWORD dwSize2);
  188.  
  189. DWORD WINAPI videoConfigureStorageA(HVIDEO hVideo,
  190.               LPSTR lpstrIdent, DWORD dwFlags);
  191.  
  192. DWORD WINAPI videoConfigureStorageW(HVIDEO hVideo,
  193.             LPWSTR lpstrIdent, DWORD dwFlags);
  194. #ifdef UNICODE
  195. #define videoConfigureStorage  videoConfigureStorageW
  196. #else
  197. #define videoConfigureStorage  videoConfigureStorageA
  198. #endif // !UNICODE
  199. DWORD WINAPI videoFrame(HVIDEO hVideo, LPVIDEOHDR lpVHdr);
  200. DWORD WINAPI videoMessage(HVIDEO hVideo, UINT msg, DWORD dwP1, DWORD dwP2);
  201.  
  202. /* streaming APIs */
  203. DWORD WINAPI videoStreamAddBuffer(HVIDEO hVideo,
  204.           LPVIDEOHDR lpVHdr, DWORD dwSize);
  205. DWORD WINAPI videoStreamGetError(HVIDEO hVideo, LPDWORD lpdwErrorFirst,
  206.     LPDWORD lpdwErrorLast);
  207.  
  208. DWORD WINAPI videoGetErrorTextA(HVIDEO hVideo, UINT wError,
  209.           LPSTR lpText, UINT wSize);
  210.  
  211. DWORD WINAPI videoGetErrorTextW(HVIDEO hVideo, UINT wError,
  212.         LPWSTR lpText, UINT wSize);
  213. #ifdef UNICODE
  214. #define videoGetErrorText  videoGetErrorTextW
  215. #else
  216. #define videoGetErrorText  videoGetErrorTextA
  217. #endif // !UNICODE
  218. DWORD WINAPI videoStreamGetPosition(HVIDEO hVideo, MMTIME FAR* lpInfo,
  219.           DWORD dwSize);
  220. DWORD WINAPI videoStreamInit(HVIDEO hVideo,
  221.           DWORD dwMicroSecPerFrame, DWORD dwCallback,
  222.           DWORD dwCallbackInst, DWORD dwFlags);
  223. DWORD WINAPI videoStreamFini(HVIDEO hVideo);
  224. DWORD WINAPI videoStreamPrepareHeader(HVIDEO hVideo,
  225.           LPVIDEOHDR lpVHdr, DWORD dwSize);
  226. DWORD WINAPI videoStreamReset(HVIDEO hVideo);
  227. DWORD WINAPI videoStreamStart(HVIDEO hVideo);
  228. DWORD WINAPI videoStreamStop(HVIDEO hVideo);
  229. DWORD WINAPI videoStreamUnprepareHeader(HVIDEO hVideo,
  230.           LPVIDEOHDR lpVHdr, DWORD dwSize);
  231.  
  232. // Added post VFW1.1a
  233. DWORD WINAPI videoStreamAllocHdrAndBuffer(HVIDEO hVideo,
  234.           LPVIDEOHDR FAR * plpVHdr, DWORD dwSize);
  235. DWORD WINAPI videoStreamFreeHdrAndBuffer(HVIDEO hVideo,
  236.           LPVIDEOHDR lpVHdr);
  237.  
  238.  
  239. #endif // ! win32
  240.  
  241.  
  242. /****************************************************************************
  243.  
  244.             API Flags
  245.  
  246. ****************************************************************************/
  247.  
  248. // Types of channels to open with the videoOpen function
  249. #define VIDEO_EXTERNALIN                0x0001
  250. #define VIDEO_EXTERNALOUT               0x0002
  251. #define VIDEO_IN                        0x0004
  252. #define VIDEO_OUT                       0x0008
  253.  
  254. // Is a driver dialog available for this channel?
  255. #define VIDEO_DLG_QUERY                 0x0010
  256.  
  257. // videoConfigure (both GET and SET)
  258. #define VIDEO_CONFIGURE_QUERY           0x8000
  259.  
  260. // videoConfigure (SET only)
  261. #define VIDEO_CONFIGURE_SET             0x1000
  262.  
  263. // videoConfigure (GET only)
  264. #define VIDEO_CONFIGURE_GET             0x2000
  265. #define VIDEO_CONFIGURE_QUERYSIZE       0x0001
  266.  
  267. #define VIDEO_CONFIGURE_CURRENT         0x0010
  268. #define VIDEO_CONFIGURE_NOMINAL         0x0020
  269. #define VIDEO_CONFIGURE_MIN             0x0040
  270. #define VIDEO_CONFIGURE_MAX             0x0080
  271.  
  272. /****************************************************************************
  273.  
  274.             CONFIGURE MESSAGES
  275.  
  276. ****************************************************************************/
  277. #define DVM_USER                        0X4000
  278.  
  279. #define DVM_CONFIGURE_START             0x1000
  280. #define DVM_CONFIGURE_END               0x1FFF
  281.  
  282. #define DVM_PALETTE                     (DVM_CONFIGURE_START + 1)
  283. #define DVM_FORMAT                      (DVM_CONFIGURE_START + 2)
  284. #define DVM_PALETTERGB555               (DVM_CONFIGURE_START + 3)
  285. #define DVM_SRC_RECT                    (DVM_CONFIGURE_START + 4)
  286. #define DVM_DST_RECT                    (DVM_CONFIGURE_START + 5)
  287.  
  288. #endif  /* ifndef _RCINVOKED */
  289.  
  290. #ifdef __cplusplus
  291. }                       /* End of extern "C" { */
  292. #endif  /* __cplusplus */
  293.  
  294. #pragma option -b.
  295. #endif  /* _INC_MSVIDEO */
  296.