Commit 6edee725 authored by Zebediah Figura's avatar Zebediah Figura Committed by Alexandre Julliard

quartz/filtergraph: Use the type info cache for IBasicVideo.

parent 245649f8
...@@ -3234,90 +3234,51 @@ static ULONG WINAPI BasicVideo_Release(IBasicVideo2 *iface) ...@@ -3234,90 +3234,51 @@ static ULONG WINAPI BasicVideo_Release(IBasicVideo2 *iface)
return IUnknown_Release(This->outer_unk); return IUnknown_Release(This->outer_unk);
} }
/*** IDispatch methods ***/ static HRESULT WINAPI BasicVideo_GetTypeInfoCount(IBasicVideo2 *iface, UINT *count)
static HRESULT WINAPI BasicVideo_GetTypeInfoCount(IBasicVideo2 *iface, UINT *pctinfo)
{ {
IFilterGraphImpl *This = impl_from_IBasicVideo2(iface); TRACE("iface %p, count %p.\n", iface, count);
IBasicVideo *pBasicVideo; *count = 1;
HRESULT hr; return S_OK;
TRACE("(%p/%p)->(%p)\n", This, iface, pctinfo);
EnterCriticalSection(&This->cs);
hr = GetTargetInterface(This, &IID_IBasicVideo, (LPVOID*)&pBasicVideo);
if (hr == S_OK)
hr = IBasicVideo_GetTypeInfoCount(pBasicVideo, pctinfo);
LeaveCriticalSection(&This->cs);
return hr;
} }
static HRESULT WINAPI BasicVideo_GetTypeInfo(IBasicVideo2 *iface, UINT iTInfo, LCID lcid, static HRESULT WINAPI BasicVideo_GetTypeInfo(IBasicVideo2 *iface, UINT index,
ITypeInfo **ppTInfo) LCID lcid, ITypeInfo **typeinfo)
{ {
IFilterGraphImpl *This = impl_from_IBasicVideo2(iface); TRACE("iface %p, index %u, lcid %#x, typeinfo %p.\n", iface, index, lcid, typeinfo);
IBasicVideo *pBasicVideo; return strmbase_get_typeinfo(IBasicVideo_tid, typeinfo);
HRESULT hr;
TRACE("(%p/%p)->(%d, %d, %p)\n", This, iface, iTInfo, lcid, ppTInfo);
EnterCriticalSection(&This->cs);
hr = GetTargetInterface(This, &IID_IBasicVideo, (LPVOID*)&pBasicVideo);
if (hr == S_OK)
hr = IBasicVideo_GetTypeInfo(pBasicVideo, iTInfo, lcid, ppTInfo);
LeaveCriticalSection(&This->cs);
return hr;
} }
static HRESULT WINAPI BasicVideo_GetIDsOfNames(IBasicVideo2 *iface, REFIID riid, static HRESULT WINAPI BasicVideo_GetIDsOfNames(IBasicVideo2 *iface, REFIID iid,
LPOLESTR *rgszNames, UINT cNames, LCID lcid, DISPID *rgDispId) LPOLESTR *names, UINT count, LCID lcid, DISPID *ids)
{ {
IFilterGraphImpl *This = impl_from_IBasicVideo2(iface); ITypeInfo *typeinfo;
IBasicVideo *pBasicVideo;
HRESULT hr; HRESULT hr;
TRACE("(%p/%p)->(%s, %p, %d, %d, %p)\n", This, iface, debugstr_guid(riid), rgszNames, cNames, TRACE("iface %p, iid %s, names %p, count %u, lcid %#x, ids %p.\n",
lcid, rgDispId); iface, debugstr_guid(iid), names, count, lcid, ids);
EnterCriticalSection(&This->cs);
hr = GetTargetInterface(This, &IID_IBasicVideo, (LPVOID*)&pBasicVideo);
if (hr == S_OK)
hr = IBasicVideo_GetIDsOfNames(pBasicVideo, riid, rgszNames, cNames, lcid, rgDispId);
LeaveCriticalSection(&This->cs);
if (SUCCEEDED(hr = strmbase_get_typeinfo(IBasicVideo_tid, &typeinfo)))
{
hr = ITypeInfo_GetIDsOfNames(typeinfo, names, count, ids);
ITypeInfo_Release(typeinfo);
}
return hr; return hr;
} }
static HRESULT WINAPI BasicVideo_Invoke(IBasicVideo2 *iface, DISPID dispIdMember, REFIID riid, static HRESULT WINAPI BasicVideo_Invoke(IBasicVideo2 *iface, DISPID id, REFIID iid, LCID lcid,
LCID lcid, WORD wFlags, DISPPARAMS *pDispParams, VARIANT *pVarResult, EXCEPINFO *pExepInfo, WORD flags, DISPPARAMS *params, VARIANT *result, EXCEPINFO *excepinfo, UINT *error_arg)
UINT *puArgErr)
{ {
IFilterGraphImpl *This = impl_from_IBasicVideo2(iface); ITypeInfo *typeinfo;
IBasicVideo *pBasicVideo;
HRESULT hr; HRESULT hr;
TRACE("(%p/%p)->(%d, %s, %d, %04x, %p, %p, %p, %p)\n", This, iface, dispIdMember, TRACE("iface %p, id %d, iid %s, lcid %#x, flags %#x, params %p, result %p, excepinfo %p, error_arg %p.\n",
debugstr_guid(riid), lcid, wFlags, pDispParams, pVarResult, pExepInfo, puArgErr); iface, id, debugstr_guid(iid), lcid, flags, params, result, excepinfo, error_arg);
EnterCriticalSection(&This->cs);
hr = GetTargetInterface(This, &IID_IBasicVideo, (LPVOID*)&pBasicVideo);
if (hr == S_OK)
hr = IBasicVideo_Invoke(pBasicVideo, dispIdMember, riid, lcid, wFlags, pDispParams, pVarResult, pExepInfo, puArgErr);
LeaveCriticalSection(&This->cs);
if (SUCCEEDED(hr = strmbase_get_typeinfo(IBasicVideo_tid, &typeinfo)))
{
hr = ITypeInfo_Invoke(typeinfo, iface, id, flags, params, result, excepinfo, error_arg);
ITypeInfo_Release(typeinfo);
}
return hr; return hr;
} }
......
...@@ -2494,7 +2494,9 @@ static void test_control_delegation(void) ...@@ -2494,7 +2494,9 @@ static void test_control_delegation(void)
IBasicAudio *audio, *filter_audio; IBasicAudio *audio, *filter_audio;
IBaseFilter *renderer; IBaseFilter *renderer;
IVideoWindow *window; IVideoWindow *window;
IBasicVideo *video; IBasicVideo2 *video;
ITypeInfo *typeinfo;
TYPEATTR *typeattr;
ULONG count; ULONG count;
HRESULT hr; HRESULT hr;
LONG val; LONG val;
...@@ -2564,15 +2566,28 @@ static void test_control_delegation(void) ...@@ -2564,15 +2566,28 @@ static void test_control_delegation(void)
/* IBasicVideo and IVideoWindow */ /* IBasicVideo and IVideoWindow */
hr = IFilterGraph2_QueryInterface(graph, &IID_IBasicVideo, (void **)&video); hr = IFilterGraph2_QueryInterface(graph, &IID_IBasicVideo2, (void **)&video);
ok(hr == S_OK, "got %#x\n", hr); ok(hr == S_OK, "got %#x\n", hr);
hr = IFilterGraph2_QueryInterface(graph, &IID_IVideoWindow, (void **)&window); hr = IFilterGraph2_QueryInterface(graph, &IID_IVideoWindow, (void **)&window);
ok(hr == S_OK, "got %#x\n", hr); ok(hr == S_OK, "got %#x\n", hr);
/* Unlike IBasicAudio, these return E_NOINTERFACE. */ /* Unlike IBasicAudio, these return E_NOINTERFACE. */
hr = IBasicVideo_get_BitRate(video, &val); hr = IBasicVideo2_get_BitRate(video, &val);
ok(hr == E_NOINTERFACE, "got %#x\n", hr); ok(hr == E_NOINTERFACE, "got %#x\n", hr);
hr = IBasicVideo2_GetTypeInfoCount(video, &count);
ok(hr == S_OK, "Got hr %#x.\n", hr);
ok(count == 1, "Got count %u.\n", count);
hr = IBasicVideo2_GetTypeInfo(video, 0, 0, &typeinfo);
ok(hr == S_OK, "Got hr %#x.\n", hr);
hr = ITypeInfo_GetTypeAttr(typeinfo, &typeattr);
ok(hr == S_OK, "Got hr %#x.\n", hr);
ok(typeattr->typekind == TKIND_DISPATCH, "Got kind %u.\n", typeattr->typekind);
ok(IsEqualGUID(&typeattr->guid, &IID_IBasicVideo), "Got IID %s.\n", wine_dbgstr_guid(&typeattr->guid));
ITypeInfo_ReleaseTypeAttr(typeinfo, typeattr);
ITypeInfo_Release(typeinfo);
hr = IVideoWindow_SetWindowForeground(window, OAFALSE); hr = IVideoWindow_SetWindowForeground(window, OAFALSE);
ok(hr == E_NOINTERFACE, "got %#x\n", hr); ok(hr == E_NOINTERFACE, "got %#x\n", hr);
...@@ -2586,7 +2601,7 @@ static void test_control_delegation(void) ...@@ -2586,7 +2601,7 @@ static void test_control_delegation(void)
hr = IFilterGraph2_AddFilter(graph, renderer, NULL); hr = IFilterGraph2_AddFilter(graph, renderer, NULL);
ok(hr == S_OK, "got %#x\n", hr); ok(hr == S_OK, "got %#x\n", hr);
hr = IBasicVideo_get_BitRate(video, &val); hr = IBasicVideo2_get_BitRate(video, &val);
ok(hr == VFW_E_NOT_CONNECTED, "got %#x\n", hr); ok(hr == VFW_E_NOT_CONNECTED, "got %#x\n", hr);
hr = IVideoWindow_SetWindowForeground(window, OAFALSE); hr = IVideoWindow_SetWindowForeground(window, OAFALSE);
ok(hr == VFW_E_NOT_CONNECTED, "got %#x\n", hr); ok(hr == VFW_E_NOT_CONNECTED, "got %#x\n", hr);
...@@ -2594,13 +2609,13 @@ static void test_control_delegation(void) ...@@ -2594,13 +2609,13 @@ static void test_control_delegation(void)
hr = IFilterGraph2_RemoveFilter(graph, renderer); hr = IFilterGraph2_RemoveFilter(graph, renderer);
ok(hr == S_OK, "got %#x\n", hr); ok(hr == S_OK, "got %#x\n", hr);
hr = IBasicVideo_get_BitRate(video, &val); hr = IBasicVideo2_get_BitRate(video, &val);
ok(hr == E_NOINTERFACE, "got %#x\n", hr); ok(hr == E_NOINTERFACE, "got %#x\n", hr);
hr = IVideoWindow_SetWindowForeground(window, OAFALSE); hr = IVideoWindow_SetWindowForeground(window, OAFALSE);
ok(hr == E_NOINTERFACE, "got %#x\n", hr); ok(hr == E_NOINTERFACE, "got %#x\n", hr);
IBaseFilter_Release(renderer); IBaseFilter_Release(renderer);
IBasicVideo_Release(video); IBasicVideo2_Release(video);
IVideoWindow_Release(window); IVideoWindow_Release(window);
IFilterGraph2_Release(graph); IFilterGraph2_Release(graph);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment