HikPlayMpeg4.h 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261
  1. ///////////////////////////////////////////////////////////////////
  2. //File: HikPlayMpeg4.h
  3. //Date: 2006-07-07
  4. //Description: Interface for HikPlayM4.dll
  5. //Copyright: Copyright(C)HangZhou Hikvision Digital Technology Co,.Ltd 2000-2008. All rights reserved.
  6. ///////////////////////////////////////////////////////////////////
  7. #ifndef _HIK_PLAY_M4
  8. #define _HIK_PLAY_M4
  9. #if defined( _WINDLL)
  10. #define HIK_PLAYM4_API extern "C"__declspec(dllexport)
  11. #else
  12. #define HIK_PLAYM4_API extern "C" //__declspec(dllimport)
  13. #endif
  14. //Max channel numbers
  15. #define HIK_PLAYM4_MAX_SUPPORTS 100
  16. //Wave coef range;
  17. #define MIN_WAVE_COEF -100
  18. #define MAX_WAVE_COEF 100
  19. //Timer type
  20. #define TIMER_1 1 //Only 16 timers for every process.Default TIMER;
  21. #define TIMER_2 2 //Not limit;But the precision less than TIMER_1;
  22. //BUFFER TYPE
  23. #define BUF_VIDEO_SRC 1
  24. #define BUF_AUDIO_SRC 2
  25. #define BUF_VIDEO_RENDER 3
  26. #define BUF_AUDIO_RENDER 4
  27. //Error code
  28. #define HIK_PLAYM4_NOERROR 0 //no error
  29. #define HIK_PLAYM4_PARA_OVER 1 //input parameter is invalid;
  30. #define HIK_PLAYM4_ORDER_ERROR 2 //The order of the function to be called is error.
  31. #define HIK_PLAYM4_TIMER_ERROR 3 //Create multimedia clock failed;
  32. #define HIK_PLAYM4_DEC_VIDEO_ERROR 4 //Decode video data failed.
  33. #define HIK_PLAYM4_DEC_AUDIO_ERROR 5 //Decode audio data failed.
  34. #define HIK_PLAYM4_ALLOC_MEMORY_ERROR 6 //Allocate memory failed.
  35. #define HIK_PLAYM4_OPEN_FILE_ERROR 7 //Open the file failed.
  36. #define HIK_PLAYM4_CREATE_OBJ_ERROR 8 //Create thread or event failed
  37. #define HIK_PLAYM4_CREATE_DDRAW_ERROR 9 //Create DirectDraw object failed.
  38. #define HIK_PLAYM4_CREATE_OFFSCREEN_ERROR 10 //failed when creating off-screen surface.
  39. #define HIK_PLAYM4_BUF_OVER 11 //buffer is overflow
  40. #define HIK_PLAYM4_CREATE_SOUND_ERROR 12 //failed when creating audio device.
  41. #define HIK_PLAYM4_SET_VOLUME_ERROR 13 //Set volume failed
  42. #define HIK_PLAYM4_SUPPORT_FILE_ONLY 14 //The function only support play file.
  43. #define HIK_PLAYM4_SUPPORT_STREAM_ONLY 15 //The function only support play stream.
  44. #define HIK_PLAYM4_SYS_NOT_SUPPORT 16 //System not support.
  45. #define HIK_PLAYM4_FILEHEADER_UNKNOWN 17 //No file header.
  46. #define HIK_PLAYM4_VERSION_INCORRECT 18 //The version of decoder and encoder is not adapted.
  47. #define HIK_PALYM4_INIT_DECODER_ERROR 19 //Initialize decoder failed.
  48. #define HIK_PLAYM4_CHECK_FILE_ERROR 20 //The file data is unknown.
  49. #define HIK_PLAYM4_INIT_TIMER_ERROR 21 //Initialize multimedia clock failed.
  50. #define HIK_PLAYM4_BLT_ERROR 22 //Blt failed.
  51. #define HIK_PLAYM4_UPDATE_ERROR 23 //Update failed.
  52. #define HIK_PLAYM4_OPEN_FILE_ERROR_MULTI 24 //openfile error, streamtype is multi
  53. #define HIK_PLAYM4_OPEN_FILE_ERROR_VIDEO 25 //openfile error, streamtype is video
  54. #define HIK_PLAYM4_JPEG_COMPRESS_ERROR 26 //JPEG compress error
  55. #define HIK_PLAYM4_EXTRACT_NOT_SUPPORT 27 //Don't support the version of this file.
  56. #define HIK_PLAYM4_EXTRACT_DATA_ERROR 28 //extract video data failed.
  57. //Max display regions.
  58. #define MAX_DISPLAY_WND 4
  59. //Display type
  60. #define DISPLAY_NORMAL 1
  61. #define DISPLAY_QUARTER 2
  62. //Display buffers
  63. #define MAX_DIS_FRAMES 50
  64. #define MIN_DIS_FRAMES 6
  65. //Locate by
  66. #define BY_FRAMENUM 1
  67. #define BY_FRAMETIME 2
  68. //Source buffer
  69. #define SOURCE_BUF_MAX 1024*100000
  70. #define SOURCE_BUF_MIN 1024*50
  71. //Stream type
  72. #define STREAME_REALTIME 0
  73. #define STREAME_FILE 1
  74. //frame type
  75. #define T_AUDIO16 101
  76. #define T_AUDIO8 100
  77. #define T_UYVY 1
  78. #define T_YV12 3
  79. #define T_RGB32 7
  80. //capability
  81. #define SUPPORT_DDRAW 1
  82. #define SUPPORT_BLT 2
  83. #define SUPPORT_BLTFOURCC 4
  84. #define SUPPORT_BLTSHRINKX 8
  85. #define SUPPORT_BLTSHRINKY 16
  86. #define SUPPORT_BLTSTRETCHX 32
  87. #define SUPPORT_BLTSTRETCHY 64
  88. #define SUPPORT_SSE 128
  89. #define SUPPORT_MMX 256
  90. //Frame position
  91. typedef struct{
  92. long nFilePos;
  93. long nFrameNum;
  94. long nFrameTime;
  95. long nErrorFrameNum;
  96. SYSTEMTIME *pErrorTime;
  97. long nErrorLostFrameNum;
  98. long nErrorFrameSize;
  99. }FRAME_POS,*PFRAME_POS;
  100. //Frame Info
  101. typedef struct{
  102. long nWidth;
  103. long nHeight;
  104. long nStamp;
  105. long nType;
  106. long nFrameRate;
  107. }FRAME_INFO;
  108. //Frame
  109. typedef struct{
  110. char *pDataBuf;
  111. long nSize;
  112. long nFrameNum;
  113. BOOL bIsAudio;
  114. long nReserved;
  115. }FRAME_TYPE;
  116. //////////////////////////////////////////////////////////////////////////////
  117. //API
  118. //////////////////////////////////////////////////////////////////////////////
  119. ////////////////ver 1.0///////////////////////////////////////
  120. //Initialize DirecDraw.Now invalid.
  121. HIK_PLAYM4_API BOOL __stdcall Hik_PlayM4_InitDDraw(HWND hWnd);
  122. //Release directDraw; Now invalid.
  123. HIK_PLAYM4_API BOOL __stdcall Hik_PlayM4_RealeseDDraw();
  124. HIK_PLAYM4_API BOOL __stdcall Hik_PlayM4_OpenFile(LONG nPort,LPSTR sFileName);
  125. HIK_PLAYM4_API BOOL __stdcall Hik_PlayM4_CloseFile(LONG nPort);
  126. HIK_PLAYM4_API BOOL __stdcall Hik_PlayM4_Play(LONG nPort, HWND hWnd);
  127. HIK_PLAYM4_API BOOL __stdcall Hik_PlayM4_Stop(LONG nPort);
  128. HIK_PLAYM4_API BOOL __stdcall Hik_PlayM4_Pause(LONG nPort,DWORD nPause);
  129. HIK_PLAYM4_API BOOL __stdcall Hik_PlayM4_Fast(LONG nPort);
  130. HIK_PLAYM4_API BOOL __stdcall Hik_PlayM4_Slow(LONG nPort);
  131. HIK_PLAYM4_API BOOL __stdcall Hik_PlayM4_OneByOne(LONG nPort);
  132. HIK_PLAYM4_API BOOL __stdcall Hik_PlayM4_SetPlayPos(LONG nPort,float fRelativePos);
  133. HIK_PLAYM4_API float __stdcall Hik_PlayM4_GetPlayPos(LONG nPort);
  134. HIK_PLAYM4_API BOOL __stdcall Hik_PlayM4_SetFileEndMsg(LONG nPort,HWND hWnd,UINT nMsg);
  135. HIK_PLAYM4_API BOOL __stdcall Hik_PlayM4_SetVolume(LONG nPort,WORD nVolume);
  136. HIK_PLAYM4_API BOOL __stdcall Hik_PlayM4_StopSound();
  137. HIK_PLAYM4_API BOOL __stdcall Hik_PlayM4_PlaySound(LONG nPort);
  138. HIK_PLAYM4_API BOOL __stdcall Hik_PlayM4_OpenStream(LONG nPort,PBYTE pFileHeadBuf,DWORD nSize,DWORD nBufPoolSize);
  139. HIK_PLAYM4_API BOOL __stdcall Hik_PlayM4_InputData(LONG nPort,PBYTE pBuf,DWORD nSize);
  140. HIK_PLAYM4_API BOOL __stdcall Hik_PlayM4_CloseStream(LONG nPort);
  141. HIK_PLAYM4_API int __stdcall Hik_PlayM4_GetCaps();
  142. HIK_PLAYM4_API DWORD __stdcall Hik_PlayM4_GetFileTime(LONG nPort);
  143. HIK_PLAYM4_API DWORD __stdcall Hik_PlayM4_GetPlayedTime(LONG nPort);
  144. HIK_PLAYM4_API DWORD __stdcall Hik_PlayM4_GetPlayedFrames(LONG nPort);
  145. ////////////////ver 2.0 added///////////////////////////////////////
  146. HIK_PLAYM4_API BOOL __stdcall Hik_PlayM4_SetDecCallBack(LONG nPort,void (CALLBACK* DecCBFun)(long nPort,char * pBuf,long nSize,FRAME_INFO * pFrameInfo, long nReserved1,long nReserved2));
  147. HIK_PLAYM4_API BOOL __stdcall Hik_PlayM4_SetDisplayCallBack(LONG nPort,void (CALLBACK* DisplayCBFun)(long nPort,char * pBuf,long nSize,long nWidth,long nHeight,long nStamp,long nType,long nReserved));
  148. HIK_PLAYM4_API BOOL __stdcall Hik_PLayM4_ConvertToBmpFile(char * pBuf,long nSize,long nWidth,long nHeight,long nType,char *sFileName);
  149. HIK_PLAYM4_API DWORD __stdcall Hik_PlayM4_GetFileTotalFrames(LONG nPort);
  150. HIK_PLAYM4_API DWORD __stdcall Hik_PlayM4_GetCurrentFrameRate(LONG nPort);
  151. HIK_PLAYM4_API DWORD __stdcall Hik_PlayM4_GetPlayedTimeEx(LONG nPort);
  152. HIK_PLAYM4_API BOOL __stdcall Hik_PlayM4_SetPlayedTimeEx(LONG nPort,DWORD nTime);
  153. HIK_PLAYM4_API DWORD __stdcall Hik_PlayM4_GetCurrentFrameNum(LONG nPort);
  154. HIK_PLAYM4_API BOOL __stdcall Hik_PlayM4_SetStreamOpenMode(LONG nPort,DWORD nMode);
  155. HIK_PLAYM4_API DWORD __stdcall Hik_PlayM4_GetFileHeadLength();
  156. HIK_PLAYM4_API DWORD __stdcall Hik_PlayM4_GetSdkVersion();
  157. ////////////////ver 2.2 added///////////////////////////////////////
  158. HIK_PLAYM4_API DWORD __stdcall Hik_PlayM4_GetLastError(LONG nPort);
  159. HIK_PLAYM4_API BOOL __stdcall Hik_PlayM4_RefreshPlay(LONG nPort);
  160. HIK_PLAYM4_API BOOL __stdcall Hik_PlayM4_SetOverlayMode(LONG nPort,BOOL bOverlay,COLORREF colorKey);
  161. HIK_PLAYM4_API BOOL __stdcall Hik_PlayM4_GetPictureSize(LONG nPort,LONG *pWidth,LONG *pHeight);
  162. HIK_PLAYM4_API BOOL __stdcall Hik_PlayM4_SetPicQuality(LONG nPort,BOOL bHighQuality);
  163. HIK_PLAYM4_API BOOL __stdcall Hik_PlayM4_PlaySoundShare(LONG nPort);
  164. HIK_PLAYM4_API BOOL __stdcall Hik_PlayM4_StopSoundShare(LONG nPort);
  165. ////////////////ver 2.4 added///////////////////////////////////////
  166. HIK_PLAYM4_API LONG __stdcall Hik_PlayM4_GetStreamOpenMode(LONG nPort);
  167. HIK_PLAYM4_API LONG __stdcall Hik_PlayM4_GetOverlayMode(LONG nPort);
  168. HIK_PLAYM4_API COLORREF __stdcall Hik_PlayM4_GetColorKey(LONG nPort);
  169. HIK_PLAYM4_API WORD __stdcall Hik_PlayM4_GetVolume(LONG nPort);
  170. HIK_PLAYM4_API BOOL __stdcall Hik_PlayM4_GetPictureQuality(LONG nPort,BOOL *bHighQuality);
  171. HIK_PLAYM4_API DWORD __stdcall Hik_PlayM4_GetSourceBufferRemain(LONG nPort);
  172. HIK_PLAYM4_API BOOL __stdcall Hik_PlayM4_ResetSourceBuffer(LONG nPort);
  173. HIK_PLAYM4_API BOOL __stdcall Hik_PlayM4_SetSourceBufCallBack(LONG nPort,DWORD nThreShold,void (CALLBACK * SourceBufCallBack)(long nPort,DWORD nBufSize,DWORD dwUser,void*pResvered),DWORD dwUser,void *pReserved);
  174. HIK_PLAYM4_API BOOL __stdcall Hik_PlayM4_ResetSourceBufFlag(LONG nPort);
  175. HIK_PLAYM4_API BOOL __stdcall Hik_PlayM4_SetDisplayBuf(LONG nPort,DWORD nNum);
  176. HIK_PLAYM4_API DWORD __stdcall Hik_PlayM4_GetDisplayBuf(LONG nPort);
  177. HIK_PLAYM4_API BOOL __stdcall Hik_PlayM4_OneByOneBack(LONG nPort);
  178. HIK_PLAYM4_API BOOL __stdcall Hik_PlayM4_SetFileRefCallBack(LONG nPort, void (__stdcall *pFileRefDone)(DWORD nPort,DWORD nUser),DWORD nUser);
  179. HIK_PLAYM4_API BOOL __stdcall Hik_PlayM4_SetCurrentFrameNum(LONG nPort,DWORD nFrameNum);
  180. HIK_PLAYM4_API BOOL __stdcall Hik_PlayM4_GetKeyFramePos(LONG nPort,DWORD nValue, DWORD nType, PFRAME_POS pFramePos);
  181. HIK_PLAYM4_API BOOL __stdcall Hik_PlayM4_GetNextKeyFramePos(LONG nPort,DWORD nValue, DWORD nType, PFRAME_POS pFramePos);
  182. #if (WINVER > 0x0400)
  183. //Note: These funtion must be builded under win2000 or above with Microsoft Platform sdk.
  184. // You can download the sdk from "http://www.microsoft.com/msdownload/platformsdk/sdkupdate/";
  185. HIK_PLAYM4_API BOOL __stdcall Hik_PlayM4_InitDDrawDevice();
  186. HIK_PLAYM4_API void __stdcall Hik_PlayM4_ReleaseDDrawDevice();
  187. HIK_PLAYM4_API DWORD __stdcall Hik_PlayM4_GetDDrawDeviceTotalNums();
  188. HIK_PLAYM4_API BOOL __stdcall Hik_PlayM4_SetDDrawDevice(LONG nPort,DWORD nDeviceNum);
  189. HIK_PLAYM4_API BOOL __stdcall Hik_PlayM4_GetDDrawDeviceInfo(DWORD nDeviceNum,LPSTR lpDriverDescription,DWORD nDespLen,LPSTR lpDriverName ,DWORD nNameLen,HMONITOR *hhMonitor);
  190. HIK_PLAYM4_API int __stdcall Hik_PlayM4_GetCapsEx(DWORD nDDrawDeviceNum);
  191. #endif
  192. HIK_PLAYM4_API BOOL __stdcall Hik_PlayM4_ThrowBFrameNum(LONG nPort,DWORD nNum);
  193. ////////////////ver 2.5 added///////////////////////////////////////
  194. HIK_PLAYM4_API BOOL __stdcall Hik_PlayM4_SetDisplayType(LONG nPort,LONG nType);
  195. HIK_PLAYM4_API long __stdcall Hik_PlayM4_GetDisplayType(LONG nPort);
  196. ////////////////ver 3.0 added///////////////////////////////////////
  197. HIK_PLAYM4_API BOOL __stdcall Hik_PlayM4_SetDecCBStream(LONG nPort,DWORD nStream);
  198. HIK_PLAYM4_API BOOL __stdcall Hik_PlayM4_SetDisplayRegion(LONG nPort,DWORD nRegionNum, RECT *pSrcRect, HWND hDestWnd, BOOL bEnable);
  199. HIK_PLAYM4_API BOOL __stdcall Hik_PlayM4_RefreshPlayEx(LONG nPort,DWORD nRegionNum);
  200. #if (WINVER > 0x0400)
  201. //Note: The funtion must be builded under win2000 or above with Microsoft Platform sdk.
  202. // You can download the sdk from http://www.microsoft.com/msdownload/platformsdk/sdkupdate/;
  203. HIK_PLAYM4_API BOOL __stdcall Hik_PlayM4_SetDDrawDeviceEx(LONG nPort,DWORD nRegionNum,DWORD nDeviceNum);
  204. #endif
  205. /////////////////v3.2 added/////////////////////////////////////////
  206. HIK_PLAYM4_API BOOL __stdcall Hik_PlayM4_GetRefValue(LONG nPort,BYTE *pBuffer, DWORD *pSize);
  207. HIK_PLAYM4_API BOOL __stdcall Hik_PlayM4_SetRefValue(LONG nPort,BYTE *pBuffer, DWORD nSize);
  208. HIK_PLAYM4_API BOOL __stdcall Hik_PlayM4_OpenStreamEx(LONG nPort,PBYTE pFileHeadBuf,DWORD nSize,DWORD nBufPoolSize);
  209. HIK_PLAYM4_API BOOL __stdcall Hik_PlayM4_CloseStreamEx(LONG nPort);
  210. HIK_PLAYM4_API BOOL __stdcall Hik_PlayM4_InputVideoData(LONG nPort,PBYTE pBuf,DWORD nSize);
  211. HIK_PLAYM4_API BOOL __stdcall Hik_PlayM4_InputAudioData(LONG nPort,PBYTE pBuf,DWORD nSize);
  212. HIK_PLAYM4_API BOOL __stdcall Hik_PlayM4_RigisterDrawFun(LONG nPort,void (CALLBACK* DrawFun)(long nPort,HDC hDc,LONG nUser),LONG nUser);
  213. //HIK_PLAYM4_API BOOL __stdcall Hik_PlayM4_RegisterDrawFun(LONG nPort,void (CALLBACK* DrawFun)(long nPort,HDC hDc,LONG nUser),LONG nUser);
  214. //////////////////v3.4/////////////////////////////////////////////////////
  215. HIK_PLAYM4_API BOOL __stdcall Hik_PlayM4_SetTimerType(LONG nPort,DWORD nTimerType,DWORD nReserved);
  216. HIK_PLAYM4_API BOOL __stdcall Hik_PlayM4_GetTimerType(LONG nPort,DWORD *pTimerType,DWORD *pReserved);
  217. HIK_PLAYM4_API BOOL __stdcall Hik_PlayM4_ResetBuffer(LONG nPort,DWORD nBufType);
  218. HIK_PLAYM4_API DWORD __stdcall Hik_PlayM4_GetBufferValue(LONG nPort,DWORD nBufType);
  219. //////////////////V3.6/////////////////////////////////////////////////////////
  220. HIK_PLAYM4_API BOOL __stdcall Hik_PlayM4_AdjustWaveAudio(LONG nPort,LONG nCoefficient);
  221. HIK_PLAYM4_API BOOL __stdcall Hik_PlayM4_SetVerifyCallBack(LONG nPort, DWORD nBeginTime, DWORD nEndTime, void (__stdcall * funVerify)(long nPort, FRAME_POS * pFilePos, DWORD bIsVideo, DWORD nUser), DWORD nUser);
  222. HIK_PLAYM4_API BOOL __stdcall Hik_PlayM4_SetAudioCallBack(LONG nPort, void (__stdcall * funAudio)(long nPort, char * pAudioBuf, long nSize, long nStamp, long nType, long nUser), long nUser);
  223. HIK_PLAYM4_API BOOL __stdcall Hik_PlayM4_SetEncTypeChangeCallBack(LONG nPort,void(CALLBACK *funEncChange)(long nPort,long nUser),long nUser);
  224. HIK_PLAYM4_API BOOL __stdcall Hik_PlayM4_SetColor(LONG nPort, DWORD nRegionNum, int nBrightness, int nContrast, int nSaturation, int nHue);
  225. HIK_PLAYM4_API BOOL __stdcall Hik_PlayM4_GetColor(LONG nPort, DWORD nRegionNum, int *pBrightness, int *pContrast, int *pSaturation, int *pHue);
  226. HIK_PLAYM4_API BOOL __stdcall Hik_PlayM4_SetEncChangeMsg(LONG nPort,HWND hWnd,UINT nMsg);
  227. HIK_PLAYM4_API BOOL __stdcall Hik_PlayM4_GetOriginalFrameCallBack(LONG nPort, BOOL bIsChange,BOOL bNormalSpeed,long nStartFrameNum,long nStartStamp,long nFileHeader,void(CALLBACK *funGetOrignalFrame)(long nPort,FRAME_TYPE *frameType, long nUser),long nUser);
  228. HIK_PLAYM4_API BOOL __stdcall Hik_PlayM4_GetFileSpecialAttr(LONG nPort, DWORD *pTimeStamp,DWORD *pFileNum ,DWORD *pReserved);
  229. //////////////////V4.7.0.0/////////////////////////////////////////////////////////
  230. //convert yuv to jpeg file
  231. HIK_PLAYM4_API BOOL __stdcall Hik_PlayM4_ConvertToJpegFile(char * pBuf,long nSize,long nWidth,long nHeight,long nType,char *sFileName);
  232. HIK_PLAYM4_API BOOL __stdcall Hik_PlayM4_SetJpegQuality(long nQuality);
  233. //set deflash
  234. HIK_PLAYM4_API BOOL __stdcall Hik_PlayM4_SetDeflash(LONG nPort,BOOL bDeflash);
  235. //InputFileHead
  236. HIK_PLAYM4_API BOOL __stdcall Hik_PlayM4_InputFileHead(LONG nPort,PBYTE pFileHeadBuf,DWORD nSize);
  237. #endif