msxml3/tests: Free ready state BSTR (Valgrind).
[wine.git] / dlls / mciavi32 / mciavi.c
blobb32accb6455eaef6ed10f3a6d443ef790a026e96
1 /*
2 * Digital video MCI Wine Driver
4 * Copyright 1999, 2000 Eric POUECH
5 * Copyright 2003 Dmitry Timoshkov
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
22 /* TODO list :
23 * - handling of palettes
24 * - recording (which input devices ?), a cam recorder ?
25 * - lots of messages still need to be handled (cf FIXME)
26 * - synchronization between audio and video (especially for interleaved
27 * files)
28 * - robustness when reading file can be enhanced
29 * - reimplement the AVI handling part with avifile DLL because
30 * "open @1122334 type avivideo alias a" expects an AVIFile/Stream
31 * and MCI_DGV_SET|STATUS_SPEED maps to Rate/Scale
32 * - some files appear to have more than one audio stream (we only play the
33 * first one)
34 * - some files contain an index of audio/video frame. Better use it,
35 * instead of rebuilding it (AVIFile does that already)
36 * - stopping while playing a file with sound blocks until all buffered
37 * audio is played... still should be stopped ASAP
40 #include <string.h>
41 #include "private_mciavi.h"
42 #include "wine/debug.h"
43 #include "wine/unicode.h"
45 WINE_DEFAULT_DEBUG_CHANNEL(mciavi);
47 static DWORD MCIAVI_mciStop(UINT, DWORD, LPMCI_GENERIC_PARMS);
49 /*======================================================================*
50 * MCI AVI implementation *
51 *======================================================================*/
53 HINSTANCE MCIAVI_hInstance = 0;
55 /***********************************************************************
56 * DllMain (MCIAVI.0)
58 BOOL WINAPI DllMain(HINSTANCE hInstDLL, DWORD fdwReason, LPVOID fImpLoad)
60 switch (fdwReason) {
61 case DLL_PROCESS_ATTACH:
62 DisableThreadLibraryCalls(hInstDLL);
63 MCIAVI_hInstance = hInstDLL;
64 break;
66 return TRUE;
69 /**************************************************************************
70 * MCIAVI_drvOpen [internal]
72 static DWORD MCIAVI_drvOpen(LPCWSTR str, LPMCI_OPEN_DRIVER_PARMSW modp)
74 WINE_MCIAVI* wma;
75 static const WCHAR mciAviWStr[] = {'M','C','I','A','V','I',0};
77 TRACE("%s, %p\n", debugstr_w(str), modp);
79 /* session instance */
80 if (!modp) return 0xFFFFFFFF;
82 if (!MCIAVI_RegisterClass()) return 0;
84 wma = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(WINE_MCIAVI));
85 if (!wma)
86 return 0;
88 InitializeCriticalSection(&wma->cs);
89 wma->cs.DebugInfo->Spare[0] = (DWORD_PTR)(__FILE__ ": WINE_MCIAVI.cs");
90 wma->hStopEvent = CreateEventW(NULL, FALSE, FALSE, NULL);
91 wma->wDevID = modp->wDeviceID;
92 wma->wCommandTable = mciLoadCommandResource(MCIAVI_hInstance, mciAviWStr, 0);
93 wma->dwStatus = MCI_MODE_NOT_READY;
94 modp->wCustomCommandTable = wma->wCommandTable;
95 modp->wType = MCI_DEVTYPE_DIGITAL_VIDEO;
96 mciSetDriverData(wma->wDevID, (DWORD_PTR)wma);
98 return modp->wDeviceID;
101 /**************************************************************************
102 * MCIAVI_drvClose [internal]
104 static DWORD MCIAVI_drvClose(DWORD dwDevID)
106 WINE_MCIAVI *wma;
108 TRACE("%04x\n", dwDevID);
110 /* finish all outstanding things */
111 MCIAVI_mciClose(dwDevID, MCI_WAIT, NULL);
113 wma = (WINE_MCIAVI*)mciGetDriverData(dwDevID);
115 if (wma) {
116 MCIAVI_UnregisterClass();
118 EnterCriticalSection(&wma->cs);
120 mciSetDriverData(dwDevID, 0);
121 mciFreeCommandResource(wma->wCommandTable);
123 CloseHandle(wma->hStopEvent);
125 LeaveCriticalSection(&wma->cs);
126 wma->cs.DebugInfo->Spare[0] = 0;
127 DeleteCriticalSection(&wma->cs);
129 HeapFree(GetProcessHeap(), 0, wma);
130 return 1;
132 return (dwDevID == 0xFFFFFFFF) ? 1 : 0;
135 /**************************************************************************
136 * MCIAVI_drvConfigure [internal]
138 static DWORD MCIAVI_drvConfigure(DWORD dwDevID)
140 WINE_MCIAVI *wma;
142 TRACE("%04x\n", dwDevID);
144 MCIAVI_mciStop(dwDevID, MCI_WAIT, NULL);
146 wma = (WINE_MCIAVI*)mciGetDriverData(dwDevID);
148 if (wma) {
149 MessageBoxA(0, "Sample AVI Wine Driver !", "MM-Wine Driver", MB_OK);
150 return 1;
152 return 0;
155 /**************************************************************************
156 * MCIAVI_mciGetOpenDev [internal]
158 WINE_MCIAVI* MCIAVI_mciGetOpenDev(UINT wDevID)
160 WINE_MCIAVI* wma = (WINE_MCIAVI*)mciGetDriverData(wDevID);
162 if (wma == NULL || wma->nUseCount == 0) {
163 WARN("Invalid wDevID=%u\n", wDevID);
164 return 0;
166 return wma;
169 static void MCIAVI_CleanUp(WINE_MCIAVI* wma)
171 /* to prevent handling in WindowProc */
172 wma->dwStatus = MCI_MODE_NOT_READY;
173 if (wma->hFile) {
174 mmioClose(wma->hFile, 0);
175 wma->hFile = 0;
177 HeapFree(GetProcessHeap(), 0, wma->lpFileName);
178 wma->lpFileName = NULL;
180 HeapFree(GetProcessHeap(), 0, wma->lpVideoIndex);
181 wma->lpVideoIndex = NULL;
182 HeapFree(GetProcessHeap(), 0, wma->lpAudioIndex);
183 wma->lpAudioIndex = NULL;
184 if (wma->hic) ICClose(wma->hic);
185 wma->hic = 0;
186 HeapFree(GetProcessHeap(), 0, wma->inbih);
187 wma->inbih = NULL;
188 HeapFree(GetProcessHeap(), 0, wma->outbih);
189 wma->outbih = NULL;
190 HeapFree(GetProcessHeap(), 0, wma->indata);
191 wma->indata = NULL;
192 HeapFree(GetProcessHeap(), 0, wma->outdata);
193 wma->outdata = NULL;
194 if (wma->hbmFrame) DeleteObject(wma->hbmFrame);
195 wma->hbmFrame = 0;
196 if (wma->hWnd) DestroyWindow(wma->hWnd);
197 wma->hWnd = 0;
199 HeapFree(GetProcessHeap(), 0, wma->lpWaveFormat);
200 wma->lpWaveFormat = 0;
202 memset(&wma->mah, 0, sizeof(wma->mah));
203 memset(&wma->ash_video, 0, sizeof(wma->ash_video));
204 memset(&wma->ash_audio, 0, sizeof(wma->ash_audio));
205 wma->dwCurrVideoFrame = wma->dwCurrAudioBlock = 0;
206 wma->dwCachedFrame = -1;
210 /***************************************************************************
211 * MCIAVI_mciOpen [internal]
213 static DWORD MCIAVI_mciOpen(UINT wDevID, DWORD dwFlags,
214 LPMCI_DGV_OPEN_PARMSW lpOpenParms)
216 WINE_MCIAVI *wma;
217 LRESULT dwRet = 0;
219 TRACE("(%04x, %08X, %p)\n", wDevID, dwFlags, lpOpenParms);
221 if (lpOpenParms == NULL) return MCIERR_NULL_PARAMETER_BLOCK;
223 wma = (WINE_MCIAVI *)mciGetDriverData(wDevID);
224 if (wma == NULL) return MCIERR_INVALID_DEVICE_ID;
226 EnterCriticalSection(&wma->cs);
228 if (wma->nUseCount > 0) {
229 /* The driver is already open on this channel */
230 /* If the driver was opened shareable before and this open specifies */
231 /* shareable then increment the use count */
232 if (wma->fShareable && (dwFlags & MCI_OPEN_SHAREABLE))
233 ++wma->nUseCount;
234 else
236 LeaveCriticalSection(&wma->cs);
237 return MCIERR_MUST_USE_SHAREABLE;
239 } else {
240 wma->nUseCount = 1;
241 wma->fShareable = dwFlags & MCI_OPEN_SHAREABLE;
244 wma->dwStatus = MCI_MODE_NOT_READY;
246 if (dwFlags & MCI_OPEN_ELEMENT) {
247 if (dwFlags & MCI_OPEN_ELEMENT_ID) {
248 /* could it be that (DWORD)lpOpenParms->lpstrElementName
249 * contains the hFile value ?
251 dwRet = MCIERR_UNRECOGNIZED_COMMAND;
252 } else if (lpOpenParms->lpstrElementName && lpOpenParms->lpstrElementName[0]) {
253 /* FIXME : what should be done id wma->hFile is already != 0, or the driver is playin' */
254 TRACE("MCI_OPEN_ELEMENT %s!\n", debugstr_w(lpOpenParms->lpstrElementName));
256 wma->lpFileName = HeapAlloc(GetProcessHeap(), 0, (strlenW(lpOpenParms->lpstrElementName) + 1) * sizeof(WCHAR));
257 strcpyW(wma->lpFileName, lpOpenParms->lpstrElementName);
259 if (lpOpenParms->lpstrElementName[0] == '@') {
260 /* The file name @11223344 encodes an AVIFile handle in decimal notation
261 * in Win3.1 and w2k/NT, but this feature is absent in win95 (KB140750).
262 * wma->hFile = LongToHandle(strtolW(lpOpenParms->lpstrElementName+1, NULL, 10)); */
263 FIXME("Using AVIFile/Stream %s NIY\n", debugstr_w(lpOpenParms->lpstrElementName));
265 wma->hFile = mmioOpenW(lpOpenParms->lpstrElementName, NULL,
266 MMIO_ALLOCBUF | MMIO_DENYWRITE | MMIO_READ);
268 if (wma->hFile == 0) {
269 WARN("can't find file=%s!\n", debugstr_w(lpOpenParms->lpstrElementName));
270 dwRet = MCIERR_FILE_NOT_FOUND;
271 } else {
272 if (!MCIAVI_GetInfo(wma))
273 dwRet = MCIERR_INVALID_FILE;
274 else if (!MCIAVI_OpenVideo(wma))
275 dwRet = MCIERR_CANNOT_LOAD_DRIVER;
276 else if (!MCIAVI_CreateWindow(wma, dwFlags, lpOpenParms))
277 dwRet = MCIERR_CREATEWINDOW;
279 } else {
280 FIXME("Don't record yet\n");
281 dwRet = MCIERR_UNSUPPORTED_FUNCTION;
285 if (dwRet == 0) {
286 TRACE("lpOpenParms->wDeviceID = %04x\n", lpOpenParms->wDeviceID);
288 wma->dwStatus = MCI_MODE_STOP;
289 wma->dwMciTimeFormat = MCI_FORMAT_FRAMES;
290 } else {
291 MCIAVI_CleanUp(wma);
294 LeaveCriticalSection(&wma->cs);
296 if (!dwRet && (dwFlags & MCI_NOTIFY)) {
297 mciDriverNotify(HWND_32(LOWORD(lpOpenParms->dwCallback)),
298 wDevID, MCI_NOTIFY_SUCCESSFUL);
300 return dwRet;
303 /***************************************************************************
304 * MCIAVI_mciClose [internal]
306 DWORD MCIAVI_mciClose(UINT wDevID, DWORD dwFlags, LPMCI_GENERIC_PARMS lpParms)
308 WINE_MCIAVI *wma;
309 DWORD dwRet = 0;
311 TRACE("(%04x, %08X, %p)\n", wDevID, dwFlags, lpParms);
313 wma = MCIAVI_mciGetOpenDev(wDevID);
314 if (wma == NULL) return MCIERR_INVALID_DEVICE_ID;
316 MCIAVI_mciStop(wDevID, MCI_WAIT, NULL);
318 EnterCriticalSection(&wma->cs);
320 if (wma->nUseCount == 1) {
321 MCIAVI_CleanUp(wma);
323 if ((dwFlags & MCI_NOTIFY) && lpParms) {
324 mciDriverNotify(HWND_32(LOWORD(lpParms->dwCallback)),
325 wDevID,
326 MCI_NOTIFY_SUCCESSFUL);
328 LeaveCriticalSection(&wma->cs);
329 return dwRet;
331 wma->nUseCount--;
333 LeaveCriticalSection(&wma->cs);
334 return dwRet;
337 static double currenttime_us(void)
339 LARGE_INTEGER lc, lf;
340 QueryPerformanceCounter(&lc);
341 QueryPerformanceFrequency(&lf);
342 return (lc.QuadPart * 1000000) / lf.QuadPart;
345 /***************************************************************************
346 * MCIAVI_player [internal]
348 static DWORD MCIAVI_player(WINE_MCIAVI *wma, DWORD dwFlags, LPMCI_PLAY_PARMS lpParms)
350 DWORD dwRet;
351 LPWAVEHDR waveHdr = NULL;
352 unsigned i, nHdr = 0;
353 DWORD numEvents = 1;
354 HANDLE events[2];
355 double next_frame_us;
356 BOOL wait_audio = TRUE;
358 EnterCriticalSection(&wma->cs);
360 if (wma->dwToVideoFrame <= wma->dwCurrVideoFrame)
362 dwRet = 0;
363 goto mci_play_done;
366 events[0] = wma->hStopEvent;
367 if (wma->lpWaveFormat) {
368 if (MCIAVI_OpenAudio(wma, &nHdr, &waveHdr) != 0)
370 /* can't play audio */
371 HeapFree(GetProcessHeap(), 0, wma->lpWaveFormat);
372 wma->lpWaveFormat = NULL;
374 else
376 /* fill the queue with as many wave headers as possible */
377 MCIAVI_PlayAudioBlocks(wma, nHdr, waveHdr);
378 events[1] = wma->hEvent;
379 numEvents = 2;
383 next_frame_us = currenttime_us();
384 while (wma->dwStatus == MCI_MODE_PLAY)
386 HDC hDC;
387 double tc, delta;
388 DWORD ret;
390 tc = currenttime_us();
392 hDC = wma->hWndPaint ? GetDC(wma->hWndPaint) : 0;
393 if (hDC)
395 while(next_frame_us <= tc && wma->dwCurrVideoFrame < wma->dwToVideoFrame){
396 double dur;
397 dur = MCIAVI_PaintFrame(wma, hDC);
398 ++wma->dwCurrVideoFrame;
399 if(!dur)
400 break;
401 next_frame_us += dur;
402 TRACE("next_frame: %f\n", next_frame_us);
404 ReleaseDC(wma->hWndPaint, hDC);
406 if (wma->dwCurrVideoFrame >= wma->dwToVideoFrame)
408 if (!(dwFlags & MCI_DGV_PLAY_REPEAT))
409 break;
410 TRACE("repeat media as requested\n");
411 wma->dwCurrVideoFrame = wma->dwCurrAudioBlock = 0;
414 if (wma->lpWaveFormat)
415 MCIAVI_PlayAudioBlocks(wma, nHdr, waveHdr);
417 tc = currenttime_us();
418 if (tc < next_frame_us)
419 delta = next_frame_us - tc;
420 else
421 delta = 0;
423 /* check if the playback was cancelled */
424 if ((wma->mci_break.flags & MCI_BREAK_KEY) &&
425 (GetAsyncKeyState(wma->mci_break.parms.nVirtKey) & 0x8000))
427 if (!(wma->mci_break.flags & MCI_BREAK_HWND) ||
428 GetForegroundWindow() == wma->mci_break.parms.hwndBreak)
430 /* we queue audio blocks ahead so ignore them otherwise the audio
431 * will keep playing until the buffer is empty */
432 wait_audio = FALSE;
434 TRACE("playback cancelled using break key\n");
435 break;
439 LeaveCriticalSection(&wma->cs);
440 ret = WaitForMultipleObjects(numEvents, events, FALSE, delta / 1000);
441 EnterCriticalSection(&wma->cs);
442 if (ret == WAIT_OBJECT_0 || wma->dwStatus != MCI_MODE_PLAY) break;
445 if (wma->lpWaveFormat)
447 if (wait_audio)
448 while (wma->dwEventCount != nHdr - 1)
450 LeaveCriticalSection(&wma->cs);
451 Sleep(100);
452 EnterCriticalSection(&wma->cs);
455 /* just to get rid of some race conditions between play, stop and pause */
456 LeaveCriticalSection(&wma->cs);
457 waveOutReset(wma->hWave);
458 EnterCriticalSection(&wma->cs);
460 for (i = 0; i < nHdr; i++)
461 waveOutUnprepareHeader(wma->hWave, &waveHdr[i], sizeof(WAVEHDR));
464 dwRet = 0;
466 if (wma->lpWaveFormat) {
467 HeapFree(GetProcessHeap(), 0, waveHdr);
469 if (wma->hWave) {
470 LeaveCriticalSection(&wma->cs);
471 waveOutClose(wma->hWave);
472 EnterCriticalSection(&wma->cs);
473 wma->hWave = 0;
475 CloseHandle(wma->hEvent);
478 mci_play_done:
479 wma->dwStatus = MCI_MODE_STOP;
481 if (dwFlags & MCI_NOTIFY) {
482 TRACE("MCI_NOTIFY_SUCCESSFUL %08lX !\n", lpParms->dwCallback);
483 mciDriverNotify(HWND_32(LOWORD(lpParms->dwCallback)),
484 wma->wDevID, MCI_NOTIFY_SUCCESSFUL);
486 LeaveCriticalSection(&wma->cs);
487 return dwRet;
490 struct MCIAVI_play_data
492 WINE_MCIAVI *wma;
493 DWORD flags;
494 MCI_PLAY_PARMS params; /* FIXME: notify via wma->hCallback like the other MCI drivers */
498 * MCIAVI_mciPlay_thread
500 * FIXME: probably should use a common worker thread created at the driver
501 * load time and queue all async commands to it.
503 static DWORD WINAPI MCIAVI_mciPlay_thread(LPVOID arg)
505 struct MCIAVI_play_data *data = (struct MCIAVI_play_data *)arg;
506 DWORD ret;
508 TRACE("In thread before async play command (id %u, flags %08x)\n", data->wma->wDevID, data->flags);
509 ret = MCIAVI_player(data->wma, data->flags, &data->params);
510 TRACE("In thread after async play command (id %u, flags %08x)\n", data->wma->wDevID, data->flags);
512 HeapFree(GetProcessHeap(), 0, data);
513 return ret;
517 * MCIAVI_mciPlay_async
519 static DWORD MCIAVI_mciPlay_async(WINE_MCIAVI *wma, DWORD dwFlags, LPMCI_PLAY_PARMS lpParams)
521 HANDLE handle;
522 struct MCIAVI_play_data *data = HeapAlloc(GetProcessHeap(), 0, sizeof(struct MCIAVI_play_data));
524 if (!data) return MCIERR_OUT_OF_MEMORY;
526 data->wma = wma;
527 data->flags = dwFlags;
528 if (dwFlags & MCI_NOTIFY)
529 data->params.dwCallback = lpParams->dwCallback;
531 if (!(handle = CreateThread(NULL, 0, MCIAVI_mciPlay_thread, data, 0, NULL)))
533 WARN("Couldn't create thread for async play, playing synchronously\n");
534 return MCIAVI_mciPlay_thread(data);
536 SetThreadPriority(handle, THREAD_PRIORITY_TIME_CRITICAL);
537 CloseHandle(handle);
538 return 0;
541 /***************************************************************************
542 * MCIAVI_mciPlay [internal]
544 static DWORD MCIAVI_mciPlay(UINT wDevID, DWORD dwFlags, LPMCI_PLAY_PARMS lpParms)
546 WINE_MCIAVI *wma;
547 DWORD dwRet;
548 DWORD dwFromFrame, dwToFrame;
550 TRACE("(%04x, %08X, %p)\n", wDevID, dwFlags, lpParms);
552 if (lpParms == NULL) return MCIERR_NULL_PARAMETER_BLOCK;
554 wma = MCIAVI_mciGetOpenDev(wDevID);
555 if (wma == NULL) return MCIERR_INVALID_DEVICE_ID;
556 if (dwFlags & MCI_DGV_PLAY_REVERSE) return MCIERR_UNSUPPORTED_FUNCTION;
557 if (dwFlags & MCI_TEST) return 0;
559 if (dwFlags & (MCI_MCIAVI_PLAY_WINDOW|MCI_MCIAVI_PLAY_FULLSCREEN|MCI_MCIAVI_PLAY_FULLBY2))
560 FIXME("Unsupported flag %08x\n", dwFlags);
562 EnterCriticalSection(&wma->cs);
564 if (!wma->hFile)
566 LeaveCriticalSection(&wma->cs);
567 return MCIERR_FILE_NOT_FOUND;
569 if (!wma->hWndPaint)
571 LeaveCriticalSection(&wma->cs);
572 return MCIERR_NO_WINDOW;
575 dwFromFrame = wma->dwCurrVideoFrame;
576 dwToFrame = wma->dwPlayableVideoFrames - 1;
578 if (dwFlags & MCI_FROM) {
579 dwFromFrame = MCIAVI_ConvertTimeFormatToFrame(wma, lpParms->dwFrom);
581 if (dwFlags & MCI_TO) {
582 dwToFrame = MCIAVI_ConvertTimeFormatToFrame(wma, lpParms->dwTo);
584 if (dwToFrame >= wma->dwPlayableVideoFrames)
585 dwToFrame = wma->dwPlayableVideoFrames - 1;
587 TRACE("Playing from frame=%u to frame=%u\n", dwFromFrame, dwToFrame);
589 wma->dwCurrVideoFrame = dwFromFrame;
590 wma->dwToVideoFrame = dwToFrame;
592 LeaveCriticalSection(&wma->cs);
594 if (!(GetWindowLongW(wma->hWndPaint, GWL_STYLE) & WS_VISIBLE))
595 ShowWindow(wma->hWndPaint, SW_SHOWNA);
597 EnterCriticalSection(&wma->cs);
599 /* if already playing exit */
600 if (wma->dwStatus == MCI_MODE_PLAY)
602 LeaveCriticalSection(&wma->cs);
603 return 0;
606 wma->dwStatus = MCI_MODE_PLAY;
608 LeaveCriticalSection(&wma->cs);
610 if (dwFlags & MCI_WAIT)
611 return MCIAVI_player(wma, dwFlags, lpParms);
613 dwRet = MCIAVI_mciPlay_async(wma, dwFlags, lpParms);
615 if (dwRet) {
616 EnterCriticalSection(&wma->cs);
617 wma->dwStatus = MCI_MODE_STOP;
618 LeaveCriticalSection(&wma->cs);
620 return dwRet;
623 /***************************************************************************
624 * MCIAVI_mciStop [internal]
626 static DWORD MCIAVI_mciStop(UINT wDevID, DWORD dwFlags, LPMCI_GENERIC_PARMS lpParms)
628 WINE_MCIAVI *wma;
629 DWORD dwRet = 0;
631 TRACE("(%04x, %08X, %p)\n", wDevID, dwFlags, lpParms);
633 wma = MCIAVI_mciGetOpenDev(wDevID);
634 if (wma == NULL) return MCIERR_INVALID_DEVICE_ID;
635 if (dwFlags & MCI_TEST) return 0;
637 EnterCriticalSection(&wma->cs);
639 TRACE("current status %04x\n", wma->dwStatus);
641 switch (wma->dwStatus) {
642 case MCI_MODE_PLAY:
643 case MCI_MODE_RECORD:
644 LeaveCriticalSection(&wma->cs);
645 SetEvent(wma->hStopEvent);
646 EnterCriticalSection(&wma->cs);
647 /* fall through */
648 case MCI_MODE_PAUSE:
649 /* Since our wave notification callback takes the lock,
650 * we must release it before resetting the device */
651 LeaveCriticalSection(&wma->cs);
652 dwRet = waveOutReset(wma->hWave);
653 EnterCriticalSection(&wma->cs);
654 /* fall through */
655 default:
656 do /* one more chance for an async thread to finish */
658 LeaveCriticalSection(&wma->cs);
659 Sleep(10);
660 EnterCriticalSection(&wma->cs);
661 } while (wma->dwStatus != MCI_MODE_STOP);
663 break;
665 case MCI_MODE_NOT_READY:
666 break;
669 if ((dwFlags & MCI_NOTIFY) && lpParms) {
670 mciDriverNotify(HWND_32(LOWORD(lpParms->dwCallback)),
671 wDevID, MCI_NOTIFY_SUCCESSFUL);
673 LeaveCriticalSection(&wma->cs);
674 return dwRet;
677 /***************************************************************************
678 * MCIAVI_mciPause [internal]
680 static DWORD MCIAVI_mciPause(UINT wDevID, DWORD dwFlags, LPMCI_GENERIC_PARMS lpParms)
682 WINE_MCIAVI *wma;
684 TRACE("(%04x, %08X, %p)\n", wDevID, dwFlags, lpParms);
686 wma = MCIAVI_mciGetOpenDev(wDevID);
687 if (wma == NULL) return MCIERR_INVALID_DEVICE_ID;
688 if (dwFlags & MCI_TEST) return 0;
690 EnterCriticalSection(&wma->cs);
692 if (wma->dwStatus == MCI_MODE_PLAY)
693 wma->dwStatus = MCI_MODE_PAUSE;
695 if (wma->lpWaveFormat) {
696 LeaveCriticalSection(&wma->cs);
697 return waveOutPause(wma->hWave);
700 LeaveCriticalSection(&wma->cs);
701 return 0;
704 /***************************************************************************
705 * MCIAVI_mciResume [internal]
707 static DWORD MCIAVI_mciResume(UINT wDevID, DWORD dwFlags, LPMCI_GENERIC_PARMS lpParms)
709 WINE_MCIAVI *wma;
711 TRACE("(%04x, %08X, %p)\n", wDevID, dwFlags, lpParms);
713 wma = MCIAVI_mciGetOpenDev(wDevID);
714 if (wma == NULL) return MCIERR_INVALID_DEVICE_ID;
715 if (dwFlags & MCI_TEST) return 0;
717 EnterCriticalSection(&wma->cs);
719 if (wma->dwStatus == MCI_MODE_PAUSE)
720 wma->dwStatus = MCI_MODE_PLAY;
722 if (wma->lpWaveFormat) {
723 LeaveCriticalSection(&wma->cs);
724 return waveOutRestart(wma->hWave);
727 LeaveCriticalSection(&wma->cs);
728 return 0;
731 /***************************************************************************
732 * MCIAVI_mciSeek [internal]
734 static DWORD MCIAVI_mciSeek(UINT wDevID, DWORD dwFlags, LPMCI_SEEK_PARMS lpParms)
736 WINE_MCIAVI *wma;
737 DWORD position;
739 TRACE("(%04x, %08X, %p)\n", wDevID, dwFlags, lpParms);
741 if (lpParms == NULL) return MCIERR_NULL_PARAMETER_BLOCK;
743 wma = MCIAVI_mciGetOpenDev(wDevID);
744 if (wma == NULL) return MCIERR_INVALID_DEVICE_ID;
746 position = dwFlags & (MCI_SEEK_TO_START|MCI_SEEK_TO_END|MCI_TO);
747 if (!position) return MCIERR_MISSING_PARAMETER;
748 if (position&(position-1)) return MCIERR_FLAGS_NOT_COMPATIBLE;
750 if (dwFlags & MCI_TO) {
751 position = MCIAVI_ConvertTimeFormatToFrame(wma, lpParms->dwTo);
752 if (position >= wma->dwPlayableVideoFrames)
753 return MCIERR_OUTOFRANGE;
754 } else if (dwFlags & MCI_SEEK_TO_START) {
755 position = 0;
756 } else {
757 position = wma->dwPlayableVideoFrames - 1;
759 if (dwFlags & MCI_TEST) return 0;
761 MCIAVI_mciStop(wDevID, MCI_WAIT, NULL);
763 EnterCriticalSection(&wma->cs);
765 wma->dwCurrVideoFrame = position;
766 TRACE("Seeking to frame=%u\n", wma->dwCurrVideoFrame);
768 if (dwFlags & MCI_NOTIFY) {
769 mciDriverNotify(HWND_32(LOWORD(lpParms->dwCallback)),
770 wDevID, MCI_NOTIFY_SUCCESSFUL);
772 LeaveCriticalSection(&wma->cs);
773 return 0;
776 /*****************************************************************************
777 * MCIAVI_mciLoad [internal]
779 static DWORD MCIAVI_mciLoad(UINT wDevID, DWORD dwFlags, LPMCI_DGV_LOAD_PARMSW lpParms)
781 WINE_MCIAVI *wma;
783 FIXME("(%04x, %08x, %p) : stub\n", wDevID, dwFlags, lpParms);
785 if (lpParms == NULL) return MCIERR_NULL_PARAMETER_BLOCK;
787 wma = MCIAVI_mciGetOpenDev(wDevID);
788 if (wma == NULL) return MCIERR_INVALID_DEVICE_ID;
790 return MCIERR_UNSUPPORTED_FUNCTION; /* like w2k */
793 /******************************************************************************
794 * MCIAVI_mciRealize [internal]
796 static DWORD MCIAVI_mciRealize(UINT wDevID, DWORD dwFlags, LPMCI_GENERIC_PARMS lpParms)
798 WINE_MCIAVI *wma;
800 FIXME("(%04x, %08x, %p) : stub\n", wDevID, dwFlags, lpParms);
802 if (lpParms == NULL) return MCIERR_NULL_PARAMETER_BLOCK;
804 wma = MCIAVI_mciGetOpenDev(wDevID);
805 if (wma == NULL) return MCIERR_INVALID_DEVICE_ID;
806 if (dwFlags & MCI_TEST) return 0;
808 return 0;
811 /******************************************************************************
812 * MCIAVI_mciUpdate [internal]
814 static DWORD MCIAVI_mciUpdate(UINT wDevID, DWORD dwFlags, LPMCI_DGV_UPDATE_PARMS lpParms)
816 WINE_MCIAVI *wma;
818 TRACE("%04x, %08x, %p\n", wDevID, dwFlags, lpParms);
820 if (lpParms == NULL) return MCIERR_NULL_PARAMETER_BLOCK;
822 wma = MCIAVI_mciGetOpenDev(wDevID);
823 if (wma == NULL) return MCIERR_INVALID_DEVICE_ID;
824 /* Ignore MCI_TEST flag. */
826 EnterCriticalSection(&wma->cs);
828 if (dwFlags & MCI_DGV_UPDATE_HDC)
829 MCIAVI_PaintFrame(wma, lpParms->hDC);
831 LeaveCriticalSection(&wma->cs);
833 return 0;
836 /******************************************************************************
837 * MCIAVI_mciStep [internal]
839 static DWORD MCIAVI_mciStep(UINT wDevID, DWORD dwFlags, LPMCI_DGV_STEP_PARMS lpParms)
841 WINE_MCIAVI *wma;
842 DWORD position;
843 int delta = 1;
845 TRACE("(%04x, %08x, %p)\n", wDevID, dwFlags, lpParms);
847 if (lpParms == NULL) return MCIERR_NULL_PARAMETER_BLOCK;
849 wma = MCIAVI_mciGetOpenDev(wDevID);
850 if (wma == NULL) return MCIERR_INVALID_DEVICE_ID;
852 if (dwFlags & MCI_DGV_STEP_FRAMES) delta = lpParms->dwFrames;
853 if (dwFlags & MCI_DGV_STEP_REVERSE) delta = -delta;
854 position = wma->dwCurrVideoFrame + delta;
855 if (position >= wma->dwPlayableVideoFrames) return MCIERR_OUTOFRANGE;
856 if (dwFlags & MCI_TEST) return 0;
858 MCIAVI_mciStop(wDevID, MCI_WAIT, NULL);
860 EnterCriticalSection(&wma->cs);
862 wma->dwCurrVideoFrame = position;
863 TRACE("Stepping to frame=%u\n", wma->dwCurrVideoFrame);
865 if (dwFlags & MCI_NOTIFY) {
866 mciDriverNotify(HWND_32(LOWORD(lpParms->dwCallback)),
867 wDevID, MCI_NOTIFY_SUCCESSFUL);
869 LeaveCriticalSection(&wma->cs);
870 return 0;
873 /******************************************************************************
874 * MCIAVI_mciCue [internal]
876 static DWORD MCIAVI_mciCue(UINT wDevID, DWORD dwFlags, LPMCI_DGV_CUE_PARMS lpParms)
878 WINE_MCIAVI *wma;
880 FIXME("(%04x, %08x, %p) : stub\n", wDevID, dwFlags, lpParms);
882 if (lpParms == NULL) return MCIERR_NULL_PARAMETER_BLOCK;
884 wma = MCIAVI_mciGetOpenDev(wDevID);
885 if (wma == NULL) return MCIERR_INVALID_DEVICE_ID;
886 if (dwFlags & MCI_DGV_CUE_INPUT) return MCIERR_UNSUPPORTED_FUNCTION;
887 if (dwFlags & MCI_TEST) return 0;
889 return 0;
892 /******************************************************************************
893 * MCIAVI_mciBreak [internal]
895 static DWORD MCIAVI_mciBreak(UINT wDevID, DWORD dwFlags, LPMCI_BREAK_PARMS lpParms)
897 WINE_MCIAVI *wma;
899 TRACE("(%04x, %08x, %p)\n", wDevID, dwFlags, lpParms);
901 if (lpParms == NULL) return MCIERR_NULL_PARAMETER_BLOCK;
903 wma = MCIAVI_mciGetOpenDev(wDevID);
904 if (wma == NULL) return MCIERR_INVALID_DEVICE_ID;
906 EnterCriticalSection(&wma->cs);
908 wma->mci_break.flags = dwFlags;
909 wma->mci_break.parms = *lpParms;
911 LeaveCriticalSection(&wma->cs);
913 return 0;
916 /******************************************************************************
917 * MCIAVI_mciSetAudio [internal]
919 static DWORD MCIAVI_mciSetAudio(UINT wDevID, DWORD dwFlags, LPMCI_DGV_SETAUDIO_PARMSW lpParms)
921 WINE_MCIAVI *wma;
923 if (lpParms == NULL) return MCIERR_NULL_PARAMETER_BLOCK;
925 FIXME("(%04x, %08x, %p) Item %04x: stub\n", wDevID, dwFlags, lpParms, dwFlags & MCI_DGV_SETAUDIO_ITEM ? lpParms->dwItem : 0);
927 wma = MCIAVI_mciGetOpenDev(wDevID);
928 if (wma == NULL) return MCIERR_INVALID_DEVICE_ID;
930 return 0;
933 /******************************************************************************
934 * MCIAVI_mciSignal [internal]
936 static DWORD MCIAVI_mciSignal(UINT wDevID, DWORD dwFlags, LPMCI_DGV_SIGNAL_PARMS lpParms)
938 WINE_MCIAVI *wma;
940 FIXME("(%04x, %08x, %p) : stub\n", wDevID, dwFlags, lpParms);
942 if (lpParms == NULL) return MCIERR_NULL_PARAMETER_BLOCK;
944 wma = MCIAVI_mciGetOpenDev(wDevID);
945 if (wma == NULL) return MCIERR_INVALID_DEVICE_ID;
947 return 0;
950 /******************************************************************************
951 * MCIAVI_mciSetVideo [internal]
953 static DWORD MCIAVI_mciSetVideo(UINT wDevID, DWORD dwFlags, LPMCI_DGV_SETVIDEO_PARMSW lpParms)
955 WINE_MCIAVI *wma;
957 if (lpParms == NULL) return MCIERR_NULL_PARAMETER_BLOCK;
959 FIXME("(%04x, %08x, %p) Item %04x: stub\n", wDevID, dwFlags, lpParms, dwFlags & MCI_DGV_SETVIDEO_ITEM ? lpParms->dwItem : 0);
961 wma = MCIAVI_mciGetOpenDev(wDevID);
962 if (wma == NULL) return MCIERR_INVALID_DEVICE_ID;
964 return 0;
967 /******************************************************************************
968 * MCIAVI_mciConfigure [internal]
970 static DWORD MCIAVI_mciConfigure(UINT wDevID, DWORD dwFlags, LPMCI_GENERIC_PARMS lpParms)
972 WINE_MCIAVI *wma;
974 FIXME("(%04x, %08x, %p) : stub\n", wDevID, dwFlags, lpParms);
976 if (lpParms == NULL) return MCIERR_NULL_PARAMETER_BLOCK;
978 wma = MCIAVI_mciGetOpenDev(wDevID);
979 if (wma == NULL) return MCIERR_INVALID_DEVICE_ID;
980 if (dwFlags & MCI_TEST) return 0;
982 return 0;
985 /*======================================================================*
986 * MCI AVI entry points *
987 *======================================================================*/
989 /**************************************************************************
990 * DriverProc (MCIAVI.@)
992 LRESULT CALLBACK MCIAVI_DriverProc(DWORD_PTR dwDevID, HDRVR hDriv, UINT wMsg,
993 LPARAM dwParam1, LPARAM dwParam2)
995 TRACE("(%08lX, %p, %08X, %08lX, %08lX)\n",
996 dwDevID, hDriv, wMsg, dwParam1, dwParam2);
998 switch (wMsg) {
999 case DRV_LOAD: return 1;
1000 case DRV_FREE: return 1;
1001 case DRV_OPEN: return MCIAVI_drvOpen((LPCWSTR)dwParam1, (LPMCI_OPEN_DRIVER_PARMSW)dwParam2);
1002 case DRV_CLOSE: return MCIAVI_drvClose(dwDevID);
1003 case DRV_ENABLE: return 1;
1004 case DRV_DISABLE: return 1;
1005 case DRV_QUERYCONFIGURE: return 1;
1006 case DRV_CONFIGURE: return MCIAVI_drvConfigure(dwDevID);
1007 case DRV_INSTALL: return DRVCNF_RESTART;
1008 case DRV_REMOVE: return DRVCNF_RESTART;
1011 /* session instance */
1012 if (dwDevID == 0xFFFFFFFF) return 1;
1014 switch (wMsg) {
1015 case MCI_OPEN_DRIVER: return MCIAVI_mciOpen (dwDevID, dwParam1, (LPMCI_DGV_OPEN_PARMSW) dwParam2);
1016 case MCI_CLOSE_DRIVER: return MCIAVI_mciClose (dwDevID, dwParam1, (LPMCI_GENERIC_PARMS) dwParam2);
1017 case MCI_PLAY: return MCIAVI_mciPlay (dwDevID, dwParam1, (LPMCI_PLAY_PARMS) dwParam2);
1018 case MCI_STOP: return MCIAVI_mciStop (dwDevID, dwParam1, (LPMCI_GENERIC_PARMS) dwParam2);
1019 case MCI_SET: return MCIAVI_mciSet (dwDevID, dwParam1, (LPMCI_DGV_SET_PARMS) dwParam2);
1020 case MCI_PAUSE: return MCIAVI_mciPause (dwDevID, dwParam1, (LPMCI_GENERIC_PARMS) dwParam2);
1021 case MCI_RESUME: return MCIAVI_mciResume (dwDevID, dwParam1, (LPMCI_GENERIC_PARMS) dwParam2);
1022 case MCI_STATUS: return MCIAVI_mciStatus (dwDevID, dwParam1, (LPMCI_DGV_STATUS_PARMSW) dwParam2);
1023 case MCI_GETDEVCAPS: return MCIAVI_mciGetDevCaps(dwDevID, dwParam1, (LPMCI_GETDEVCAPS_PARMS) dwParam2);
1024 case MCI_INFO: return MCIAVI_mciInfo (dwDevID, dwParam1, (LPMCI_DGV_INFO_PARMSW) dwParam2);
1025 case MCI_SEEK: return MCIAVI_mciSeek (dwDevID, dwParam1, (LPMCI_SEEK_PARMS) dwParam2);
1026 case MCI_PUT: return MCIAVI_mciPut (dwDevID, dwParam1, (LPMCI_DGV_PUT_PARMS) dwParam2);
1027 case MCI_WINDOW: return MCIAVI_mciWindow (dwDevID, dwParam1, (LPMCI_DGV_WINDOW_PARMSW) dwParam2);
1028 case MCI_LOAD: return MCIAVI_mciLoad (dwDevID, dwParam1, (LPMCI_DGV_LOAD_PARMSW) dwParam2);
1029 case MCI_REALIZE: return MCIAVI_mciRealize (dwDevID, dwParam1, (LPMCI_GENERIC_PARMS) dwParam2);
1030 case MCI_UPDATE: return MCIAVI_mciUpdate (dwDevID, dwParam1, (LPMCI_DGV_UPDATE_PARMS) dwParam2);
1031 case MCI_WHERE: return MCIAVI_mciWhere (dwDevID, dwParam1, (LPMCI_DGV_RECT_PARMS) dwParam2);
1032 case MCI_STEP: return MCIAVI_mciStep (dwDevID, dwParam1, (LPMCI_DGV_STEP_PARMS) dwParam2);
1033 case MCI_CUE: return MCIAVI_mciCue (dwDevID, dwParam1, (LPMCI_DGV_CUE_PARMS) dwParam2);
1034 case MCI_BREAK: return MCIAVI_mciBreak (dwDevID, dwParam1, (LPMCI_BREAK_PARMS) dwParam2);
1035 /* Digital Video specific */
1036 case MCI_SETAUDIO: return MCIAVI_mciSetAudio (dwDevID, dwParam1, (LPMCI_DGV_SETAUDIO_PARMSW) dwParam2);
1037 case MCI_SIGNAL: return MCIAVI_mciSignal (dwDevID, dwParam1, (LPMCI_DGV_SIGNAL_PARMS) dwParam2);
1038 case MCI_SETVIDEO: return MCIAVI_mciSetVideo (dwDevID, dwParam1, (LPMCI_DGV_SETVIDEO_PARMSW) dwParam2);
1039 case MCI_CONFIGURE: return MCIAVI_mciConfigure (dwDevID, dwParam1, (LPMCI_GENERIC_PARMS) dwParam2);
1041 /* no editing, recording, saving, locking without inputs */
1042 case MCI_CAPTURE:
1043 case MCI_COPY:
1044 case MCI_CUT:
1045 case MCI_DELETE:
1046 case MCI_FREEZE:
1047 case MCI_LIST:
1048 case MCI_MONITOR:
1049 case MCI_PASTE:
1050 case MCI_QUALITY:
1051 case MCI_RECORD:
1052 case MCI_RESERVE:
1053 case MCI_RESTORE:
1054 case MCI_SAVE:
1055 case MCI_UNDO:
1056 case MCI_UNFREEZE:
1057 TRACE("Unsupported function [0x%x] flags=%08x\n", wMsg, (DWORD)dwParam1);
1058 return MCIERR_UNSUPPORTED_FUNCTION;
1059 case MCI_SPIN:
1060 case MCI_ESCAPE:
1061 WARN("Unsupported command [0x%x] %08x\n", wMsg, (DWORD)dwParam1);
1062 break;
1063 case MCI_OPEN:
1064 case MCI_CLOSE:
1065 FIXME("Shouldn't receive a MCI_OPEN or CLOSE message\n");
1066 break;
1067 default:
1068 TRACE("Sending msg [%u] to default driver proc\n", wMsg);
1069 return DefDriverProc(dwDevID, hDriv, wMsg, dwParam1, dwParam2);
1071 return MCIERR_UNRECOGNIZED_COMMAND;