📄 private_mciavi.h
字号:
/* -*- tab-width: 8; c-basic-offset: 4 -*- *//* * Digital video MCI Wine Driver * * Copyright 1999, 2000 Eric POUECH * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */#ifndef __WINE_PRIVATE_MCIAVI_H#define __WINE_PRIVATE_MCIAVI_H#define COM_NO_WINDOWS_H#include <stdarg.h>#include "windef.h"#include "winbase.h"#include "wingdi.h"#include "winuser.h"#include "mmddk.h"#include "digitalv.h"#include "vfw.h"#include "wownt32.h"#include "mciavi.h"struct MMIOPos { DWORD dwOffset; DWORD dwSize;};typedef struct { UINT wDevID; int nUseCount; /* Incremented for each shared open */ BOOL fShareable; /* TRUE if first open was shareable */ WORD wCommandTable; /* custom MCI command table */ volatile DWORD dwStatus; /* One of MCI_MODE_XXX */ MCI_OPEN_PARMSA openParms; DWORD dwMciTimeFormat; /* current time format */ DWORD dwSet; /* what's turned on: video & audio l&r */ /* information on the loaded AVI file */ HMMIO hFile; /* mmio file handle open as Element */ MainAVIHeader mah; AVIStreamHeader ash_video; AVIStreamHeader ash_audio; LPBITMAPINFOHEADER inbih; struct MMIOPos* lpVideoIndex; LPWAVEFORMATEX lpWaveFormat; struct MMIOPos* lpAudioIndex; /* computed data from the file */ DWORD dwPlayableVideoFrames; /* max number of frames to be played. Takes care of truncated files and audio skew */ DWORD dwPlayableAudioBlocks; /* data for the AVI decompressor */ HIC hic; LPBITMAPINFOHEADER outbih; LPVOID indata; LPVOID outdata; HBITMAP hbmFrame; /* data for playing the audio part */ HANDLE hWave; HANDLE hEvent; /* for synchronization */ DWORD dwEventCount; /* for synchronization */ /* data for play back */ HWND hWnd; DWORD dwCurrVideoFrame; /* video frame to display and current position */ DWORD dwCurrAudioBlock; /* current audio block being played */ /* data for the background mechanism */ CRITICAL_SECTION cs;} WINE_MCIAVI;extern HINSTANCE MCIAVI_hInstance;/* info.c */DWORD MCIAVI_ConvertFrameToTimeFormat(WINE_MCIAVI* wma, DWORD val, LPDWORD lpRet);DWORD MCIAVI_ConvertTimeFormatToFrame(WINE_MCIAVI* wma, DWORD val);DWORD MCIAVI_mciGetDevCaps(UINT wDevID, DWORD dwFlags, LPMCI_GETDEVCAPS_PARMS lpParms);DWORD MCIAVI_mciInfo(UINT wDevID, DWORD dwFlags, LPMCI_DGV_INFO_PARMSA lpParms);DWORD MCIAVI_mciSet(UINT wDevID, DWORD dwFlags, LPMCI_DGV_SET_PARMS lpParms);DWORD MCIAVI_mciStatus(UINT wDevID, DWORD dwFlags, LPMCI_DGV_STATUS_PARMSA lpParms);/* mmoutput.c */BOOL MCIAVI_GetInfo(WINE_MCIAVI* wma);DWORD MCIAVI_OpenAudio(WINE_MCIAVI* wma, unsigned* nHdr, LPWAVEHDR* pWaveHdr);BOOL MCIAVI_OpenVideo(WINE_MCIAVI* wma);void MCIAVI_PlayAudioBlocks(WINE_MCIAVI* wma, unsigned nHdr, LPWAVEHDR waveHdr);LRESULT MCIAVI_DrawFrame(WINE_MCIAVI* wma);LRESULT MCIAVI_PaintFrame(WINE_MCIAVI* wma, HDC hDC);/* mciavi.c */WINE_MCIAVI* MCIAVI_mciGetOpenDev(UINT wDevID);/* window.c */BOOL MCIAVI_CreateWindow(WINE_MCIAVI* wma, DWORD dwFlags, LPMCI_DGV_OPEN_PARMSA lpOpenParms);DWORD MCIAVI_mciPut(UINT wDevID, DWORD dwFlags, LPMCI_DGV_PUT_PARMS lpParms);DWORD MCIAVI_mciWhere(UINT wDevID, DWORD dwFlags, LPMCI_DGV_RECT_PARMS lpParms);DWORD MCIAVI_mciWindow(UINT wDevID, DWORD dwFlags, LPMCI_DGV_WINDOW_PARMSA lpParms);#endif /* __WINE_PRIVATE_MCIAVI_H */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -