mciqtz32: Remove individual queryinterfaces.

This commit is contained in:
Maarten Lankhorst 2010-06-03 21:08:15 +02:00 committed by Alexandre Julliard
parent 864aa6103f
commit 7737c0ad66
2 changed files with 93 additions and 143 deletions

View File

@ -145,8 +145,8 @@ static DWORD MCIQTZ_mciOpen(UINT wDevID, DWORD dwFlags,
{ {
WINE_MCIQTZ* wma; WINE_MCIQTZ* wma;
HRESULT hr; HRESULT hr;
IBasicVideo *vidbasic; DWORD style = 0;
IVideoWindow *vidwin; RECT rc = { 0, 0, 0, 0 };
TRACE("(%04x, %08X, %p)\n", wDevID, dwFlags, lpOpenParms); TRACE("(%04x, %08X, %p)\n", wDevID, dwFlags, lpOpenParms);
@ -174,6 +174,24 @@ static DWORD MCIQTZ_mciOpen(UINT wDevID, DWORD dwFlags,
goto err; goto err;
} }
hr = IGraphBuilder_QueryInterface(wma->pgraph, &IID_IMediaSeeking, (void**)&wma->seek);
if (FAILED(hr)) {
TRACE("Cannot get IMediaSeeking interface (hr = %x)\n", hr);
goto err;
}
hr = IGraphBuilder_QueryInterface(wma->pgraph, &IID_IVideoWindow, (void**)&wma->vidwin);
if (FAILED(hr)) {
TRACE("Cannot get IVideoWindow interface (hr = %x)\n", hr);
goto err;
}
hr = IGraphBuilder_QueryInterface(wma->pgraph, &IID_IBasicVideo, (void**)&wma->vidbasic);
if (FAILED(hr)) {
TRACE("Cannot get IBasicVideo interface (hr = %x)\n", hr);
goto err;
}
if (!(dwFlags & MCI_OPEN_ELEMENT) || (dwFlags & MCI_OPEN_ELEMENT_ID)) { if (!(dwFlags & MCI_OPEN_ELEMENT) || (dwFlags & MCI_OPEN_ELEMENT_ID)) {
TRACE("Wrong dwFlags %x\n", dwFlags); TRACE("Wrong dwFlags %x\n", dwFlags);
goto err; goto err;
@ -192,33 +210,21 @@ static DWORD MCIQTZ_mciOpen(UINT wDevID, DWORD dwFlags,
goto err; goto err;
} }
hr = IFilterGraph2_QueryInterface(wma->pgraph, &IID_IVideoWindow, (void**)&vidwin); IVideoWindow_put_AutoShow(wma->vidwin, OAFALSE);
if (SUCCEEDED(hr)) IVideoWindow_put_Visible(wma->vidwin, OAFALSE);
hr = IFilterGraph2_QueryInterface(wma->pgraph, &IID_IBasicVideo, (void**)&vidbasic); if (dwFlags & MCI_DGV_OPEN_WS)
if (SUCCEEDED(hr)) { style = lpOpenParms->dwStyle;
DWORD style; if (dwFlags & MCI_DGV_OPEN_PARENT) {
RECT rc = { 0, 0, 0, 0 }; IVideoWindow_put_MessageDrain(wma->vidwin, (OAHWND)lpOpenParms->hWndParent);
IVideoWindow_put_AutoShow(vidwin, OAFALSE); IVideoWindow_put_WindowState(wma->vidwin, SW_HIDE);
IVideoWindow_put_Visible(vidwin, OAFALSE); IVideoWindow_put_WindowStyle(wma->vidwin, style|WS_CHILD);
style = 0; IVideoWindow_put_Owner(wma->vidwin, (OAHWND)lpOpenParms->hWndParent);
if (dwFlags & MCI_DGV_OPEN_WS) GetClientRect(lpOpenParms->hWndParent, &rc);
style |= lpOpenParms->dwStyle; IVideoWindow_SetWindowPosition(wma->vidwin, rc.left, rc.top, rc.right - rc.top, rc.bottom - rc.top);
if (dwFlags & MCI_DGV_OPEN_PARENT) { wma->parent = (HWND)lpOpenParms->hWndParent;
IVideoWindow_put_MessageDrain(vidwin, (OAHWND)lpOpenParms->hWndParent);
IVideoWindow_put_WindowState(vidwin, SW_HIDE);
IVideoWindow_put_WindowStyle(vidwin, WS_CHILD);
IVideoWindow_put_Owner(vidwin, (OAHWND)lpOpenParms->hWndParent);
wma->parent = (HWND)lpOpenParms->hWndParent;
}
else if (style)
IVideoWindow_put_WindowStyle(vidwin, style);
IBasicVideo_GetVideoSize(vidbasic, &rc.right, &rc.bottom);
IVideoWindow_SetWindowPosition(vidwin, rc.left, rc.top, rc.right, rc.bottom);
IBasicVideo_Release(vidbasic);
} }
if (vidwin) else if (style)
IVideoWindow_Release(vidwin); IVideoWindow_put_WindowStyle(wma->vidwin, style);
wma->opened = TRUE; wma->opened = TRUE;
if (dwFlags & MCI_NOTIFY) if (dwFlags & MCI_NOTIFY)
@ -227,6 +233,15 @@ static DWORD MCIQTZ_mciOpen(UINT wDevID, DWORD dwFlags,
return 0; return 0;
err: err:
if (wma->vidbasic)
IUnknown_Release(wma->vidbasic);
wma->vidbasic = NULL;
if (wma->seek)
IUnknown_Release(wma->seek);
wma->seek = NULL;
if (wma->vidwin)
IUnknown_Release(wma->vidwin);
wma->vidwin = NULL;
if (wma->pgraph) if (wma->pgraph)
IGraphBuilder_Release(wma->pgraph); IGraphBuilder_Release(wma->pgraph);
wma->pgraph = NULL; wma->pgraph = NULL;
@ -256,6 +271,9 @@ static DWORD MCIQTZ_mciClose(UINT wDevID, DWORD dwFlags, LPMCI_GENERIC_PARMS lpP
MCIQTZ_mciStop(wDevID, MCI_WAIT, NULL); MCIQTZ_mciStop(wDevID, MCI_WAIT, NULL);
if (wma->opened) { if (wma->opened) {
IUnknown_Release(wma->vidwin);
IUnknown_Release(wma->vidbasic);
IUnknown_Release(wma->seek);
IGraphBuilder_Release(wma->pgraph); IGraphBuilder_Release(wma->pgraph);
IMediaControl_Release(wma->pmctrl); IMediaControl_Release(wma->pmctrl);
if (wma->uninit) if (wma->uninit)
@ -289,14 +307,8 @@ static DWORD MCIQTZ_mciPlay(UINT wDevID, DWORD dwFlags, LPMCI_PLAY_PARMS lpParms
return MCIERR_INTERNAL; return MCIERR_INTERNAL;
} }
if (!wma->parent) { if (!wma->parent)
IVideoWindow *vidwin; IVideoWindow_put_Visible(wma->vidwin, OATRUE);
IFilterGraph2_QueryInterface(wma->pgraph, &IID_IVideoWindow, (void**)&vidwin);
if (vidwin) {
IVideoWindow_put_Visible(vidwin, OATRUE);
IVideoWindow_Release(vidwin);
}
}
return 0; return 0;
} }
@ -308,7 +320,6 @@ static DWORD MCIQTZ_mciSeek(UINT wDevID, DWORD dwFlags, LPMCI_SEEK_PARMS lpParms
{ {
WINE_MCIQTZ* wma; WINE_MCIQTZ* wma;
HRESULT hr; HRESULT hr;
IMediaPosition* pmpos;
LONGLONG newpos; LONGLONG newpos;
TRACE("(%04x, %08X, %p)\n", wDevID, dwFlags, lpParms); TRACE("(%04x, %08X, %p)\n", wDevID, dwFlags, lpParms);
@ -335,21 +346,12 @@ static DWORD MCIQTZ_mciSeek(UINT wDevID, DWORD dwFlags, LPMCI_SEEK_PARMS lpParms
return MCIERR_MISSING_PARAMETER; return MCIERR_MISSING_PARAMETER;
} }
hr = IGraphBuilder_QueryInterface(wma->pgraph, &IID_IMediaPosition, (LPVOID*)&pmpos); hr = IMediaSeeking_SetPositions(wma->seek, &newpos, AM_SEEKING_AbsolutePositioning, NULL, AM_SEEKING_NoPositioning);
if (FAILED(hr)) {
FIXME("Cannot get IMediaPostion interface (hr = %x)\n", hr);
return MCIERR_INTERNAL;
}
hr = IMediaPosition_put_CurrentPosition(pmpos, newpos);
if (FAILED(hr)) { if (FAILED(hr)) {
FIXME("Cannot set position (hr = %x)\n", hr); FIXME("Cannot set position (hr = %x)\n", hr);
IMediaPosition_Release(pmpos);
return MCIERR_INTERNAL; return MCIERR_INTERNAL;
} }
IMediaPosition_Release(pmpos);
if (dwFlags & MCI_NOTIFY) if (dwFlags & MCI_NOTIFY)
mciDriverNotify(HWND_32(LOWORD(lpParms->dwCallback)), wDevID, MCI_NOTIFY_SUCCESSFUL); mciDriverNotify(HWND_32(LOWORD(lpParms->dwCallback)), wDevID, MCI_NOTIFY_SUCCESSFUL);
@ -379,14 +381,8 @@ static DWORD MCIQTZ_mciStop(UINT wDevID, DWORD dwFlags, LPMCI_GENERIC_PARMS lpPa
return MCIERR_INTERNAL; return MCIERR_INTERNAL;
} }
if (!wma->parent) { if (!wma->parent)
IVideoWindow *vidwin; IVideoWindow_put_Visible(wma->vidwin, OAFALSE);
IFilterGraph2_QueryInterface(wma->pgraph, &IID_IVideoWindow, (void**)&vidwin);
if (vidwin) {
IVideoWindow_put_Visible(vidwin, OAFALSE);
IVideoWindow_Release(vidwin);
}
}
return 0; return 0;
} }
@ -592,7 +588,6 @@ static DWORD MCIQTZ_mciStatus(UINT wDevID, DWORD dwFlags, LPMCI_DGV_STATUS_PARMS
switch (lpParms->dwItem) { switch (lpParms->dwItem) {
case MCI_STATUS_LENGTH: { case MCI_STATUS_LENGTH: {
IMediaSeeking *seek;
LONGLONG duration = -1; LONGLONG duration = -1;
GUID format; GUID format;
switch (wma->time_format) { switch (wma->time_format) {
@ -600,20 +595,13 @@ static DWORD MCIQTZ_mciStatus(UINT wDevID, DWORD dwFlags, LPMCI_DGV_STATUS_PARMS
case MCI_FORMAT_FRAMES: format = TIME_FORMAT_FRAME; break; case MCI_FORMAT_FRAMES: format = TIME_FORMAT_FRAME; break;
default: ERR("Unhandled format %x\n", wma->time_format); break; default: ERR("Unhandled format %x\n", wma->time_format); break;
} }
hr = IGraphBuilder_QueryInterface(wma->pgraph, &IID_IMediaSeeking, (void**)&seek); hr = IMediaSeeking_SetTimeFormat(wma->seek, &format);
if (FAILED(hr)) { if (FAILED(hr)) {
FIXME("Cannot get IMediaPostion interface (hr = %x)\n", hr);
return MCIERR_INTERNAL;
}
hr = IMediaSeeking_SetTimeFormat(seek, &format);
if (FAILED(hr)) {
IMediaSeeking_Release(seek);
FIXME("Cannot set time format (hr = %x)\n", hr); FIXME("Cannot set time format (hr = %x)\n", hr);
lpParms->dwReturn = 0; lpParms->dwReturn = 0;
break; break;
} }
hr = IMediaSeeking_GetDuration(seek, &duration); hr = IMediaSeeking_GetDuration(wma->seek, &duration);
IMediaSeeking_Release(seek);
if (FAILED(hr) || duration < 0) { if (FAILED(hr) || duration < 0) {
FIXME("Cannot read duration (hr = %x)\n", hr); FIXME("Cannot read duration (hr = %x)\n", hr);
lpParms->dwReturn = 0; lpParms->dwReturn = 0;
@ -624,25 +612,14 @@ static DWORD MCIQTZ_mciStatus(UINT wDevID, DWORD dwFlags, LPMCI_DGV_STATUS_PARMS
break; break;
} }
case MCI_STATUS_POSITION: { case MCI_STATUS_POSITION: {
IMediaPosition* pmpos; REFERENCE_TIME curpos;
REFTIME curpos;
hr = IGraphBuilder_QueryInterface(wma->pgraph, &IID_IMediaPosition, (LPVOID*)&pmpos); hr = IMediaSeeking_GetCurrentPosition(wma->seek, &curpos);
if (FAILED(hr)) {
FIXME("Cannot get IMediaPostion interface (hr = %x)\n", hr);
return MCIERR_INTERNAL;
}
hr = IMediaPosition_get_CurrentPosition(pmpos, &curpos);
if (FAILED(hr)) { if (FAILED(hr)) {
FIXME("Cannot get position (hr = %x)\n", hr); FIXME("Cannot get position (hr = %x)\n", hr);
IMediaPosition_Release(pmpos);
return MCIERR_INTERNAL; return MCIERR_INTERNAL;
} }
IMediaPosition_Release(pmpos);
lpParms->dwReturn = curpos / 10000; lpParms->dwReturn = curpos / 10000;
break; break;
} }
case MCI_STATUS_NUMBER_OF_TRACKS: case MCI_STATUS_NUMBER_OF_TRACKS:
@ -680,8 +657,6 @@ static DWORD MCIQTZ_mciStatus(UINT wDevID, DWORD dwFlags, LPMCI_DGV_STATUS_PARMS
static DWORD MCIQTZ_mciWhere(UINT wDevID, DWORD dwFlags, LPMCI_DGV_RECT_PARMS lpParms) static DWORD MCIQTZ_mciWhere(UINT wDevID, DWORD dwFlags, LPMCI_DGV_RECT_PARMS lpParms)
{ {
WINE_MCIQTZ* wma; WINE_MCIQTZ* wma;
IVideoWindow* pVideoWindow;
IBasicVideo *pBasicVideo;
HRESULT hr; HRESULT hr;
HWND hWnd; HWND hWnd;
RECT rc; RECT rc;
@ -696,34 +671,19 @@ static DWORD MCIQTZ_mciWhere(UINT wDevID, DWORD dwFlags, LPMCI_DGV_RECT_PARMS lp
if (!wma) if (!wma)
return MCIERR_INVALID_DEVICE_ID; return MCIERR_INVALID_DEVICE_ID;
/* Find if there is a video stream and get the display window */ hr = IVideoWindow_get_Owner(wma->vidwin, (OAHWND*)&hWnd);
hr = IGraphBuilder_QueryInterface(wma->pgraph, &IID_IVideoWindow, (LPVOID*)&pVideoWindow);
if (FAILED(hr)) {
ERR("Cannot get IVideoWindow interface (hr = %x)\n", hr);
return MCIERR_INTERNAL;
}
hr = IGraphBuilder_QueryInterface(wma->pgraph, &IID_IBasicVideo, (LPVOID*)&pBasicVideo);
if (FAILED(hr)) {
ERR("Cannot get IBasicVideo interface (hr = %x)\n", hr);
IUnknown_Release(pVideoWindow);
return MCIERR_INTERNAL;
}
hr = IVideoWindow_get_Owner(pVideoWindow, (OAHWND*)&hWnd);
if (FAILED(hr)) { if (FAILED(hr)) {
TRACE("No video stream, returning no window error\n"); TRACE("No video stream, returning no window error\n");
IUnknown_Release(pVideoWindow);
return MCIERR_NO_WINDOW; return MCIERR_NO_WINDOW;
} }
if (dwFlags & MCI_DGV_WHERE_SOURCE) { if (dwFlags & MCI_DGV_WHERE_SOURCE) {
if (dwFlags & MCI_DGV_WHERE_MAX) if (dwFlags & MCI_DGV_WHERE_MAX)
FIXME("MCI_DGV_WHERE_SOURCE_MAX stub %s\n", wine_dbgstr_rect(&rc)); FIXME("MCI_DGV_WHERE_SOURCE_MAX stub %s\n", wine_dbgstr_rect(&rc));
IBasicVideo_get_SourceLeft(pBasicVideo, &rc.left); IBasicVideo_get_SourceLeft(wma->vidbasic, &rc.left);
IBasicVideo_get_SourceTop(pBasicVideo, &rc.top); IBasicVideo_get_SourceTop(wma->vidbasic, &rc.top);
IBasicVideo_get_SourceWidth(pBasicVideo, &rc.right); IBasicVideo_get_SourceWidth(wma->vidbasic, &rc.right);
IBasicVideo_get_SourceHeight(pBasicVideo, &rc.bottom); IBasicVideo_get_SourceHeight(wma->vidbasic, &rc.bottom);
/* Undo conversion done below */ /* Undo conversion done below */
rc.right += rc.left; rc.right += rc.left;
rc.bottom += rc.top; rc.bottom += rc.top;
@ -766,8 +726,6 @@ static DWORD MCIQTZ_mciWhere(UINT wDevID, DWORD dwFlags, LPMCI_DGV_RECT_PARMS lp
out: out:
/* In MCI, RECT structure is used differently: rc.right = width & rc.bottom = height /* In MCI, RECT structure is used differently: rc.right = width & rc.bottom = height
* So convert the normal RECT into a MCI RECT before returning */ * So convert the normal RECT into a MCI RECT before returning */
IVideoWindow_Release(pVideoWindow);
IBasicVideo_Release(pBasicVideo);
lpParms->rc.left = rc.left; lpParms->rc.left = rc.left;
lpParms->rc.top = rc.top; lpParms->rc.top = rc.top;
lpParms->rc.right = rc.right - rc.left; lpParms->rc.right = rc.right - rc.left;
@ -794,51 +752,40 @@ static DWORD MCIQTZ_mciUpdate(UINT wDevID, DWORD dwFlags, LPMCI_DGV_UPDATE_PARMS
return MCIERR_INVALID_DEVICE_ID; return MCIERR_INVALID_DEVICE_ID;
if (dwFlags & MCI_DGV_UPDATE_HDC) { if (dwFlags & MCI_DGV_UPDATE_HDC) {
IBasicVideo *vidbasic; LONG state, size;
IVideoWindow *vidwin; BYTE *data;
BITMAPINFO *info;
HRESULT hr;
RECT src, dest;
res = MCIERR_INTERNAL; res = MCIERR_INTERNAL;
IFilterGraph2_QueryInterface(wma->pgraph, &IID_IVideoWindow, (void**)&vidwin); /* If in stopped state, nothing has been drawn to screen
IFilterGraph2_QueryInterface(wma->pgraph, &IID_IBasicVideo, (void**)&vidbasic); * moving to pause, which is needed for the old dib renderer, will result
if (vidbasic && vidwin) { * in a single frame drawn, so hide the window here */
LONG state, size; IVideoWindow_put_Visible(wma->vidwin, OAFALSE);
BYTE *data; /* FIXME: Should we check the original state and restore it? */
BITMAPINFO *info; IMediaControl_Pause(wma->pmctrl);
HRESULT hr; IMediaControl_GetState(wma->pmctrl, -1, &state);
RECT src, dest; if (FAILED(hr = IBasicVideo_GetCurrentImage(wma->vidbasic, &size, NULL))) {
WARN("Could not get image size (hr = %x)\n", hr);
/* If in stopped state, nothing has been drawn to screen goto out;
* moving to pause, which is needed for the old dib renderer, will result
* in a single frame drawn, so hide the window here */
IVideoWindow_put_Visible(vidwin, OAFALSE);
/* FIXME: Should we check the original state and restore it? */
IMediaControl_Pause(wma->pmctrl);
IMediaControl_GetState(wma->pmctrl, -1, &state);
if (FAILED(hr = IBasicVideo_GetCurrentImage(vidbasic, &size, NULL))) {
WARN("Could not get image size (hr = %x)\n", hr);
goto out;
}
data = HeapAlloc(GetProcessHeap(), 0, size);
info = (BITMAPINFO*)data;
IBasicVideo_GetCurrentImage(vidbasic, &size, (LONG*)data);
data += info->bmiHeader.biSize;
IBasicVideo_GetSourcePosition(vidbasic, &src.left, &src.top, &src.right, &src.bottom);
IBasicVideo_GetDestinationPosition(vidbasic, &dest.left, &dest.top, &dest.right, &dest.bottom);
StretchDIBits(lpParms->hDC,
dest.left, dest.top, dest.right + dest.left, dest.bottom + dest.top,
src.left, src.top, src.right + src.left, src.bottom + src.top,
data, info, DIB_RGB_COLORS, SRCCOPY);
HeapFree(GetProcessHeap(), 0, data);
} }
data = HeapAlloc(GetProcessHeap(), 0, size);
info = (BITMAPINFO*)data;
IBasicVideo_GetCurrentImage(wma->vidbasic, &size, (LONG*)data);
data += info->bmiHeader.biSize;
IBasicVideo_GetSourcePosition(wma->vidbasic, &src.left, &src.top, &src.right, &src.bottom);
IBasicVideo_GetDestinationPosition(wma->vidbasic, &dest.left, &dest.top, &dest.right, &dest.bottom);
StretchDIBits(lpParms->hDC,
dest.left, dest.top, dest.right + dest.left, dest.bottom + dest.top,
src.left, src.top, src.right + src.left, src.bottom + src.top,
data, info, DIB_RGB_COLORS, SRCCOPY);
HeapFree(GetProcessHeap(), 0, data);
res = 0; res = 0;
out: out:
if (vidbasic) if (wma->parent)
IBasicVideo_Release(vidbasic); IVideoWindow_put_Visible(wma->vidwin, OATRUE);
if (vidwin) {
if (wma->parent)
IVideoWindow_put_Visible(vidwin, OATRUE);
IVideoWindow_Release(vidwin);
}
} }
else if (dwFlags) else if (dwFlags)
FIXME("Unhandled flags %x\n", dwFlags); FIXME("Unhandled flags %x\n", dwFlags);

View File

@ -31,6 +31,9 @@ typedef struct {
BOOL uninit; BOOL uninit;
IGraphBuilder* pgraph; IGraphBuilder* pgraph;
IMediaControl* pmctrl; IMediaControl* pmctrl;
IMediaSeeking* seek;
IVideoWindow* vidwin;
IBasicVideo* vidbasic;
DWORD time_format; DWORD time_format;
UINT command_table; UINT command_table;
HWND parent; HWND parent;