1 /* DirectShow FilterGraph object (QUARTZ.DLL)
3 * Copyright 2002 Lionel Ulmer
4 * Copyright 2004 Christian Costa
6 * This file contains the (internal) driver registration functions,
7 * driver enumeration APIs and DirectDraw creation functions.
9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public
11 * License as published by the Free Software Foundation; either
12 * version 2.1 of the License, or (at your option) any later version.
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Lesser General Public License for more details.
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with this library; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
35 #include "wine/debug.h"
36 #include "quartz_private.h"
42 #include "wine/unicode.h"
45 WINE_DEFAULT_DEBUG_CHANNEL(quartz
);
48 HWND hWnd
; /* Target window */
49 long msg
; /* User window message */
50 long instance
; /* User data */
51 int disabled
; /* Disabled messages posting */
55 long lEventCode
; /* Event code */
56 LONG_PTR lParam1
; /* Param1 */
57 LONG_PTR lParam2
; /* Param2 */
60 /* messages ring implementation for queuing events (taken from winmm) */
61 #define EVENTS_RING_BUFFER_INCREMENT 64
67 CRITICAL_SECTION msg_crst
;
68 HANDLE msg_event
; /* Signaled for no empty queue */
71 static int EventsQueue_Init(EventsQueue
* omr
)
75 omr
->msg_event
= CreateEventW(NULL
, TRUE
, FALSE
, NULL
);
76 omr
->ring_buffer_size
= EVENTS_RING_BUFFER_INCREMENT
;
77 omr
->messages
= CoTaskMemAlloc(omr
->ring_buffer_size
* sizeof(Event
));
78 ZeroMemory(omr
->messages
, omr
->ring_buffer_size
* sizeof(Event
));
80 InitializeCriticalSection(&omr
->msg_crst
);
81 omr
->msg_crst
.DebugInfo
->Spare
[0] = (DWORD_PTR
)(__FILE__
": EventsQueue.msg_crst");
85 static int EventsQueue_Destroy(EventsQueue
* omr
)
87 CloseHandle(omr
->msg_event
);
88 CoTaskMemFree(omr
->messages
);
89 omr
->msg_crst
.DebugInfo
->Spare
[0] = 0;
90 DeleteCriticalSection(&omr
->msg_crst
);
94 static int EventsQueue_PutEvent(EventsQueue
* omr
, const Event
* evt
)
96 EnterCriticalSection(&omr
->msg_crst
);
97 if ((omr
->msg_toget
== ((omr
->msg_tosave
+ 1) % omr
->ring_buffer_size
)))
99 int old_ring_buffer_size
= omr
->ring_buffer_size
;
100 omr
->ring_buffer_size
+= EVENTS_RING_BUFFER_INCREMENT
;
101 TRACE("omr->ring_buffer_size=%d\n",omr
->ring_buffer_size
);
102 omr
->messages
= HeapReAlloc(GetProcessHeap(),0,omr
->messages
, omr
->ring_buffer_size
* sizeof(Event
));
103 /* Now we need to rearrange the ring buffer so that the new
104 buffers just allocated are in between omr->msg_tosave and
107 if (omr
->msg_tosave
< omr
->msg_toget
)
109 memmove(&(omr
->messages
[omr
->msg_toget
+ EVENTS_RING_BUFFER_INCREMENT
]),
110 &(omr
->messages
[omr
->msg_toget
]),
111 sizeof(Event
)*(old_ring_buffer_size
- omr
->msg_toget
)
113 omr
->msg_toget
+= EVENTS_RING_BUFFER_INCREMENT
;
116 omr
->messages
[omr
->msg_tosave
] = *evt
;
117 SetEvent(omr
->msg_event
);
118 omr
->msg_tosave
= (omr
->msg_tosave
+ 1) % omr
->ring_buffer_size
;
119 LeaveCriticalSection(&omr
->msg_crst
);
123 static int EventsQueue_GetEvent(EventsQueue
* omr
, Event
* evt
, long msTimeOut
)
125 if (WaitForSingleObject(omr
->msg_event
, msTimeOut
) != WAIT_OBJECT_0
)
128 EnterCriticalSection(&omr
->msg_crst
);
130 if (omr
->msg_toget
== omr
->msg_tosave
) /* buffer empty ? */
132 LeaveCriticalSection(&omr
->msg_crst
);
136 *evt
= omr
->messages
[omr
->msg_toget
];
137 omr
->msg_toget
= (omr
->msg_toget
+ 1) % omr
->ring_buffer_size
;
139 /* Mark the buffer as empty if needed */
140 if (omr
->msg_toget
== omr
->msg_tosave
) /* buffer empty ? */
141 ResetEvent(omr
->msg_event
);
143 LeaveCriticalSection(&omr
->msg_crst
);
147 #define MAX_ITF_CACHE_ENTRIES 3
148 typedef struct _ITF_CACHE_ENTRY
{
154 typedef struct _IFilterGraphImpl
{
155 const IFilterGraph2Vtbl
*IFilterGraph2_vtbl
;
156 const IMediaControlVtbl
*IMediaControl_vtbl
;
157 const IMediaSeekingVtbl
*IMediaSeeking_vtbl
;
158 const IBasicAudioVtbl
*IBasicAudio_vtbl
;
159 const IBasicVideoVtbl
*IBasicVideo_vtbl
;
160 const IVideoWindowVtbl
*IVideoWindow_vtbl
;
161 const IMediaEventExVtbl
*IMediaEventEx_vtbl
;
162 const IMediaFilterVtbl
*IMediaFilter_vtbl
;
163 const IMediaEventSinkVtbl
*IMediaEventSink_vtbl
;
164 const IGraphConfigVtbl
*IGraphConfig_vtbl
;
165 const IMediaPositionVtbl
*IMediaPosition_vtbl
;
166 const IUnknownVtbl
* IInner_vtbl
;
167 /* IAMGraphStreams */
174 /* IRegisterServiceProvider */
175 /* IResourceMananger */
176 /* IServiceProvider */
177 /* IVideoFrameStep */
180 IFilterMapper2
* pFilterMapper2
;
181 IBaseFilter
** ppFiltersInGraph
;
182 LPWSTR
* pFilterNames
;
186 IReferenceClock
*refClock
;
188 HANDLE hEventCompletion
;
189 int CompletionStatus
;
193 int HandleEcComplete
;
195 int HandleEcClockChanged
;
198 ITF_CACHE_ENTRY ItfCacheEntries
[MAX_ITF_CACHE_ENTRIES
];
199 int nItfCacheEntries
;
200 IUnknown
* pUnkOuter
;
206 LONGLONG stop_position
;
209 static HRESULT WINAPI
Filtergraph_QueryInterface(IFilterGraphImpl
*This
,
210 REFIID riid
, LPVOID
* ppv
);
211 static ULONG WINAPI
Filtergraph_AddRef(IFilterGraphImpl
*This
);
212 static ULONG WINAPI
Filtergraph_Release(IFilterGraphImpl
*This
);
214 static HRESULT WINAPI
FilterGraphInner_QueryInterface(IUnknown
* iface
,
217 ICOM_THIS_MULTI(IFilterGraphImpl
, IInner_vtbl
, iface
);
218 TRACE("(%p)->(%s (%p), %p)\n", This
, debugstr_guid(riid
), riid
, ppvObj
);
220 if (This
->bAggregatable
)
221 This
->bUnkOuterValid
= TRUE
;
223 if (IsEqualGUID(&IID_IUnknown
, riid
)) {
224 *ppvObj
= &(This
->IInner_vtbl
);
225 TRACE(" returning IUnknown interface (%p)\n", *ppvObj
);
226 } else if (IsEqualGUID(&IID_IFilterGraph
, riid
) ||
227 IsEqualGUID(&IID_IFilterGraph2
, riid
) ||
228 IsEqualGUID(&IID_IGraphBuilder
, riid
)) {
229 *ppvObj
= &(This
->IFilterGraph2_vtbl
);
230 TRACE(" returning IGraphBuilder interface (%p)\n", *ppvObj
);
231 } else if (IsEqualGUID(&IID_IMediaControl
, riid
)) {
232 *ppvObj
= &(This
->IMediaControl_vtbl
);
233 TRACE(" returning IMediaControl interface (%p)\n", *ppvObj
);
234 } else if (IsEqualGUID(&IID_IMediaSeeking
, riid
)) {
235 *ppvObj
= &(This
->IMediaSeeking_vtbl
);
236 TRACE(" returning IMediaSeeking interface (%p)\n", *ppvObj
);
237 } else if (IsEqualGUID(&IID_IBasicAudio
, riid
)) {
238 *ppvObj
= &(This
->IBasicAudio_vtbl
);
239 TRACE(" returning IBasicAudio interface (%p)\n", *ppvObj
);
240 } else if (IsEqualGUID(&IID_IBasicVideo
, riid
)) {
241 *ppvObj
= &(This
->IBasicVideo_vtbl
);
242 TRACE(" returning IBasicVideo interface (%p)\n", *ppvObj
);
243 } else if (IsEqualGUID(&IID_IVideoWindow
, riid
)) {
244 *ppvObj
= &(This
->IVideoWindow_vtbl
);
245 TRACE(" returning IVideoWindow interface (%p)\n", *ppvObj
);
246 } else if (IsEqualGUID(&IID_IMediaEvent
, riid
) ||
247 IsEqualGUID(&IID_IMediaEventEx
, riid
)) {
248 *ppvObj
= &(This
->IMediaEventEx_vtbl
);
249 TRACE(" returning IMediaEvent(Ex) interface (%p)\n", *ppvObj
);
250 } else if (IsEqualGUID(&IID_IMediaFilter
, riid
) ||
251 IsEqualGUID(&IID_IPersist
, riid
)) {
252 *ppvObj
= &(This
->IMediaFilter_vtbl
);
253 TRACE(" returning IMediaFilter interface (%p)\n", *ppvObj
);
254 } else if (IsEqualGUID(&IID_IMediaEventSink
, riid
)) {
255 *ppvObj
= &(This
->IMediaEventSink_vtbl
);
256 TRACE(" returning IMediaEventSink interface (%p)\n", *ppvObj
);
257 } else if (IsEqualGUID(&IID_IGraphConfig
, riid
)) {
258 *ppvObj
= &(This
->IGraphConfig_vtbl
);
259 TRACE(" returning IGraphConfig interface (%p)\n", *ppvObj
);
260 } else if (IsEqualGUID(&IID_IMediaPosition
, riid
)) {
261 *ppvObj
= &(This
->IMediaPosition_vtbl
);
262 TRACE(" returning IMediaPosition interface (%p)\n", *ppvObj
);
265 FIXME("unknown interface %s\n", debugstr_guid(riid
));
266 return E_NOINTERFACE
;
269 IUnknown_AddRef((IUnknown
*)(*ppvObj
));
273 static ULONG WINAPI
FilterGraphInner_AddRef(IUnknown
* iface
) {
274 ICOM_THIS_MULTI(IFilterGraphImpl
, IInner_vtbl
, iface
);
275 ULONG ref
= InterlockedIncrement(&This
->ref
);
277 TRACE("(%p)->(): new ref = %d\n", This
, ref
);
282 static ULONG WINAPI
FilterGraphInner_Release(IUnknown
* iface
) {
283 ICOM_THIS_MULTI(IFilterGraphImpl
, IInner_vtbl
, iface
);
284 ULONG ref
= InterlockedDecrement(&This
->ref
);
286 TRACE("(%p)->(): new ref = %d\n", This
, ref
);
291 IMediaControl_Stop((IMediaControl
*)&(This
->IMediaControl_vtbl
));
293 IReferenceClock_Release(This
->refClock
);
295 while (This
->nFilters
)
296 IFilterGraph2_RemoveFilter((IFilterGraph2
*)This
, This
->ppFiltersInGraph
[0]);
298 for (i
= 0; i
< This
->nItfCacheEntries
; i
++)
300 if (This
->ItfCacheEntries
[i
].iface
)
301 IUnknown_Release(This
->ItfCacheEntries
[i
].iface
);
303 IFilterMapper2_Release(This
->pFilterMapper2
);
304 CloseHandle(This
->hEventCompletion
);
305 EventsQueue_Destroy(&This
->evqueue
);
306 This
->cs
.DebugInfo
->Spare
[0] = 0;
307 DeleteCriticalSection(&This
->cs
);
308 CoTaskMemFree(This
->ppFiltersInGraph
);
309 CoTaskMemFree(This
->pFilterNames
);
316 /*** IUnknown methods ***/
317 static HRESULT WINAPI
FilterGraph2_QueryInterface(IFilterGraph2
*iface
,
320 ICOM_THIS_MULTI(IFilterGraphImpl
, IFilterGraph2_vtbl
, iface
);
322 TRACE("(%p/%p)->(%s (%p), %p)\n", This
, iface
, debugstr_guid(riid
), riid
, ppvObj
);
323 return Filtergraph_QueryInterface(This
, riid
, ppvObj
);
326 static ULONG WINAPI
FilterGraph2_AddRef(IFilterGraph2
*iface
) {
327 ICOM_THIS_MULTI(IFilterGraphImpl
, IFilterGraph2_vtbl
, iface
);
329 TRACE("(%p/%p)->() calling FilterGraph AddRef\n", This
, iface
);
331 return Filtergraph_AddRef(This
);
334 static ULONG WINAPI
FilterGraph2_Release(IFilterGraph2
*iface
) {
335 ICOM_THIS_MULTI(IFilterGraphImpl
, IFilterGraph2_vtbl
, iface
);
337 TRACE("(%p/%p)->() calling FilterGraph Release\n", This
, iface
);
339 return Filtergraph_Release(This
);
342 /*** IFilterGraph methods ***/
343 static HRESULT WINAPI
FilterGraph2_AddFilter(IFilterGraph2
*iface
,
344 IBaseFilter
*pFilter
,
346 ICOM_THIS_MULTI(IFilterGraphImpl
, IFilterGraph2_vtbl
, iface
);
349 WCHAR
* wszFilterName
= NULL
;
350 int duplicate_name
= FALSE
;
352 TRACE("(%p/%p)->(%p, %s (%p))\n", This
, iface
, pFilter
, debugstr_w(pName
), pName
);
357 wszFilterName
= CoTaskMemAlloc( (pName
? strlenW(pName
) + 6 : 5) * sizeof(WCHAR
) );
361 /* Check if name already exists */
362 for(i
= 0; i
< This
->nFilters
; i
++)
363 if (!strcmpW(This
->pFilterNames
[i
], pName
))
365 duplicate_name
= TRUE
;
370 /* If no name given or name already existing, generate one */
371 if (!pName
|| duplicate_name
)
373 static const WCHAR wszFmt1
[] = {'%','s',' ','%','0','4','d',0};
374 static const WCHAR wszFmt2
[] = {'%','0','4','d',0};
376 for (j
= 0; j
< 10000 ; j
++)
380 sprintfW(wszFilterName
, wszFmt1
, pName
, This
->nameIndex
);
382 sprintfW(wszFilterName
, wszFmt2
, This
->nameIndex
);
383 TRACE("Generated name %s\n", debugstr_w(wszFilterName
));
385 /* Check if the generated name already exists */
386 for(i
= 0; i
< This
->nFilters
; i
++)
387 if (!strcmpW(This
->pFilterNames
[i
], wszFilterName
))
390 /* Compute next index and exit if generated name is suitable */
391 if (This
->nameIndex
++ == 10000)
393 if (i
== This
->nFilters
)
396 /* Unable to find a suitable name */
399 CoTaskMemFree(wszFilterName
);
400 return VFW_E_DUPLICATE_NAME
;
404 memcpy(wszFilterName
, pName
, (strlenW(pName
) + 1) * sizeof(WCHAR
));
406 if (This
->nFilters
+ 1 > This
->filterCapacity
)
408 int newCapacity
= This
->filterCapacity
? 2 * This
->filterCapacity
: 1;
409 IBaseFilter
** ppNewFilters
= CoTaskMemAlloc(newCapacity
* sizeof(IBaseFilter
*));
410 LPWSTR
* pNewNames
= CoTaskMemAlloc(newCapacity
* sizeof(LPWSTR
));
411 memcpy(ppNewFilters
, This
->ppFiltersInGraph
, This
->nFilters
* sizeof(IBaseFilter
*));
412 memcpy(pNewNames
, This
->pFilterNames
, This
->nFilters
* sizeof(LPWSTR
));
413 if (This
->filterCapacity
)
415 CoTaskMemFree(This
->ppFiltersInGraph
);
416 CoTaskMemFree(This
->pFilterNames
);
418 This
->ppFiltersInGraph
= ppNewFilters
;
419 This
->pFilterNames
= pNewNames
;
420 This
->filterCapacity
= newCapacity
;
423 hr
= IBaseFilter_JoinFilterGraph(pFilter
, (IFilterGraph
*)This
, wszFilterName
);
427 IBaseFilter_AddRef(pFilter
);
428 This
->ppFiltersInGraph
[This
->nFilters
] = pFilter
;
429 This
->pFilterNames
[This
->nFilters
] = wszFilterName
;
431 IBaseFilter_SetSyncSource(pFilter
, This
->refClock
);
434 CoTaskMemFree(wszFilterName
);
436 if (SUCCEEDED(hr
) && duplicate_name
)
437 return VFW_S_DUPLICATE_NAME
;
442 static HRESULT WINAPI
FilterGraph2_RemoveFilter(IFilterGraph2
*iface
,
443 IBaseFilter
*pFilter
) {
444 ICOM_THIS_MULTI(IFilterGraphImpl
, IFilterGraph2_vtbl
, iface
);
448 TRACE("(%p/%p)->(%p)\n", This
, iface
, pFilter
);
450 /* FIXME: check graph is stopped */
452 for (i
= 0; i
< This
->nFilters
; i
++)
454 if (This
->ppFiltersInGraph
[i
] == pFilter
)
456 IEnumPins
*penumpins
;
457 IBaseFilter_Stop(pFilter
);
458 hr
= IBaseFilter_EnumPins(pFilter
, &penumpins
);
461 while(IEnumPins_Next(penumpins
, 1, &ppin
, NULL
) == S_OK
) {
464 IPin_ConnectedTo(ppin
, &victim
);
467 h
= IPin_Disconnect(victim
);
468 TRACE("Disconnect other side: %08x\n", h
);
469 if (h
== VFW_E_NOT_STOPPED
)
472 IPin_QueryPinInfo(victim
, &pinfo
);
473 IBaseFilter_Stop(pinfo
.pFilter
);
474 IBaseFilter_Release(pinfo
.pFilter
);
475 h
= IPin_Disconnect(victim
);
476 TRACE("Disconnect retry: %08x\n", h
);
478 IPin_Release(victim
);
480 h
= IPin_Disconnect(ppin
);
481 TRACE("Disconnect 2: %08x\n", h
);
483 IEnumPins_Release(penumpins
);
486 hr
= IBaseFilter_JoinFilterGraph(pFilter
, NULL
, This
->pFilterNames
[i
]);
489 IBaseFilter_SetSyncSource(pFilter
, NULL
);
490 IBaseFilter_Release(pFilter
);
491 CoTaskMemFree(This
->pFilterNames
[i
]);
492 memmove(This
->ppFiltersInGraph
+i
, This
->ppFiltersInGraph
+i
+1, sizeof(IBaseFilter
*)*(This
->nFilters
- 1 - i
));
493 memmove(This
->pFilterNames
+i
, This
->pFilterNames
+i
+1, sizeof(LPWSTR
)*(This
->nFilters
- 1 - i
));
495 /* Invalidate interfaces in the cache */
496 for (i
= 0; i
< This
->nItfCacheEntries
; i
++)
497 if (pFilter
== This
->ItfCacheEntries
[i
].filter
)
499 IUnknown_Release(This
->ItfCacheEntries
[i
].iface
);
500 This
->ItfCacheEntries
[i
].iface
= NULL
;
501 This
->ItfCacheEntries
[i
].filter
= NULL
;
509 return hr
; /* FIXME: check this error code */
512 static HRESULT WINAPI
FilterGraph2_EnumFilters(IFilterGraph2
*iface
,
513 IEnumFilters
**ppEnum
) {
514 ICOM_THIS_MULTI(IFilterGraphImpl
, IFilterGraph2_vtbl
, iface
);
516 TRACE("(%p/%p)->(%p)\n", This
, iface
, ppEnum
);
518 return IEnumFiltersImpl_Construct(This
->ppFiltersInGraph
, This
->nFilters
, ppEnum
);
521 static HRESULT WINAPI
FilterGraph2_FindFilterByName(IFilterGraph2
*iface
,
523 IBaseFilter
**ppFilter
) {
524 ICOM_THIS_MULTI(IFilterGraphImpl
, IFilterGraph2_vtbl
, iface
);
527 TRACE("(%p/%p)->(%s (%p), %p)\n", This
, iface
, debugstr_w(pName
), pName
, ppFilter
);
532 for (i
= 0; i
< This
->nFilters
; i
++)
534 if (!strcmpW(pName
, This
->pFilterNames
[i
]))
536 *ppFilter
= This
->ppFiltersInGraph
[i
];
537 IBaseFilter_AddRef(*ppFilter
);
543 return VFW_E_NOT_FOUND
;
546 /* NOTE: despite the implication, it doesn't matter which
547 * way round you put in the input and output pins */
548 static HRESULT WINAPI
FilterGraph2_ConnectDirect(IFilterGraph2
*iface
,
551 const AM_MEDIA_TYPE
*pmt
) {
555 ICOM_THIS_MULTI(IFilterGraphImpl
, IFilterGraph2_vtbl
, iface
);
557 TRACE("(%p/%p)->(%p, %p, %p)\n", This
, iface
, ppinIn
, ppinOut
, pmt
);
559 /* FIXME: check pins are in graph */
561 if (TRACE_ON(quartz
))
565 hr
= IPin_QueryPinInfo(ppinIn
, &PinInfo
);
569 TRACE("Filter owning first pin => %p\n", PinInfo
.pFilter
);
570 IBaseFilter_Release(PinInfo
.pFilter
);
572 hr
= IPin_QueryPinInfo(ppinOut
, &PinInfo
);
576 TRACE("Filter owning second pin => %p\n", PinInfo
.pFilter
);
577 IBaseFilter_Release(PinInfo
.pFilter
);
580 hr
= IPin_QueryDirection(ppinIn
, &dir
);
583 if (dir
== PINDIR_INPUT
)
584 hr
= IPin_Connect(ppinOut
, ppinIn
, pmt
);
586 hr
= IPin_Connect(ppinIn
, ppinOut
, pmt
);
592 static HRESULT WINAPI
FilterGraph2_Reconnect(IFilterGraph2
*iface
,
594 ICOM_THIS_MULTI(IFilterGraphImpl
, IFilterGraph2_vtbl
, iface
);
595 IPin
*pConnectedTo
= NULL
;
597 PIN_DIRECTION pindir
;
599 IPin_QueryDirection(ppin
, &pindir
);
600 hr
= IPin_ConnectedTo(ppin
, &pConnectedTo
);
602 TRACE("Querying connected to failed: %x\n", hr
);
605 IPin_Disconnect(ppin
);
606 IPin_Disconnect(pConnectedTo
);
607 if (pindir
== PINDIR_INPUT
)
608 hr
= IPin_Connect(pConnectedTo
, ppin
, NULL
);
610 hr
= IPin_Connect(ppin
, pConnectedTo
, NULL
);
611 IPin_Release(pConnectedTo
);
613 ERR("Reconnecting pins failed, pins are not connected now..\n");
614 TRACE("(%p->%p) -- %p %p -> %x\n", iface
, This
, ppin
, pConnectedTo
, hr
);
618 static HRESULT WINAPI
FilterGraph2_Disconnect(IFilterGraph2
*iface
,
620 ICOM_THIS_MULTI(IFilterGraphImpl
, IFilterGraph2_vtbl
, iface
);
622 TRACE("(%p/%p)->(%p)\n", This
, iface
, ppin
);
624 return IPin_Disconnect(ppin
);
627 static HRESULT WINAPI
FilterGraph2_SetDefaultSyncSource(IFilterGraph2
*iface
) {
628 ICOM_THIS_MULTI(IFilterGraphImpl
, IFilterGraph2_vtbl
, iface
);
629 IReferenceClock
*pClock
= NULL
;
632 TRACE("(%p/%p)->() semi-stub\n", iface
, This
);
634 hr
= CoCreateInstance(&CLSID_SystemClock
, NULL
, CLSCTX_INPROC_SERVER
, &IID_IReferenceClock
, (LPVOID
*)&pClock
);
638 hr
= IMediaFilter_SetSyncSource((IMediaFilter
*)&(This
->IMediaFilter_vtbl
), pClock
);
639 IReferenceClock_Release(pClock
);
645 static HRESULT
GetFilterInfo(IMoniker
* pMoniker
, GUID
* pclsid
, VARIANT
* pvar
)
647 static const WCHAR wszClsidName
[] = {'C','L','S','I','D',0};
648 static const WCHAR wszFriendlyName
[] = {'F','r','i','e','n','d','l','y','N','a','m','e',0};
649 IPropertyBag
* pPropBagCat
= NULL
;
653 V_VT(pvar
) = VT_BSTR
;
655 hr
= IMoniker_BindToStorage(pMoniker
, NULL
, NULL
, &IID_IPropertyBag
, (LPVOID
*)&pPropBagCat
);
658 hr
= IPropertyBag_Read(pPropBagCat
, wszClsidName
, pvar
, NULL
);
661 hr
= CLSIDFromString(V_UNION(pvar
, bstrVal
), pclsid
);
664 hr
= IPropertyBag_Read(pPropBagCat
, wszFriendlyName
, pvar
, NULL
);
667 TRACE("Moniker = %s - %s\n", debugstr_guid(pclsid
), debugstr_w(V_UNION(pvar
, bstrVal
)));
670 IPropertyBag_Release(pPropBagCat
);
675 static HRESULT
GetInternalConnections(IBaseFilter
* pfilter
, IPin
* pinputpin
, IPin
*** pppins
, ULONG
* pnb
)
680 TRACE("(%p, %p, %p, %p)\n", pfilter
, pinputpin
, pppins
, pnb
);
681 hr
= IPin_QueryInternalConnections(pinputpin
, NULL
, &nb
);
684 } else if (hr
== S_FALSE
) {
685 *pppins
= CoTaskMemAlloc(sizeof(IPin
*)*nb
);
686 hr
= IPin_QueryInternalConnections(pinputpin
, *pppins
, &nb
);
688 ERR("Error (%x)\n", hr
);
690 } else if (hr
== E_NOTIMPL
) {
691 /* Input connected to all outputs */
692 IEnumPins
* penumpins
;
695 TRACE("E_NOTIMPL\n");
696 hr
= IBaseFilter_EnumPins(pfilter
, &penumpins
);
698 ERR("filter Enumpins failed (%x)\n", hr
);
702 /* Count output pins */
703 while(IEnumPins_Next(penumpins
, 1, &ppin
, &nb
) == S_OK
) {
704 PIN_DIRECTION pindir
;
705 IPin_QueryDirection(ppin
, &pindir
);
706 if (pindir
== PINDIR_OUTPUT
)
710 *pppins
= CoTaskMemAlloc(sizeof(IPin
*)*i
);
711 /* Retrieve output pins */
712 IEnumPins_Reset(penumpins
);
714 while(IEnumPins_Next(penumpins
, 1, &ppin
, &nb
) == S_OK
) {
715 PIN_DIRECTION pindir
;
716 IPin_QueryDirection(ppin
, &pindir
);
717 if (pindir
== PINDIR_OUTPUT
)
718 (*pppins
)[i
++] = ppin
;
722 IEnumPins_Release(penumpins
);
725 ERR("Next failed (%x)\n", hr
);
728 } else if (FAILED(hr
)) {
729 ERR("Cannot get internal connection (%x)\n", hr
);
737 /*** IGraphBuilder methods ***/
738 static HRESULT WINAPI
FilterGraph2_Connect(IFilterGraph2
*iface
,
741 ICOM_THIS_MULTI(IFilterGraphImpl
, IFilterGraph2_vtbl
, iface
);
744 IEnumMediaTypes
* penummt
;
746 IEnumPins
* penumpins
;
747 IEnumMoniker
* pEnumMoniker
;
755 TRACE("(%p/%p)->(%p, %p)\n", This
, iface
, ppinOut
, ppinIn
);
757 if (TRACE_ON(quartz
))
759 hr
= IPin_QueryPinInfo(ppinIn
, &PinInfo
);
763 TRACE("Filter owning first pin => %p\n", PinInfo
.pFilter
);
764 IBaseFilter_Release(PinInfo
.pFilter
);
766 hr
= IPin_QueryPinInfo(ppinOut
, &PinInfo
);
770 TRACE("Filter owning second pin => %p\n", PinInfo
.pFilter
);
771 IBaseFilter_Release(PinInfo
.pFilter
);
774 /* Try direct connection first */
775 hr
= IPin_Connect(ppinOut
, ppinIn
, NULL
);
779 TRACE("Direct connection failed, trying to insert other filters\n");
781 hr
= IPin_QueryPinInfo(ppinIn
, &PinInfo
);
785 hr
= IBaseFilter_GetClassID(PinInfo
.pFilter
, &FilterCLSID
);
786 IBaseFilter_Release(PinInfo
.pFilter
);
790 /* Find the appropriate transform filter than can transform the minor media type of output pin of the upstream
791 * filter to the minor mediatype of input pin of the renderer */
792 hr
= IPin_EnumMediaTypes(ppinOut
, &penummt
);
794 ERR("EnumMediaTypes (%x)\n", hr
);
798 hr
= IEnumMediaTypes_Next(penummt
, 1, &mt
, &nbmt
);
800 ERR("IEnumMediaTypes_Next (%x)\n", hr
);
805 ERR("No media type found!\n");
808 TRACE("MajorType %s\n", debugstr_guid(&mt
->majortype
));
809 TRACE("SubType %s\n", debugstr_guid(&mt
->subtype
));
811 /* Try to find a suitable filter that can connect to the pin to render */
812 tab
[0] = mt
->majortype
;
813 tab
[1] = mt
->subtype
;
814 hr
= IFilterMapper2_EnumMatchingFilters(This
->pFilterMapper2
, &pEnumMoniker
, 0, FALSE
, MERIT_UNLIKELY
, TRUE
, 1, tab
, NULL
, NULL
, FALSE
, FALSE
, 0, NULL
, NULL
, NULL
);
816 ERR("Unable to enum filters (%x)\n", hr
);
820 while(IEnumMoniker_Next(pEnumMoniker
, 1, &pMoniker
, &nb
) == S_OK
)
825 IPin
* ppinfilter
= NULL
;
826 IBaseFilter
* pfilter
= NULL
;
828 hr
= GetFilterInfo(pMoniker
, &clsid
, &var
);
829 IMoniker_Release(pMoniker
);
831 ERR("Unable to retrieve filter info (%x)\n", hr
);
835 if (IsEqualGUID(&clsid
, &FilterCLSID
)) {
836 /* Skip filter (same as the one the output pin belongs to) */
840 hr
= CoCreateInstance(&clsid
, NULL
, CLSCTX_INPROC_SERVER
, &IID_IBaseFilter
, (LPVOID
*)&pfilter
);
842 ERR("Unable to create filter (%x), trying next one\n", hr
);
846 hr
= IFilterGraph2_AddFilter(iface
, pfilter
, V_UNION(&var
, bstrVal
));
848 ERR("Unable to add filter (%x)\n", hr
);
849 IBaseFilter_Release(pfilter
);
854 hr
= IBaseFilter_EnumPins(pfilter
, &penumpins
);
856 ERR("Enumpins (%x)\n", hr
);
860 hr
= IEnumPins_Next(penumpins
, 1, &ppinfilter
, &pin
);
861 IEnumPins_Release(penumpins
);
864 ERR("Next (%x)\n", hr
);
872 hr
= IPin_Connect(ppinOut
, ppinfilter
, NULL
);
874 TRACE("Cannot connect to filter (%x), trying next one\n", hr
);
877 TRACE("Successfully connected to filter, follow chain...\n");
879 /* Render all output pins of the filter by calling IFilterGraph2_Render on each of them */
880 hr
= GetInternalConnections(pfilter
, ppinfilter
, &ppins
, &nb
);
885 IPin_Disconnect(ppinOut
);
888 TRACE("pins to consider: %d\n", nb
);
889 for(i
= 0; i
< nb
; i
++) {
890 TRACE("Processing pin %d\n", i
);
891 hr
= IFilterGraph2_Connect(iface
, ppins
[i
], ppinIn
);
893 TRACE("Cannot render pin %p (%x)\n", ppinfilter
, hr
);
895 IPin_Release(ppins
[i
]);
896 if (SUCCEEDED(hr
)) break;
898 while (++i
< nb
) IPin_Release(ppins
[i
]);
899 CoTaskMemFree(ppins
);
900 IPin_Release(ppinfilter
);
901 IBaseFilter_Release(pfilter
);
906 if (ppinfilter
) IPin_Release(ppinfilter
);
908 IFilterGraph2_RemoveFilter(iface
, pfilter
);
909 IBaseFilter_Release(pfilter
);
913 IEnumMediaTypes_Release(penummt
);
919 static HRESULT WINAPI
FilterGraph2_Render(IFilterGraph2
*iface
,
921 ICOM_THIS_MULTI(IFilterGraphImpl
, IFilterGraph2_vtbl
, iface
);
922 IEnumMediaTypes
* penummt
;
927 IEnumMoniker
* pEnumMoniker
;
932 TRACE("(%p/%p)->(%p)\n", This
, iface
, ppinOut
);
934 if (TRACE_ON(quartz
))
938 hr
= IPin_QueryPinInfo(ppinOut
, &PinInfo
);
942 TRACE("Filter owning pin => %p\n", PinInfo
.pFilter
);
943 IBaseFilter_Release(PinInfo
.pFilter
);
946 hr
= IPin_EnumMediaTypes(ppinOut
, &penummt
);
948 ERR("EnumMediaTypes (%x)\n", hr
);
954 hr
= IEnumMediaTypes_Next(penummt
, 1, &mt
, &nbmt
);
956 ERR("IEnumMediaTypes_Next (%x)\n", hr
);
961 TRACE("MajorType %s\n", debugstr_guid(&mt
->majortype
));
962 TRACE("SubType %s\n", debugstr_guid(&mt
->subtype
));
964 /* Try to find a suitable renderer with the same media type */
965 tab
[0] = mt
->majortype
;
967 hr
= IFilterMapper2_EnumMatchingFilters(This
->pFilterMapper2
, &pEnumMoniker
, 0, FALSE
, MERIT_UNLIKELY
, TRUE
, 1, tab
, NULL
, NULL
, TRUE
, FALSE
, 0, NULL
, NULL
, NULL
);
969 ERR("Unable to enum filters (%x)\n", hr
);
973 while(IEnumMoniker_Next(pEnumMoniker
, 1, &pMoniker
, &nb
) == S_OK
)
978 IBaseFilter
* pfilter
= NULL
;
979 IEnumPins
* penumpins
;
982 hr
= GetFilterInfo(pMoniker
, &clsid
, &var
);
983 IMoniker_Release(pMoniker
);
985 ERR("Unable to retrieve filter info (%x)\n", hr
);
989 hr
= CoCreateInstance(&clsid
, NULL
, CLSCTX_INPROC_SERVER
, &IID_IBaseFilter
, (LPVOID
*)&pfilter
);
991 ERR("Unable to create filter (%x), trying next one\n", hr
);
995 hr
= IFilterGraph2_AddFilter(iface
, pfilter
, V_UNION(&var
, bstrVal
));
997 ERR("Unable to add filter (%x)\n", hr
);
998 IBaseFilter_Release(pfilter
);
1003 hr
= IBaseFilter_EnumPins(pfilter
, &penumpins
);
1005 ERR("Splitter Enumpins (%x)\n", hr
);
1008 hr
= IEnumPins_Next(penumpins
, 1, &ppinfilter
, &pin
);
1009 IEnumPins_Release(penumpins
);
1011 ERR("Next (%x)\n", hr
);
1019 /* Connect the pin to render to the renderer */
1020 hr
= IFilterGraph2_Connect(iface
, ppinOut
, ppinfilter
);
1022 TRACE("Unable to connect to renderer (%x)\n", hr
);
1023 IPin_Release(ppinfilter
);
1026 IPin_Release(ppinfilter
);
1027 IBaseFilter_Release(pfilter
);
1033 IFilterGraph2_RemoveFilter(iface
, pfilter
);
1034 IBaseFilter_Release(pfilter
);
1038 DeleteMediaType(mt
);
1042 IEnumMediaTypes_Release(penummt
);
1047 static HRESULT WINAPI
FilterGraph2_RenderFile(IFilterGraph2
*iface
,
1048 LPCWSTR lpcwstrFile
,
1049 LPCWSTR lpcwstrPlayList
) {
1050 ICOM_THIS_MULTI(IFilterGraphImpl
, IFilterGraph2_vtbl
, iface
);
1051 static const WCHAR string
[] = {'R','e','a','d','e','r',0};
1052 IBaseFilter
* preader
= NULL
;
1053 IBaseFilter
* psplitter
= NULL
;
1054 IPin
* ppinreader
= NULL
;
1055 IPin
* ppinsplitter
= NULL
;
1056 IEnumPins
* penumpins
;
1059 IEnumMoniker
* pEnumMoniker
= NULL
;
1061 IPin
** ppins
= NULL
;
1064 IFileSourceFilter
* pfile
= NULL
;
1068 TRACE("(%p/%p)->(%s, %s)\n", This
, iface
, debugstr_w(lpcwstrFile
), debugstr_w(lpcwstrPlayList
));
1070 if (lpcwstrPlayList
!= NULL
)
1071 return E_INVALIDARG
;
1073 hr
= IFilterGraph2_AddSourceFilter(iface
, lpcwstrFile
, string
, &preader
);
1075 /* Retrieve file media type */
1077 hr
= IBaseFilter_QueryInterface(preader
, &IID_IFileSourceFilter
, (LPVOID
*)&pfile
);
1078 if (SUCCEEDED(hr
)) {
1079 hr
= IFileSourceFilter_GetCurFile(pfile
, &filename
, &mt
);
1080 IFileSourceFilter_Release(pfile
);
1084 hr
= IBaseFilter_EnumPins(preader
, &penumpins
);
1085 if (SUCCEEDED(hr
)) {
1086 hr
= IEnumPins_Next(penumpins
, 1, &ppinreader
, &pin
);
1087 IEnumPins_Release(penumpins
);
1090 if (SUCCEEDED(hr
)) {
1091 tab
[0] = mt
.majortype
;
1092 tab
[1] = mt
.subtype
;
1093 hr
= IFilterMapper2_EnumMatchingFilters(This
->pFilterMapper2
, &pEnumMoniker
, 0, FALSE
, MERIT_UNLIKELY
, TRUE
, 1, tab
, NULL
, NULL
, FALSE
, FALSE
, 0, NULL
, NULL
, NULL
);
1099 IPin_Release(ppinreader
);
1101 IEnumMoniker_Release(pEnumMoniker
);
1103 IFilterGraph2_RemoveFilter(iface
, preader
);
1104 IBaseFilter_Release(preader
);
1109 hr
= VFW_E_CANNOT_RENDER
;
1110 while(IEnumMoniker_Next(pEnumMoniker
, 1, &pMoniker
, &nb
) == S_OK
)
1115 hr
= GetFilterInfo(pMoniker
, &clsid
, &var
);
1116 IMoniker_Release(pMoniker
);
1118 ERR("Unable to retrieve filter info (%x)\n", hr
);
1122 hr
= CoCreateInstance(&clsid
, NULL
, CLSCTX_INPROC_SERVER
, &IID_IBaseFilter
, (LPVOID
*)&psplitter
);
1124 ERR("Unable to create filter (%x), trying next one\n", hr
);
1128 hr
= IFilterGraph2_AddFilter(iface
, psplitter
, V_UNION(&var
, bstrVal
));
1130 ERR("Unable add filter (%x)\n", hr
);
1131 IBaseFilter_Release(psplitter
);
1135 /* Connect file source and splitter filters together */
1136 /* Make the splitter analyze incoming data */
1138 hr
= IBaseFilter_EnumPins(psplitter
, &penumpins
);
1139 if (SUCCEEDED(hr
)) {
1140 hr
= IEnumPins_Next(penumpins
, 1, &ppinsplitter
, &pin
);
1141 IEnumPins_Release(penumpins
);
1145 hr
= IPin_Connect(ppinreader
, ppinsplitter
, NULL
);
1147 /* Make sure there's some output pins in the filter */
1149 hr
= GetInternalConnections(psplitter
, ppinsplitter
, &ppins
, &nb
);
1150 if (SUCCEEDED(hr
)) {
1152 IPin_Disconnect(ppinreader
);
1153 TRACE("No output pins found in filter\n");
1154 hr
= VFW_E_CANNOT_RENDER
;
1159 IPin_Release(ppinsplitter
);
1160 ppinsplitter
= NULL
;
1162 if (SUCCEEDED(hr
)) {
1163 TRACE("Successfully connected to filter\n");
1167 TRACE("Cannot connect to filter (%x), trying next one\n", hr
);
1170 CoTaskMemFree(ppins
);
1173 IFilterGraph2_RemoveFilter(iface
, psplitter
);
1174 IBaseFilter_Release(psplitter
);
1178 /* Render all output pin of the splitter by calling IFilterGraph2_Render on each of them */
1179 if (SUCCEEDED(hr
)) {
1182 TRACE("pins to consider: %d\n", nb
);
1183 for(i
= 0; i
< nb
; i
++) {
1184 TRACE("Processing pin %d\n", i
);
1185 hr
= IFilterGraph2_Render(iface
, ppins
[i
]);
1187 ERR("Cannot render pin %p (%x)\n", ppins
[i
], hr
);
1190 IPin_Release(ppins
[i
]);
1192 CoTaskMemFree(ppins
);
1194 hr
= (partial
? VFW_S_PARTIAL_RENDER
: S_OK
);
1197 IPin_Release(ppinreader
);
1198 IBaseFilter_Release(preader
);
1200 IBaseFilter_Release(psplitter
);
1205 /* Some filters implement their own asynchronous reader (Theoretically they all should, try to load it first */
1206 static HRESULT
GetFileSourceFilter(LPCOLESTR pszFileName
, IBaseFilter
**filter
)
1208 static const WCHAR wszReg
[] = {'M','e','d','i','a',' ','T','y','p','e','\\','E','x','t','e','n','s','i','o','n','s',0};
1213 lRet
= RegOpenKeyExW(HKEY_CLASSES_ROOT
, wszReg
, 0, KEY_READ
, &extkey
);
1214 hr
= HRESULT_FROM_WIN32(lRet
);
1218 static const WCHAR filtersource
[] = {'S','o','u','r','c','e',' ','F','i','l','t','e','r',0};
1219 WCHAR
*ext
= PathFindExtensionW(pszFileName
);
1220 WCHAR clsid_key
[39];
1222 DWORD size
= sizeof(clsid_key
);
1227 CloseHandle(extkey
);
1231 lRet
= RegOpenKeyExW(extkey
, ext
, 0, KEY_READ
, &pathkey
);
1232 hr
= HRESULT_FROM_WIN32(lRet
);
1233 CloseHandle(extkey
);
1237 lRet
= RegQueryValueExW(pathkey
, filtersource
, NULL
, NULL
, (LPBYTE
)clsid_key
, &size
);
1238 hr
= HRESULT_FROM_WIN32(lRet
);
1239 CloseHandle(pathkey
);
1243 CLSIDFromString(clsid_key
, &clsid
);
1245 TRACE("CLSID: %s\n", debugstr_guid(&clsid
));
1246 hr
= CoCreateInstance(&clsid
, NULL
, CLSCTX_INPROC_SERVER
, &IID_IBaseFilter
, (LPVOID
*)filter
);
1249 IFileSourceFilter
*source
= NULL
;
1250 hr
= IBaseFilter_QueryInterface(*filter
, &IID_IFileSourceFilter
, (LPVOID
*)&source
);
1252 IFileSourceFilter_Release(source
);
1254 IBaseFilter_Release(*filter
);
1262 static HRESULT WINAPI
FilterGraph2_AddSourceFilter(IFilterGraph2
*iface
,
1263 LPCWSTR lpcwstrFileName
,
1264 LPCWSTR lpcwstrFilterName
,
1265 IBaseFilter
**ppFilter
) {
1266 ICOM_THIS_MULTI(IFilterGraphImpl
, IFilterGraph2_vtbl
, iface
);
1268 IBaseFilter
* preader
;
1269 IFileSourceFilter
* pfile
= NULL
;
1273 TRACE("(%p/%p)->(%s, %s, %p)\n", This
, iface
, debugstr_w(lpcwstrFileName
), debugstr_w(lpcwstrFilterName
), ppFilter
);
1275 /* Try from file name first, then fall back to default asynchronous reader */
1276 hr
= GetFileSourceFilter(lpcwstrFileName
, &preader
);
1279 hr
= CoCreateInstance(&CLSID_AsyncReader
, NULL
, CLSCTX_INPROC_SERVER
, &IID_IBaseFilter
, (LPVOID
*)&preader
);
1281 ERR("Unable to create file source filter (%x)\n", hr
);
1285 hr
= IFilterGraph2_AddFilter(iface
, preader
, lpcwstrFilterName
);
1287 ERR("Unable add filter (%x)\n", hr
);
1288 IBaseFilter_Release(preader
);
1292 hr
= IBaseFilter_QueryInterface(preader
, &IID_IFileSourceFilter
, (LPVOID
*)&pfile
);
1294 ERR("Unable to get IFileSourceInterface (%x)\n", hr
);
1298 /* Load the file in the file source filter */
1299 hr
= IFileSourceFilter_Load(pfile
, lpcwstrFileName
, NULL
);
1301 ERR("Load (%x)\n", hr
);
1305 IFileSourceFilter_GetCurFile(pfile
, &filename
, &mt
);
1307 ERR("GetCurFile (%x)\n", hr
);
1311 TRACE("File %s\n", debugstr_w(filename
));
1312 TRACE("MajorType %s\n", debugstr_guid(&mt
.majortype
));
1313 TRACE("SubType %s\n", debugstr_guid(&mt
.subtype
));
1316 *ppFilter
= preader
;
1317 IFileSourceFilter_Release(pfile
);
1323 IFileSourceFilter_Release(pfile
);
1324 IFilterGraph2_RemoveFilter(iface
, preader
);
1325 IBaseFilter_Release(preader
);
1330 static HRESULT WINAPI
FilterGraph2_SetLogFile(IFilterGraph2
*iface
,
1332 ICOM_THIS_MULTI(IFilterGraphImpl
, IFilterGraph2_vtbl
, iface
);
1334 TRACE("(%p/%p)->(%08x): stub !!!\n", This
, iface
, (DWORD
) hFile
);
1339 static HRESULT WINAPI
FilterGraph2_Abort(IFilterGraph2
*iface
) {
1340 ICOM_THIS_MULTI(IFilterGraphImpl
, IFilterGraph2_vtbl
, iface
);
1342 TRACE("(%p/%p)->(): stub !!!\n", This
, iface
);
1347 static HRESULT WINAPI
FilterGraph2_ShouldOperationContinue(IFilterGraph2
*iface
) {
1348 ICOM_THIS_MULTI(IFilterGraphImpl
, IFilterGraph2_vtbl
, iface
);
1350 TRACE("(%p/%p)->(): stub !!!\n", This
, iface
);
1355 /*** IFilterGraph2 methods ***/
1356 static HRESULT WINAPI
FilterGraph2_AddSourceFilterForMoniker(IFilterGraph2
*iface
,
1359 LPCWSTR lpcwstrFilterName
,
1360 IBaseFilter
**ppFilter
) {
1361 ICOM_THIS_MULTI(IFilterGraphImpl
, IFilterGraph2_vtbl
, iface
);
1363 TRACE("(%p/%p)->(%p %p %s %p): stub !!!\n", This
, iface
, pMoniker
, pCtx
, debugstr_w(lpcwstrFilterName
), ppFilter
);
1368 static HRESULT WINAPI
FilterGraph2_ReconnectEx(IFilterGraph2
*iface
,
1370 const AM_MEDIA_TYPE
*pmt
) {
1371 ICOM_THIS_MULTI(IFilterGraphImpl
, IFilterGraph2_vtbl
, iface
);
1373 TRACE("(%p/%p)->(%p %p): stub !!!\n", This
, iface
, ppin
, pmt
);
1378 static HRESULT WINAPI
FilterGraph2_RenderEx(IFilterGraph2
*iface
,
1382 ICOM_THIS_MULTI(IFilterGraphImpl
, IFilterGraph2_vtbl
, iface
);
1384 TRACE("(%p/%p)->(%p %08x %p): stub !!!\n", This
, iface
, pPinOut
, dwFlags
, pvContext
);
1390 static const IFilterGraph2Vtbl IFilterGraph2_VTable
=
1392 FilterGraph2_QueryInterface
,
1393 FilterGraph2_AddRef
,
1394 FilterGraph2_Release
,
1395 FilterGraph2_AddFilter
,
1396 FilterGraph2_RemoveFilter
,
1397 FilterGraph2_EnumFilters
,
1398 FilterGraph2_FindFilterByName
,
1399 FilterGraph2_ConnectDirect
,
1400 FilterGraph2_Reconnect
,
1401 FilterGraph2_Disconnect
,
1402 FilterGraph2_SetDefaultSyncSource
,
1403 FilterGraph2_Connect
,
1404 FilterGraph2_Render
,
1405 FilterGraph2_RenderFile
,
1406 FilterGraph2_AddSourceFilter
,
1407 FilterGraph2_SetLogFile
,
1409 FilterGraph2_ShouldOperationContinue
,
1410 FilterGraph2_AddSourceFilterForMoniker
,
1411 FilterGraph2_ReconnectEx
,
1412 FilterGraph2_RenderEx
1415 /*** IUnknown methods ***/
1416 static HRESULT WINAPI
MediaControl_QueryInterface(IMediaControl
*iface
,
1419 ICOM_THIS_MULTI(IFilterGraphImpl
, IMediaControl_vtbl
, iface
);
1421 TRACE("(%p/%p)->(%s (%p), %p)\n", This
, iface
, debugstr_guid(riid
), riid
, ppvObj
);
1423 return Filtergraph_QueryInterface(This
, riid
, ppvObj
);
1426 static ULONG WINAPI
MediaControl_AddRef(IMediaControl
*iface
) {
1427 ICOM_THIS_MULTI(IFilterGraphImpl
, IMediaControl_vtbl
, iface
);
1429 TRACE("(%p/%p)->()\n", This
, iface
);
1431 return Filtergraph_AddRef(This
);
1434 static ULONG WINAPI
MediaControl_Release(IMediaControl
*iface
) {
1435 ICOM_THIS_MULTI(IFilterGraphImpl
, IMediaControl_vtbl
, iface
);
1437 TRACE("(%p/%p)->()\n", This
, iface
);
1439 return Filtergraph_Release(This
);
1443 /*** IDispatch methods ***/
1444 static HRESULT WINAPI
MediaControl_GetTypeInfoCount(IMediaControl
*iface
,
1446 ICOM_THIS_MULTI(IFilterGraphImpl
, IMediaControl_vtbl
, iface
);
1448 TRACE("(%p/%p)->(%p): stub !!!\n", This
, iface
, pctinfo
);
1453 static HRESULT WINAPI
MediaControl_GetTypeInfo(IMediaControl
*iface
,
1456 ITypeInfo
**ppTInfo
) {
1457 ICOM_THIS_MULTI(IFilterGraphImpl
, IMediaControl_vtbl
, iface
);
1459 TRACE("(%p/%p)->(%d, %d, %p): stub !!!\n", This
, iface
, iTInfo
, lcid
, ppTInfo
);
1464 static HRESULT WINAPI
MediaControl_GetIDsOfNames(IMediaControl
*iface
,
1470 ICOM_THIS_MULTI(IFilterGraphImpl
, IMediaControl_vtbl
, iface
);
1472 TRACE("(%p/%p)->(%s (%p), %p, %d, %d, %p): stub !!!\n", This
, iface
, debugstr_guid(riid
), riid
, rgszNames
, cNames
, lcid
, rgDispId
);
1477 static HRESULT WINAPI
MediaControl_Invoke(IMediaControl
*iface
,
1478 DISPID dispIdMember
,
1482 DISPPARAMS
*pDispParams
,
1484 EXCEPINFO
*pExepInfo
,
1486 ICOM_THIS_MULTI(IFilterGraphImpl
, IMediaControl_vtbl
, iface
);
1488 TRACE("(%p/%p)->(%d, %s (%p), %d, %04x, %p, %p, %p, %p): stub !!!\n", This
, iface
, dispIdMember
, debugstr_guid(riid
), riid
, lcid
, wFlags
, pDispParams
, pVarResult
, pExepInfo
, puArgErr
);
1493 typedef HRESULT(WINAPI
*fnFoundFilter
)(IBaseFilter
*);
1495 static HRESULT
ExploreGraph(IFilterGraphImpl
* pGraph
, IPin
* pOutputPin
, fnFoundFilter FoundFilter
)
1504 TRACE("%p %p\n", pGraph
, pOutputPin
);
1505 PinInfo
.pFilter
= NULL
;
1507 hr
= IPin_ConnectedTo(pOutputPin
, &pInputPin
);
1511 hr
= IPin_QueryPinInfo(pInputPin
, &PinInfo
);
1513 hr
= GetInternalConnections(PinInfo
.pFilter
, pInputPin
, &ppPins
, &nb
);
1514 IPin_Release(pInputPin
);
1521 TRACE("Reached a renderer\n");
1522 /* Count renderers for end of stream notification */
1523 pGraph
->nRenderers
++;
1527 for(i
= 0; i
< nb
; i
++)
1529 /* Explore the graph downstream from this pin
1530 * FIXME: We should prevent exploring from a pin more than once. This can happens when
1531 * several input pins are connected to the same output (a MUX for instance). */
1532 ExploreGraph(pGraph
, ppPins
[i
], FoundFilter
);
1533 IPin_Release(ppPins
[i
]);
1536 CoTaskMemFree(ppPins
);
1538 TRACE("Doing stuff with filter %p\n", PinInfo
.pFilter
);
1540 FoundFilter(PinInfo
.pFilter
);
1543 if (PinInfo
.pFilter
) IBaseFilter_Release(PinInfo
.pFilter
);
1547 static HRESULT WINAPI
SendRun(IBaseFilter
*pFilter
) {
1549 IReferenceClock
*clock
= NULL
;
1551 IBaseFilter_GetSyncSource(pFilter
, &clock
);
1554 IReferenceClock_GetTime(clock
, &time
);
1560 IReferenceClock_Release(clock
);
1563 return IBaseFilter_Run(pFilter
, time
);
1566 static HRESULT WINAPI
SendPause(IBaseFilter
*pFilter
) {
1567 return IBaseFilter_Pause(pFilter
);
1570 static HRESULT WINAPI
SendStop(IBaseFilter
*pFilter
) {
1571 return IBaseFilter_Stop(pFilter
);
1574 static HRESULT
SendFilterMessage(IMediaControl
*iface
, fnFoundFilter FoundFilter
) {
1575 ICOM_THIS_MULTI(IFilterGraphImpl
, IMediaControl_vtbl
, iface
);
1577 IBaseFilter
* pfilter
;
1583 TRACE("(%p/%p)->()\n", This
, iface
);
1585 /* Explorer the graph from source filters to renderers, determine renderers
1586 * number and run filters from renderers to source filters */
1587 This
->nRenderers
= 0;
1588 ResetEvent(This
->hEventCompletion
);
1590 for(i
= 0; i
< This
->nFilters
; i
++)
1593 pfilter
= This
->ppFiltersInGraph
[i
];
1594 hr
= IBaseFilter_EnumPins(pfilter
, &pEnum
);
1597 ERR("Enum pins failed %x\n", hr
);
1600 /* Check if it is a source filter */
1601 while(IEnumPins_Next(pEnum
, 1, &pPin
, &dummy
) == S_OK
)
1603 IPin_QueryDirection(pPin
, &dir
);
1605 if (dir
== PINDIR_INPUT
)
1613 TRACE("Found a source filter %p\n", pfilter
);
1614 IEnumPins_Reset(pEnum
);
1615 while(IEnumPins_Next(pEnum
, 1, &pPin
, &dummy
) == S_OK
)
1617 /* Explore the graph downstream from this pin */
1618 ExploreGraph(This
, pPin
, FoundFilter
);
1621 FoundFilter(pfilter
);
1623 IEnumPins_Release(pEnum
);
1629 /*** IMediaControl methods ***/
1630 static HRESULT WINAPI
MediaControl_Run(IMediaControl
*iface
) {
1631 ICOM_THIS_MULTI(IFilterGraphImpl
, IMediaControl_vtbl
, iface
);
1632 TRACE("(%p/%p)->()\n", This
, iface
);
1634 if (This
->state
== State_Running
) return S_OK
;
1636 EnterCriticalSection(&This
->cs
);
1637 if (This
->state
== State_Stopped
)
1638 This
->EcCompleteCount
= 0;
1642 IReferenceClock_GetTime(This
->refClock
, &This
->start_time
);
1643 This
->start_time
+= 500000;
1645 else This
->position
= This
->start_time
= 0;
1647 SendFilterMessage(iface
, SendRun
);
1648 This
->state
= State_Running
;
1649 LeaveCriticalSection(&This
->cs
);
1653 static HRESULT WINAPI
MediaControl_Pause(IMediaControl
*iface
) {
1654 ICOM_THIS_MULTI(IFilterGraphImpl
, IMediaControl_vtbl
, iface
);
1655 TRACE("(%p/%p)->()\n", This
, iface
);
1657 if (This
->state
== State_Paused
) return S_OK
;
1659 EnterCriticalSection(&This
->cs
);
1660 if (This
->state
== State_Stopped
)
1661 This
->EcCompleteCount
= 0;
1663 if (This
->state
== State_Running
&& This
->refClock
)
1665 LONGLONG time
= This
->start_time
;
1666 IReferenceClock_GetTime(This
->refClock
, &time
);
1667 This
->position
+= time
- This
->start_time
;
1670 SendFilterMessage(iface
, SendPause
);
1671 This
->state
= State_Paused
;
1672 LeaveCriticalSection(&This
->cs
);
1676 static HRESULT WINAPI
MediaControl_Stop(IMediaControl
*iface
) {
1677 ICOM_THIS_MULTI(IFilterGraphImpl
, IMediaControl_vtbl
, iface
);
1678 TRACE("(%p/%p)->()\n", This
, iface
);
1680 if (This
->state
== State_Stopped
) return S_OK
;
1682 EnterCriticalSection(&This
->cs
);
1683 if (This
->state
== State_Running
&& This
->refClock
)
1685 LONGLONG time
= This
->start_time
;
1686 IReferenceClock_GetTime(This
->refClock
, &time
);
1687 This
->position
+= time
- This
->start_time
;
1690 if (This
->state
== State_Running
) SendFilterMessage(iface
, SendPause
);
1691 SendFilterMessage(iface
, SendStop
);
1692 This
->state
= State_Stopped
;
1693 LeaveCriticalSection(&This
->cs
);
1697 static HRESULT WINAPI
MediaControl_GetState(IMediaControl
*iface
,
1699 OAFilterState
*pfs
) {
1700 ICOM_THIS_MULTI(IFilterGraphImpl
, IMediaControl_vtbl
, iface
);
1702 TRACE("(%p/%p)->(%d, %p): semi-stub !!!\n", This
, iface
, msTimeout
, pfs
);
1707 EnterCriticalSection(&This
->cs
);
1711 LeaveCriticalSection(&This
->cs
);
1716 static HRESULT WINAPI
MediaControl_RenderFile(IMediaControl
*iface
,
1718 ICOM_THIS_MULTI(IFilterGraphImpl
, IMediaControl_vtbl
, iface
);
1720 FIXME("(%p/%p)->(%s (%p)): stub !!!\n", This
, iface
, debugstr_w(strFilename
), strFilename
);
1725 static HRESULT WINAPI
MediaControl_AddSourceFilter(IMediaControl
*iface
,
1727 IDispatch
**ppUnk
) {
1728 ICOM_THIS_MULTI(IFilterGraphImpl
, IMediaControl_vtbl
, iface
);
1730 FIXME("(%p/%p)->(%s (%p), %p): stub !!!\n", This
, iface
, debugstr_w(strFilename
), strFilename
, ppUnk
);
1735 static HRESULT WINAPI
MediaControl_get_FilterCollection(IMediaControl
*iface
,
1736 IDispatch
**ppUnk
) {
1737 ICOM_THIS_MULTI(IFilterGraphImpl
, IMediaControl_vtbl
, iface
);
1739 FIXME("(%p/%p)->(%p): stub !!!\n", This
, iface
, ppUnk
);
1744 static HRESULT WINAPI
MediaControl_get_RegFilterCollection(IMediaControl
*iface
,
1745 IDispatch
**ppUnk
) {
1746 ICOM_THIS_MULTI(IFilterGraphImpl
, IMediaControl_vtbl
, iface
);
1748 FIXME("(%p/%p)->(%p): stub !!!\n", This
, iface
, ppUnk
);
1753 static HRESULT WINAPI
MediaControl_StopWhenReady(IMediaControl
*iface
) {
1754 ICOM_THIS_MULTI(IFilterGraphImpl
, IMediaControl_vtbl
, iface
);
1756 FIXME("(%p/%p)->(): stub !!!\n", This
, iface
);
1762 static const IMediaControlVtbl IMediaControl_VTable
=
1764 MediaControl_QueryInterface
,
1765 MediaControl_AddRef
,
1766 MediaControl_Release
,
1767 MediaControl_GetTypeInfoCount
,
1768 MediaControl_GetTypeInfo
,
1769 MediaControl_GetIDsOfNames
,
1770 MediaControl_Invoke
,
1774 MediaControl_GetState
,
1775 MediaControl_RenderFile
,
1776 MediaControl_AddSourceFilter
,
1777 MediaControl_get_FilterCollection
,
1778 MediaControl_get_RegFilterCollection
,
1779 MediaControl_StopWhenReady
1783 /*** IUnknown methods ***/
1784 static HRESULT WINAPI
MediaSeeking_QueryInterface(IMediaSeeking
*iface
,
1787 ICOM_THIS_MULTI(IFilterGraphImpl
, IMediaSeeking_vtbl
, iface
);
1789 TRACE("(%p/%p)->(%s (%p), %p)\n", This
, iface
, debugstr_guid(riid
), riid
, ppvObj
);
1791 return Filtergraph_QueryInterface(This
, riid
, ppvObj
);
1794 static ULONG WINAPI
MediaSeeking_AddRef(IMediaSeeking
*iface
) {
1795 ICOM_THIS_MULTI(IFilterGraphImpl
, IMediaSeeking_vtbl
, iface
);
1797 TRACE("(%p/%p)->()\n", This
, iface
);
1799 return Filtergraph_AddRef(This
);
1802 static ULONG WINAPI
MediaSeeking_Release(IMediaSeeking
*iface
) {
1803 ICOM_THIS_MULTI(IFilterGraphImpl
, IMediaSeeking_vtbl
, iface
);
1805 TRACE("(%p/%p)->()\n", This
, iface
);
1807 return Filtergraph_Release(This
);
1810 typedef HRESULT
WINAPI (*fnFoundSeek
)(IFilterGraphImpl
*This
, IMediaSeeking
*, DWORD_PTR arg
);
1812 static HRESULT
all_renderers_seek(IFilterGraphImpl
*This
, fnFoundSeek FoundSeek
, DWORD_PTR arg
) {
1813 BOOL allnotimpl
= TRUE
;
1815 IBaseFilter
* pfilter
;
1817 HRESULT hr
, hr_return
= S_OK
;
1822 TRACE("(%p)->(%p %08lx)\n", This
, FoundSeek
, arg
);
1823 /* Send a message to all renderers, they are responsible for broadcasting it further */
1825 for(i
= 0; i
< This
->nFilters
; i
++)
1827 BOOL renderer
= TRUE
;
1828 pfilter
= This
->ppFiltersInGraph
[i
];
1829 hr
= IBaseFilter_EnumPins(pfilter
, &pEnum
);
1832 ERR("Enum pins failed %x\n", hr
);
1835 /* Check if it is a source filter */
1836 while(IEnumPins_Next(pEnum
, 1, &pPin
, &dummy
) == S_OK
)
1838 IPin_QueryDirection(pPin
, &dir
);
1840 if (dir
!= PINDIR_INPUT
)
1846 IEnumPins_Release(pEnum
);
1849 IMediaSeeking
*seek
= NULL
;
1850 IBaseFilter_QueryInterface(pfilter
, &IID_IMediaSeeking
, (void**)&seek
);
1854 hr
= FoundSeek(This
, seek
, arg
);
1856 IMediaSeeking_Release(seek
);
1857 if (hr_return
!= E_NOTIMPL
)
1859 if (hr_return
== S_OK
|| (FAILED(hr
) && hr
!= E_NOTIMPL
&& !FAILED(hr_return
)))
1869 static HRESULT WINAPI
FoundCapabilities(IFilterGraphImpl
*This
, IMediaSeeking
*seek
, DWORD_PTR pcaps
)
1874 hr
= IMediaSeeking_GetCapabilities(seek
, &caps
);
1878 /* Only add common capabilities everything supports */
1879 *(DWORD
*)pcaps
&= caps
;
1884 /*** IMediaSeeking methods ***/
1885 static HRESULT WINAPI
MediaSeeking_GetCapabilities(IMediaSeeking
*iface
,
1886 DWORD
*pCapabilities
) {
1887 ICOM_THIS_MULTI(IFilterGraphImpl
, IMediaSeeking_vtbl
, iface
);
1889 TRACE("(%p/%p)->(%p)\n", This
, iface
, pCapabilities
);
1894 EnterCriticalSection(&This
->cs
);
1895 *pCapabilities
= 0xffffffff;
1897 hr
= all_renderers_seek(This
, FoundCapabilities
, (DWORD_PTR
)pCapabilities
);
1898 LeaveCriticalSection(&This
->cs
);
1903 static HRESULT WINAPI
MediaSeeking_CheckCapabilities(IMediaSeeking
*iface
,
1904 DWORD
*pCapabilities
) {
1905 ICOM_THIS_MULTI(IFilterGraphImpl
, IMediaSeeking_vtbl
, iface
);
1908 TRACE("(%p/%p)->(%p)\n", This
, iface
, pCapabilities
);
1913 EnterCriticalSection(&This
->cs
);
1914 originalcaps
= *pCapabilities
;
1915 hr
= all_renderers_seek(This
, FoundCapabilities
, (DWORD_PTR
)pCapabilities
);
1916 LeaveCriticalSection(&This
->cs
);
1921 if (!*pCapabilities
)
1923 if (*pCapabilities
!= originalcaps
)
1928 static HRESULT WINAPI
MediaSeeking_IsFormatSupported(IMediaSeeking
*iface
,
1929 const GUID
*pFormat
) {
1930 ICOM_THIS_MULTI(IFilterGraphImpl
, IMediaSeeking_vtbl
, iface
);
1935 TRACE("(%p/%p)->(%s)\n", This
, iface
, debugstr_guid(pFormat
));
1937 if (!IsEqualGUID(&TIME_FORMAT_MEDIA_TIME
, pFormat
))
1939 FIXME("Unhandled time format %s\n", debugstr_guid(pFormat
));
1946 static HRESULT WINAPI
MediaSeeking_QueryPreferredFormat(IMediaSeeking
*iface
,
1948 ICOM_THIS_MULTI(IFilterGraphImpl
, IMediaSeeking_vtbl
, iface
);
1953 FIXME("(%p/%p)->(%p): semi-stub !!!\n", This
, iface
, pFormat
);
1954 memcpy(pFormat
, &TIME_FORMAT_MEDIA_TIME
, sizeof(GUID
));
1959 static HRESULT WINAPI
MediaSeeking_GetTimeFormat(IMediaSeeking
*iface
,
1961 ICOM_THIS_MULTI(IFilterGraphImpl
, IMediaSeeking_vtbl
, iface
);
1966 TRACE("(%p/%p)->(%p)\n", This
, iface
, pFormat
);
1967 memcpy(pFormat
, &This
->timeformatseek
, sizeof(GUID
));
1972 static HRESULT WINAPI
MediaSeeking_IsUsingTimeFormat(IMediaSeeking
*iface
,
1973 const GUID
*pFormat
) {
1974 ICOM_THIS_MULTI(IFilterGraphImpl
, IMediaSeeking_vtbl
, iface
);
1976 TRACE("(%p/%p)->(%p)\n", This
, iface
, pFormat
);
1980 if (memcmp(pFormat
, &This
->timeformatseek
, sizeof(GUID
)))
1986 static HRESULT WINAPI
MediaSeeking_SetTimeFormat(IMediaSeeking
*iface
,
1987 const GUID
*pFormat
) {
1988 ICOM_THIS_MULTI(IFilterGraphImpl
, IMediaSeeking_vtbl
, iface
);
1993 TRACE("(%p/%p)->(%s)\n", This
, iface
, debugstr_guid(pFormat
));
1995 if (This
->state
!= State_Stopped
)
1996 return VFW_E_WRONG_STATE
;
1998 if (!IsEqualGUID(&TIME_FORMAT_MEDIA_TIME
, pFormat
))
2000 FIXME("Unhandled time format %s\n", debugstr_guid(pFormat
));
2001 return E_INVALIDARG
;
2007 static HRESULT WINAPI
FoundDuration(IFilterGraphImpl
*This
, IMediaSeeking
*seek
, DWORD_PTR pduration
)
2010 LONGLONG duration
= 0, *pdur
= (LONGLONG
*)pduration
;
2012 hr
= IMediaSeeking_GetDuration(seek
, &duration
);
2016 /* FIXME: Minimum or maximum duration? Assuming minimum */
2017 if (duration
> 0 && *pdur
< duration
)
2023 static HRESULT WINAPI
MediaSeeking_GetDuration(IMediaSeeking
*iface
,
2024 LONGLONG
*pDuration
) {
2025 ICOM_THIS_MULTI(IFilterGraphImpl
, IMediaSeeking_vtbl
, iface
);
2028 TRACE("(%p/%p)->(%p)\n", This
, iface
, pDuration
);
2033 EnterCriticalSection(&This
->cs
);
2035 hr
= all_renderers_seek(This
, FoundDuration
, (DWORD_PTR
)pDuration
);
2036 LeaveCriticalSection(&This
->cs
);
2038 TRACE("--->%08x\n", hr
);
2042 static HRESULT WINAPI
MediaSeeking_GetStopPosition(IMediaSeeking
*iface
,
2044 ICOM_THIS_MULTI(IFilterGraphImpl
, IMediaSeeking_vtbl
, iface
);
2047 TRACE("(%p/%p)->(%p)\n", This
, iface
, pStop
);
2052 EnterCriticalSection(&This
->cs
);
2053 if (This
->stop_position
< 0)
2054 /* Stop position not set, use duration instead */
2055 hr
= IMediaSeeking_GetDuration(iface
, pStop
);
2057 *pStop
= This
->stop_position
;
2059 LeaveCriticalSection(&This
->cs
);
2064 static HRESULT WINAPI
MediaSeeking_GetCurrentPosition(IMediaSeeking
*iface
,
2065 LONGLONG
*pCurrent
) {
2066 ICOM_THIS_MULTI(IFilterGraphImpl
, IMediaSeeking_vtbl
, iface
);
2072 EnterCriticalSection(&This
->cs
);
2073 if (This
->state
== State_Running
&& This
->refClock
)
2075 IReferenceClock_GetTime(This
->refClock
, &time
);
2077 time
+= This
->position
- This
->start_time
;
2078 if (time
< This
->position
)
2079 time
= This
->position
;
2083 *pCurrent
= This
->position
;
2084 LeaveCriticalSection(&This
->cs
);
2086 TRACE("Time: %u.%03u\n", (DWORD
)(*pCurrent
/ 10000000), (DWORD
)((*pCurrent
/ 10000)%1000));
2091 static HRESULT WINAPI
MediaSeeking_ConvertTimeFormat(IMediaSeeking
*iface
,
2093 const GUID
*pTargetFormat
,
2095 const GUID
*pSourceFormat
) {
2096 ICOM_THIS_MULTI(IFilterGraphImpl
, IMediaSeeking_vtbl
, iface
);
2098 FIXME("(%p/%p)->(%p, %p, 0x%s, %p): stub !!!\n", This
, iface
, pTarget
,
2099 pTargetFormat
, wine_dbgstr_longlong(Source
), pSourceFormat
);
2105 LONGLONG
* current
, *stop
;
2106 DWORD curflags
, stopflags
;
2109 static HRESULT WINAPI
found_setposition(IFilterGraphImpl
*This
, IMediaSeeking
*seek
, DWORD_PTR pargs
)
2111 struct pos_args
*args
= (void*)pargs
;
2113 return IMediaSeeking_SetPositions(seek
, args
->current
, args
->curflags
, args
->stop
, args
->stopflags
);
2116 static HRESULT WINAPI
MediaSeeking_SetPositions(IMediaSeeking
*iface
,
2118 DWORD dwCurrentFlags
,
2120 DWORD dwStopFlags
) {
2121 ICOM_THIS_MULTI(IFilterGraphImpl
, IMediaSeeking_vtbl
, iface
);
2124 struct pos_args args
;
2126 TRACE("(%p/%p)->(%p, %08x, %p, %08x)\n", This
, iface
, pCurrent
, dwCurrentFlags
, pStop
, dwStopFlags
);
2128 EnterCriticalSection(&This
->cs
);
2129 state
= This
->state
;
2130 TRACE("State: %s\n", state
== State_Running
? "Running" : (state
== State_Paused
? "Paused" : (state
== State_Stopped
? "Stopped" : "UNKNOWN")));
2132 if ((dwCurrentFlags
& 0x7) == AM_SEEKING_AbsolutePositioning
)
2134 This
->position
= *pCurrent
;
2136 else if ((dwCurrentFlags
& 0x7) != AM_SEEKING_NoPositioning
)
2137 FIXME("Adjust method %x not handled yet!\n", dwCurrentFlags
& 0x7);
2139 if ((dwStopFlags
& 0x7) == AM_SEEKING_AbsolutePositioning
)
2140 This
->stop_position
= *pStop
;
2141 else if ((dwStopFlags
& 0x7) != AM_SEEKING_NoPositioning
)
2142 FIXME("Stop position not handled yet!\n");
2144 args
.current
= pCurrent
;
2146 args
.curflags
= dwCurrentFlags
;
2147 args
.stopflags
= dwStopFlags
;
2148 hr
= all_renderers_seek(This
, found_setposition
, (DWORD_PTR
)&args
);
2150 if (This
->refClock
&& ((dwCurrentFlags
& 0x7) != AM_SEEKING_NoPositioning
))
2152 /* Update start time, prevents weird jumps */
2153 IReferenceClock_GetTime(This
->refClock
, &This
->start_time
);
2155 LeaveCriticalSection(&This
->cs
);
2160 static HRESULT WINAPI
MediaSeeking_GetPositions(IMediaSeeking
*iface
,
2163 ICOM_THIS_MULTI(IFilterGraphImpl
, IMediaSeeking_vtbl
, iface
);
2166 TRACE("(%p/%p)->(%p, %p)\n", This
, iface
, pCurrent
, pStop
);
2167 hr
= IMediaSeeking_GetCurrentPosition(iface
, pCurrent
);
2169 hr
= IMediaSeeking_GetStopPosition(iface
, pStop
);
2174 static HRESULT WINAPI
MediaSeeking_GetAvailable(IMediaSeeking
*iface
,
2175 LONGLONG
*pEarliest
,
2176 LONGLONG
*pLatest
) {
2177 ICOM_THIS_MULTI(IFilterGraphImpl
, IMediaSeeking_vtbl
, iface
);
2179 FIXME("(%p/%p)->(%p, %p): stub !!!\n", This
, iface
, pEarliest
, pLatest
);
2184 static HRESULT WINAPI
MediaSeeking_SetRate(IMediaSeeking
*iface
,
2186 ICOM_THIS_MULTI(IFilterGraphImpl
, IMediaSeeking_vtbl
, iface
);
2188 FIXME("(%p/%p)->(%f): stub !!!\n", This
, iface
, dRate
);
2193 static HRESULT WINAPI
MediaSeeking_GetRate(IMediaSeeking
*iface
,
2195 ICOM_THIS_MULTI(IFilterGraphImpl
, IMediaSeeking_vtbl
, iface
);
2197 FIXME("(%p/%p)->(%p): stub !!!\n", This
, iface
, pdRate
);
2202 static HRESULT WINAPI
MediaSeeking_GetPreroll(IMediaSeeking
*iface
,
2203 LONGLONG
*pllPreroll
) {
2204 ICOM_THIS_MULTI(IFilterGraphImpl
, IMediaSeeking_vtbl
, iface
);
2206 FIXME("(%p/%p)->(%p): stub !!!\n", This
, iface
, pllPreroll
);
2212 static const IMediaSeekingVtbl IMediaSeeking_VTable
=
2214 MediaSeeking_QueryInterface
,
2215 MediaSeeking_AddRef
,
2216 MediaSeeking_Release
,
2217 MediaSeeking_GetCapabilities
,
2218 MediaSeeking_CheckCapabilities
,
2219 MediaSeeking_IsFormatSupported
,
2220 MediaSeeking_QueryPreferredFormat
,
2221 MediaSeeking_GetTimeFormat
,
2222 MediaSeeking_IsUsingTimeFormat
,
2223 MediaSeeking_SetTimeFormat
,
2224 MediaSeeking_GetDuration
,
2225 MediaSeeking_GetStopPosition
,
2226 MediaSeeking_GetCurrentPosition
,
2227 MediaSeeking_ConvertTimeFormat
,
2228 MediaSeeking_SetPositions
,
2229 MediaSeeking_GetPositions
,
2230 MediaSeeking_GetAvailable
,
2231 MediaSeeking_SetRate
,
2232 MediaSeeking_GetRate
,
2233 MediaSeeking_GetPreroll
2236 /*** IUnknown methods ***/
2237 static HRESULT WINAPI
MediaPosition_QueryInterface(IMediaPosition
* iface
, REFIID riid
, void** ppvObj
){
2238 ICOM_THIS_MULTI(IFilterGraphImpl
, IMediaPosition_vtbl
, iface
);
2240 TRACE("(%p/%p)->(%s (%p), %p)\n", This
, iface
, debugstr_guid(riid
), riid
, ppvObj
);
2242 return Filtergraph_QueryInterface(This
, riid
, ppvObj
);
2245 static ULONG WINAPI
MediaPosition_AddRef(IMediaPosition
*iface
){
2246 ICOM_THIS_MULTI(IFilterGraphImpl
, IMediaPosition_vtbl
, iface
);
2248 TRACE("(%p/%p)->()\n", This
, iface
);
2250 return Filtergraph_AddRef(This
);
2253 static ULONG WINAPI
MediaPosition_Release(IMediaPosition
*iface
){
2254 ICOM_THIS_MULTI(IFilterGraphImpl
, IMediaPosition_vtbl
, iface
);
2256 TRACE("(%p/%p)->()\n", This
, iface
);
2258 return Filtergraph_Release(This
);
2261 /*** IDispatch methods ***/
2262 static HRESULT WINAPI
MediaPosition_GetTypeInfoCount(IMediaPosition
*iface
, UINT
* pctinfo
){
2263 FIXME("(%p) stub!\n", iface
);
2267 static HRESULT WINAPI
MediaPosition_GetTypeInfo(IMediaPosition
*iface
, UINT iTInfo
, LCID lcid
, ITypeInfo
** ppTInfo
){
2268 FIXME("(%p) stub!\n", iface
);
2272 static HRESULT WINAPI
MediaPosition_GetIDsOfNames(IMediaPosition
* iface
, REFIID riid
, LPOLESTR
* rgszNames
, UINT cNames
, LCID lcid
, DISPID
* rgDispId
){
2273 FIXME("(%p) stub!\n", iface
);
2277 static HRESULT WINAPI
MediaPosition_Invoke(IMediaPosition
* iface
, DISPID dispIdMember
, REFIID riid
, LCID lcid
, WORD wFlags
, DISPPARAMS
* pDispParams
, VARIANT
* pVarResult
, EXCEPINFO
* pExcepInfo
, UINT
* puArgErr
){
2278 FIXME("(%p) stub!\n", iface
);
2282 /*** IMediaPosition methods ***/
2283 static HRESULT WINAPI
MediaPosition_get_Duration(IMediaPosition
* iface
, REFTIME
*plength
){
2284 FIXME("(%p)->(%p) stub!\n", iface
, plength
);
2288 static HRESULT WINAPI
MediaPosition_put_CurrentPosition(IMediaPosition
* iface
, REFTIME llTime
){
2289 FIXME("(%p)->(%f) stub!\n", iface
, llTime
);
2293 static HRESULT WINAPI
MediaPosition_get_CurrentPosition(IMediaPosition
* iface
, REFTIME
*pllTime
){
2294 FIXME("(%p)->(%p) stub!\n", iface
, pllTime
);
2298 static HRESULT WINAPI
MediaPosition_get_StopTime(IMediaPosition
* iface
, REFTIME
*pllTime
){
2299 FIXME("(%p)->(%p) stub!\n", iface
, pllTime
);
2303 static HRESULT WINAPI
MediaPosition_put_StopTime(IMediaPosition
* iface
, REFTIME llTime
){
2304 FIXME("(%p)->(%f) stub!\n", iface
, llTime
);
2308 static HRESULT WINAPI
MediaPosition_get_PrerollTime(IMediaPosition
* iface
, REFTIME
*pllTime
){
2309 FIXME("(%p)->(%p) stub!\n", iface
, pllTime
);
2313 static HRESULT WINAPI
MediaPosition_put_PrerollTime(IMediaPosition
* iface
, REFTIME llTime
){
2314 FIXME("(%p)->(%f) stub!\n", iface
, llTime
);
2318 static HRESULT WINAPI
MediaPosition_put_Rate(IMediaPosition
* iface
, double dRate
){
2319 FIXME("(%p)->(%f) stub!\n", iface
, dRate
);
2323 static HRESULT WINAPI
MediaPosition_get_Rate(IMediaPosition
* iface
, double *pdRate
){
2324 FIXME("(%p)->(%p) stub!\n", iface
, pdRate
);
2328 static HRESULT WINAPI
MediaPosition_CanSeekForward(IMediaPosition
* iface
, LONG
*pCanSeekForward
){
2329 FIXME("(%p)->(%p) stub!\n", iface
, pCanSeekForward
);
2333 static HRESULT WINAPI
MediaPosition_CanSeekBackward(IMediaPosition
* iface
, LONG
*pCanSeekBackward
){
2334 FIXME("(%p)->(%p) stub!\n", iface
, pCanSeekBackward
);
2339 static const IMediaPositionVtbl IMediaPosition_VTable
=
2341 MediaPosition_QueryInterface
,
2342 MediaPosition_AddRef
,
2343 MediaPosition_Release
,
2344 MediaPosition_GetTypeInfoCount
,
2345 MediaPosition_GetTypeInfo
,
2346 MediaPosition_GetIDsOfNames
,
2347 MediaPosition_Invoke
,
2348 MediaPosition_get_Duration
,
2349 MediaPosition_put_CurrentPosition
,
2350 MediaPosition_get_CurrentPosition
,
2351 MediaPosition_get_StopTime
,
2352 MediaPosition_put_StopTime
,
2353 MediaPosition_get_PrerollTime
,
2354 MediaPosition_put_PrerollTime
,
2355 MediaPosition_put_Rate
,
2356 MediaPosition_get_Rate
,
2357 MediaPosition_CanSeekForward
,
2358 MediaPosition_CanSeekBackward
2361 static HRESULT
GetTargetInterface(IFilterGraphImpl
* pGraph
, REFIID riid
, LPVOID
* ppvObj
)
2363 HRESULT hr
= E_NOINTERFACE
;
2367 /* Check if the interface type is already registered */
2368 for (entry
= 0; entry
< pGraph
->nItfCacheEntries
; entry
++)
2369 if (riid
== pGraph
->ItfCacheEntries
[entry
].riid
)
2371 if (pGraph
->ItfCacheEntries
[entry
].iface
)
2373 /* Return the interface if available */
2374 *ppvObj
= pGraph
->ItfCacheEntries
[entry
].iface
;
2380 if (entry
>= MAX_ITF_CACHE_ENTRIES
)
2382 FIXME("Not enough space to store interface in the cache\n");
2383 return E_OUTOFMEMORY
;
2386 /* Find a filter supporting the requested interface */
2387 for (i
= 0; i
< pGraph
->nFilters
; i
++)
2389 hr
= IBaseFilter_QueryInterface(pGraph
->ppFiltersInGraph
[i
], riid
, ppvObj
);
2392 pGraph
->ItfCacheEntries
[entry
].riid
= riid
;
2393 pGraph
->ItfCacheEntries
[entry
].filter
= pGraph
->ppFiltersInGraph
[i
];
2394 pGraph
->ItfCacheEntries
[entry
].iface
= (IUnknown
*)*ppvObj
;
2395 if (entry
>= pGraph
->nItfCacheEntries
)
2396 pGraph
->nItfCacheEntries
++;
2399 if (hr
!= E_NOINTERFACE
)
2406 /*** IUnknown methods ***/
2407 static HRESULT WINAPI
BasicAudio_QueryInterface(IBasicAudio
*iface
,
2410 ICOM_THIS_MULTI(IFilterGraphImpl
, IBasicAudio_vtbl
, iface
);
2412 TRACE("(%p/%p)->(%s (%p), %p)\n", This
, iface
, debugstr_guid(riid
), riid
, ppvObj
);
2414 return Filtergraph_QueryInterface(This
, riid
, ppvObj
);
2417 static ULONG WINAPI
BasicAudio_AddRef(IBasicAudio
*iface
) {
2418 ICOM_THIS_MULTI(IFilterGraphImpl
, IBasicAudio_vtbl
, iface
);
2420 TRACE("(%p/%p)->()\n", This
, iface
);
2422 return Filtergraph_AddRef(This
);
2425 static ULONG WINAPI
BasicAudio_Release(IBasicAudio
*iface
) {
2426 ICOM_THIS_MULTI(IFilterGraphImpl
, IBasicAudio_vtbl
, iface
);
2428 TRACE("(%p/%p)->()\n", This
, iface
);
2430 return Filtergraph_Release(This
);
2433 /*** IDispatch methods ***/
2434 static HRESULT WINAPI
BasicAudio_GetTypeInfoCount(IBasicAudio
*iface
,
2436 ICOM_THIS_MULTI(IFilterGraphImpl
, IBasicAudio_vtbl
, iface
);
2437 IBasicAudio
* pBasicAudio
;
2440 TRACE("(%p/%p)->(%p)\n", This
, iface
, pctinfo
);
2442 EnterCriticalSection(&This
->cs
);
2444 hr
= GetTargetInterface(This
, &IID_IBasicAudio
, (LPVOID
*)&pBasicAudio
);
2447 hr
= IBasicAudio_GetTypeInfoCount(pBasicAudio
, pctinfo
);
2449 LeaveCriticalSection(&This
->cs
);
2454 static HRESULT WINAPI
BasicAudio_GetTypeInfo(IBasicAudio
*iface
,
2457 ITypeInfo
**ppTInfo
) {
2458 ICOM_THIS_MULTI(IFilterGraphImpl
, IBasicAudio_vtbl
, iface
);
2459 IBasicAudio
* pBasicAudio
;
2462 TRACE("(%p/%p)->(%d, %d, %p)\n", This
, iface
, iTInfo
, lcid
, ppTInfo
);
2464 EnterCriticalSection(&This
->cs
);
2466 hr
= GetTargetInterface(This
, &IID_IBasicAudio
, (LPVOID
*)&pBasicAudio
);
2469 hr
= IBasicAudio_GetTypeInfo(pBasicAudio
, iTInfo
, lcid
, ppTInfo
);
2471 LeaveCriticalSection(&This
->cs
);
2476 static HRESULT WINAPI
BasicAudio_GetIDsOfNames(IBasicAudio
*iface
,
2482 ICOM_THIS_MULTI(IFilterGraphImpl
, IBasicAudio_vtbl
, iface
);
2483 IBasicAudio
* pBasicAudio
;
2486 TRACE("(%p/%p)->(%s (%p), %p, %d, %d, %p)\n", This
, iface
, debugstr_guid(riid
), riid
, rgszNames
, cNames
, lcid
, rgDispId
);
2488 EnterCriticalSection(&This
->cs
);
2490 hr
= GetTargetInterface(This
, &IID_IBasicAudio
, (LPVOID
*)&pBasicAudio
);
2493 hr
= IBasicAudio_GetIDsOfNames(pBasicAudio
, riid
, rgszNames
, cNames
, lcid
, rgDispId
);
2495 LeaveCriticalSection(&This
->cs
);
2500 static HRESULT WINAPI
BasicAudio_Invoke(IBasicAudio
*iface
,
2501 DISPID dispIdMember
,
2505 DISPPARAMS
*pDispParams
,
2507 EXCEPINFO
*pExepInfo
,
2509 ICOM_THIS_MULTI(IFilterGraphImpl
, IBasicAudio_vtbl
, iface
);
2510 IBasicAudio
* pBasicAudio
;
2513 TRACE("(%p/%p)->(%d, %s (%p), %d, %04x, %p, %p, %p, %p)\n", This
, iface
, dispIdMember
, debugstr_guid(riid
), riid
, lcid
, wFlags
, pDispParams
, pVarResult
, pExepInfo
, puArgErr
);
2515 EnterCriticalSection(&This
->cs
);
2517 hr
= GetTargetInterface(This
, &IID_IBasicAudio
, (LPVOID
*)&pBasicAudio
);
2520 hr
= IBasicAudio_Invoke(pBasicAudio
, dispIdMember
, riid
, lcid
, wFlags
, pDispParams
, pVarResult
, pExepInfo
, puArgErr
);
2522 LeaveCriticalSection(&This
->cs
);
2527 /*** IBasicAudio methods ***/
2528 static HRESULT WINAPI
BasicAudio_put_Volume(IBasicAudio
*iface
,
2530 ICOM_THIS_MULTI(IFilterGraphImpl
, IBasicAudio_vtbl
, iface
);
2531 IBasicAudio
* pBasicAudio
;
2534 TRACE("(%p/%p)->(%ld)\n", This
, iface
, lVolume
);
2536 EnterCriticalSection(&This
->cs
);
2538 hr
= GetTargetInterface(This
, &IID_IBasicAudio
, (LPVOID
*)&pBasicAudio
);
2541 hr
= IBasicAudio_put_Volume(pBasicAudio
, lVolume
);
2543 LeaveCriticalSection(&This
->cs
);
2548 static HRESULT WINAPI
BasicAudio_get_Volume(IBasicAudio
*iface
,
2550 ICOM_THIS_MULTI(IFilterGraphImpl
, IBasicAudio_vtbl
, iface
);
2551 IBasicAudio
* pBasicAudio
;
2554 TRACE("(%p/%p)->(%p)\n", This
, iface
, plVolume
);
2556 EnterCriticalSection(&This
->cs
);
2558 hr
= GetTargetInterface(This
, &IID_IBasicAudio
, (LPVOID
*)&pBasicAudio
);
2561 hr
= IBasicAudio_get_Volume(pBasicAudio
, plVolume
);
2563 LeaveCriticalSection(&This
->cs
);
2568 static HRESULT WINAPI
BasicAudio_put_Balance(IBasicAudio
*iface
,
2570 ICOM_THIS_MULTI(IFilterGraphImpl
, IBasicAudio_vtbl
, iface
);
2571 IBasicAudio
* pBasicAudio
;
2574 TRACE("(%p/%p)->(%ld)\n", This
, iface
, lBalance
);
2576 EnterCriticalSection(&This
->cs
);
2578 hr
= GetTargetInterface(This
, &IID_IBasicAudio
, (LPVOID
*)&pBasicAudio
);
2581 hr
= IBasicAudio_put_Balance(pBasicAudio
, lBalance
);
2583 LeaveCriticalSection(&This
->cs
);
2588 static HRESULT WINAPI
BasicAudio_get_Balance(IBasicAudio
*iface
,
2590 ICOM_THIS_MULTI(IFilterGraphImpl
, IBasicAudio_vtbl
, iface
);
2591 IBasicAudio
* pBasicAudio
;
2594 TRACE("(%p/%p)->(%p)\n", This
, iface
, plBalance
);
2596 EnterCriticalSection(&This
->cs
);
2598 hr
= GetTargetInterface(This
, &IID_IBasicAudio
, (LPVOID
*)&pBasicAudio
);
2601 hr
= IBasicAudio_get_Balance(pBasicAudio
, plBalance
);
2603 LeaveCriticalSection(&This
->cs
);
2608 static const IBasicAudioVtbl IBasicAudio_VTable
=
2610 BasicAudio_QueryInterface
,
2613 BasicAudio_GetTypeInfoCount
,
2614 BasicAudio_GetTypeInfo
,
2615 BasicAudio_GetIDsOfNames
,
2617 BasicAudio_put_Volume
,
2618 BasicAudio_get_Volume
,
2619 BasicAudio_put_Balance
,
2620 BasicAudio_get_Balance
2623 /*** IUnknown methods ***/
2624 static HRESULT WINAPI
BasicVideo_QueryInterface(IBasicVideo
*iface
,
2627 ICOM_THIS_MULTI(IFilterGraphImpl
, IBasicVideo_vtbl
, iface
);
2629 TRACE("(%p/%p)->(%s (%p), %p)\n", This
, iface
, debugstr_guid(riid
), riid
, ppvObj
);
2631 return Filtergraph_QueryInterface(This
, riid
, ppvObj
);
2634 static ULONG WINAPI
BasicVideo_AddRef(IBasicVideo
*iface
) {
2635 ICOM_THIS_MULTI(IFilterGraphImpl
, IBasicVideo_vtbl
, iface
);
2637 TRACE("(%p/%p)->()\n", This
, iface
);
2639 return Filtergraph_AddRef(This
);
2642 static ULONG WINAPI
BasicVideo_Release(IBasicVideo
*iface
) {
2643 ICOM_THIS_MULTI(IFilterGraphImpl
, IBasicVideo_vtbl
, iface
);
2645 TRACE("(%p/%p)->()\n", This
, iface
);
2647 return Filtergraph_Release(This
);
2650 /*** IDispatch methods ***/
2651 static HRESULT WINAPI
BasicVideo_GetTypeInfoCount(IBasicVideo
*iface
,
2653 ICOM_THIS_MULTI(IFilterGraphImpl
, IBasicVideo_vtbl
, iface
);
2654 IBasicVideo
* pBasicVideo
;
2657 TRACE("(%p/%p)->(%p)\n", This
, iface
, pctinfo
);
2659 EnterCriticalSection(&This
->cs
);
2661 hr
= GetTargetInterface(This
, &IID_IBasicVideo
, (LPVOID
*)&pBasicVideo
);
2664 hr
= IBasicVideo_GetTypeInfoCount(pBasicVideo
, pctinfo
);
2666 LeaveCriticalSection(&This
->cs
);
2671 static HRESULT WINAPI
BasicVideo_GetTypeInfo(IBasicVideo
*iface
,
2674 ITypeInfo
**ppTInfo
) {
2675 ICOM_THIS_MULTI(IFilterGraphImpl
, IBasicVideo_vtbl
, iface
);
2676 IBasicVideo
* pBasicVideo
;
2679 TRACE("(%p/%p)->(%d, %d, %p)\n", This
, iface
, iTInfo
, lcid
, ppTInfo
);
2681 EnterCriticalSection(&This
->cs
);
2683 hr
= GetTargetInterface(This
, &IID_IBasicVideo
, (LPVOID
*)&pBasicVideo
);
2686 hr
= IBasicVideo_GetTypeInfo(pBasicVideo
, iTInfo
, lcid
, ppTInfo
);
2688 LeaveCriticalSection(&This
->cs
);
2693 static HRESULT WINAPI
BasicVideo_GetIDsOfNames(IBasicVideo
*iface
,
2699 ICOM_THIS_MULTI(IFilterGraphImpl
, IBasicVideo_vtbl
, iface
);
2700 IBasicVideo
* pBasicVideo
;
2703 TRACE("(%p/%p)->(%s (%p), %p, %d, %d, %p)\n", This
, iface
, debugstr_guid(riid
), riid
, rgszNames
, cNames
, lcid
, rgDispId
);
2705 EnterCriticalSection(&This
->cs
);
2707 hr
= GetTargetInterface(This
, &IID_IBasicVideo
, (LPVOID
*)&pBasicVideo
);
2710 hr
= IBasicVideo_GetIDsOfNames(pBasicVideo
, riid
, rgszNames
, cNames
, lcid
, rgDispId
);
2712 LeaveCriticalSection(&This
->cs
);
2717 static HRESULT WINAPI
BasicVideo_Invoke(IBasicVideo
*iface
,
2718 DISPID dispIdMember
,
2722 DISPPARAMS
*pDispParams
,
2724 EXCEPINFO
*pExepInfo
,
2726 ICOM_THIS_MULTI(IFilterGraphImpl
, IBasicVideo_vtbl
, iface
);
2727 IBasicVideo
* pBasicVideo
;
2730 TRACE("(%p/%p)->(%d, %s (%p), %d, %04x, %p, %p, %p, %p)\n", This
, iface
, dispIdMember
, debugstr_guid(riid
), riid
, lcid
, wFlags
, pDispParams
, pVarResult
, pExepInfo
, puArgErr
);
2732 EnterCriticalSection(&This
->cs
);
2734 hr
= GetTargetInterface(This
, &IID_IBasicVideo
, (LPVOID
*)&pBasicVideo
);
2737 hr
= IBasicVideo_Invoke(pBasicVideo
, dispIdMember
, riid
, lcid
, wFlags
, pDispParams
, pVarResult
, pExepInfo
, puArgErr
);
2739 LeaveCriticalSection(&This
->cs
);
2744 /*** IBasicVideo methods ***/
2745 static HRESULT WINAPI
BasicVideo_get_AvgTimePerFrame(IBasicVideo
*iface
,
2746 REFTIME
*pAvgTimePerFrame
) {
2747 ICOM_THIS_MULTI(IFilterGraphImpl
, IBasicVideo_vtbl
, iface
);
2748 IBasicVideo
* pBasicVideo
;
2751 TRACE("(%p/%p)->(%p)\n", This
, iface
, pAvgTimePerFrame
);
2753 EnterCriticalSection(&This
->cs
);
2755 hr
= GetTargetInterface(This
, &IID_IBasicVideo
, (LPVOID
*)&pBasicVideo
);
2758 hr
= IBasicVideo_get_AvgTimePerFrame(pBasicVideo
, pAvgTimePerFrame
);
2760 LeaveCriticalSection(&This
->cs
);
2765 static HRESULT WINAPI
BasicVideo_get_BitRate(IBasicVideo
*iface
,
2767 ICOM_THIS_MULTI(IFilterGraphImpl
, IBasicVideo_vtbl
, iface
);
2768 IBasicVideo
* pBasicVideo
;
2771 TRACE("(%p/%p)->(%p)\n", This
, iface
, pBitRate
);
2773 EnterCriticalSection(&This
->cs
);
2775 hr
= GetTargetInterface(This
, &IID_IBasicVideo
, (LPVOID
*)&pBasicVideo
);
2778 hr
= IBasicVideo_get_BitRate(pBasicVideo
, pBitRate
);
2780 LeaveCriticalSection(&This
->cs
);
2785 static HRESULT WINAPI
BasicVideo_get_BitErrorRate(IBasicVideo
*iface
,
2786 long *pBitErrorRate
) {
2787 ICOM_THIS_MULTI(IFilterGraphImpl
, IBasicVideo_vtbl
, iface
);
2788 IBasicVideo
* pBasicVideo
;
2791 TRACE("(%p/%p)->(%p)\n", This
, iface
, pBitErrorRate
);
2793 EnterCriticalSection(&This
->cs
);
2795 hr
= GetTargetInterface(This
, &IID_IBasicVideo
, (LPVOID
*)&pBasicVideo
);
2798 hr
= IBasicVideo_get_BitErrorRate(pBasicVideo
, pBitErrorRate
);
2800 LeaveCriticalSection(&This
->cs
);
2805 static HRESULT WINAPI
BasicVideo_get_VideoWidth(IBasicVideo
*iface
,
2806 long *pVideoWidth
) {
2807 ICOM_THIS_MULTI(IFilterGraphImpl
, IBasicVideo_vtbl
, iface
);
2808 IBasicVideo
* pBasicVideo
;
2811 TRACE("(%p/%p)->(%p)\n", This
, iface
, pVideoWidth
);
2813 EnterCriticalSection(&This
->cs
);
2815 hr
= GetTargetInterface(This
, &IID_IBasicVideo
, (LPVOID
*)&pBasicVideo
);
2818 hr
= IBasicVideo_get_VideoWidth(pBasicVideo
, pVideoWidth
);
2820 LeaveCriticalSection(&This
->cs
);
2825 static HRESULT WINAPI
BasicVideo_get_VideoHeight(IBasicVideo
*iface
,
2826 long *pVideoHeight
) {
2827 ICOM_THIS_MULTI(IFilterGraphImpl
, IBasicVideo_vtbl
, iface
);
2828 IBasicVideo
* pBasicVideo
;
2831 TRACE("(%p/%p)->(%p)\n", This
, iface
, pVideoHeight
);
2833 EnterCriticalSection(&This
->cs
);
2835 hr
= GetTargetInterface(This
, &IID_IBasicVideo
, (LPVOID
*)&pBasicVideo
);
2838 hr
= IBasicVideo_get_VideoHeight(pBasicVideo
, pVideoHeight
);
2840 LeaveCriticalSection(&This
->cs
);
2845 static HRESULT WINAPI
BasicVideo_put_SourceLeft(IBasicVideo
*iface
,
2847 ICOM_THIS_MULTI(IFilterGraphImpl
, IBasicVideo_vtbl
, iface
);
2848 IBasicVideo
* pBasicVideo
;
2851 TRACE("(%p/%p)->(%ld)\n", This
, iface
, SourceLeft
);
2853 EnterCriticalSection(&This
->cs
);
2855 hr
= GetTargetInterface(This
, &IID_IBasicVideo
, (LPVOID
*)&pBasicVideo
);
2858 hr
= IBasicVideo_put_SourceLeft(pBasicVideo
, SourceLeft
);
2860 LeaveCriticalSection(&This
->cs
);
2865 static HRESULT WINAPI
BasicVideo_get_SourceLeft(IBasicVideo
*iface
,
2866 long *pSourceLeft
) {
2867 ICOM_THIS_MULTI(IFilterGraphImpl
, IBasicVideo_vtbl
, iface
);
2868 IBasicVideo
* pBasicVideo
;
2871 TRACE("(%p/%p)->(%p)\n", This
, iface
, pSourceLeft
);
2873 EnterCriticalSection(&This
->cs
);
2875 hr
= GetTargetInterface(This
, &IID_IBasicVideo
, (LPVOID
*)&pBasicVideo
);
2878 hr
= IBasicVideo_get_SourceLeft(pBasicVideo
, pSourceLeft
);
2880 LeaveCriticalSection(&This
->cs
);
2885 static HRESULT WINAPI
BasicVideo_put_SourceWidth(IBasicVideo
*iface
,
2887 ICOM_THIS_MULTI(IFilterGraphImpl
, IBasicVideo_vtbl
, iface
);
2888 IBasicVideo
* pBasicVideo
;
2891 TRACE("(%p/%p)->(%ld)\n", This
, iface
, SourceWidth
);
2893 EnterCriticalSection(&This
->cs
);
2895 hr
= GetTargetInterface(This
, &IID_IBasicVideo
, (LPVOID
*)&pBasicVideo
);
2898 hr
= IBasicVideo_put_SourceWidth(pBasicVideo
, SourceWidth
);
2900 LeaveCriticalSection(&This
->cs
);
2905 static HRESULT WINAPI
BasicVideo_get_SourceWidth(IBasicVideo
*iface
,
2906 long *pSourceWidth
) {
2907 ICOM_THIS_MULTI(IFilterGraphImpl
, IBasicVideo_vtbl
, iface
);
2908 IBasicVideo
* pBasicVideo
;
2911 TRACE("(%p/%p)->(%p)\n", This
, iface
, pSourceWidth
);
2913 EnterCriticalSection(&This
->cs
);
2915 hr
= GetTargetInterface(This
, &IID_IBasicVideo
, (LPVOID
*)&pBasicVideo
);
2918 hr
= IBasicVideo_get_SourceWidth(pBasicVideo
, pSourceWidth
);
2920 LeaveCriticalSection(&This
->cs
);
2925 static HRESULT WINAPI
BasicVideo_put_SourceTop(IBasicVideo
*iface
,
2927 ICOM_THIS_MULTI(IFilterGraphImpl
, IBasicVideo_vtbl
, iface
);
2928 IBasicVideo
* pBasicVideo
;
2931 TRACE("(%p/%p)->(%ld)\n", This
, iface
, SourceTop
);
2933 EnterCriticalSection(&This
->cs
);
2935 hr
= GetTargetInterface(This
, &IID_IBasicVideo
, (LPVOID
*)&pBasicVideo
);
2938 hr
= IBasicVideo_put_SourceTop(pBasicVideo
, SourceTop
);
2940 LeaveCriticalSection(&This
->cs
);
2945 static HRESULT WINAPI
BasicVideo_get_SourceTop(IBasicVideo
*iface
,
2947 ICOM_THIS_MULTI(IFilterGraphImpl
, IBasicVideo_vtbl
, iface
);
2948 IBasicVideo
* pBasicVideo
;
2951 TRACE("(%p/%p)->(%p)\n", This
, iface
, pSourceTop
);
2953 EnterCriticalSection(&This
->cs
);
2955 hr
= GetTargetInterface(This
, &IID_IBasicVideo
, (LPVOID
*)&pBasicVideo
);
2958 hr
= IBasicVideo_get_SourceTop(pBasicVideo
, pSourceTop
);
2960 LeaveCriticalSection(&This
->cs
);
2965 static HRESULT WINAPI
BasicVideo_put_SourceHeight(IBasicVideo
*iface
,
2966 long SourceHeight
) {
2967 ICOM_THIS_MULTI(IFilterGraphImpl
, IBasicVideo_vtbl
, iface
);
2968 IBasicVideo
* pBasicVideo
;
2971 TRACE("(%p/%p)->(%ld)\n", This
, iface
, SourceHeight
);
2973 EnterCriticalSection(&This
->cs
);
2975 hr
= GetTargetInterface(This
, &IID_IBasicVideo
, (LPVOID
*)&pBasicVideo
);
2978 hr
= IBasicVideo_put_SourceHeight(pBasicVideo
, SourceHeight
);
2980 LeaveCriticalSection(&This
->cs
);
2985 static HRESULT WINAPI
BasicVideo_get_SourceHeight(IBasicVideo
*iface
,
2986 long *pSourceHeight
) {
2987 ICOM_THIS_MULTI(IFilterGraphImpl
, IBasicVideo_vtbl
, iface
);
2988 IBasicVideo
* pBasicVideo
;
2991 TRACE("(%p/%p)->(%p)\n", This
, iface
, pSourceHeight
);
2993 EnterCriticalSection(&This
->cs
);
2995 hr
= GetTargetInterface(This
, &IID_IBasicVideo
, (LPVOID
*)&pBasicVideo
);
2998 hr
= IBasicVideo_get_SourceHeight(pBasicVideo
, pSourceHeight
);
3000 LeaveCriticalSection(&This
->cs
);
3005 static HRESULT WINAPI
BasicVideo_put_DestinationLeft(IBasicVideo
*iface
,
3006 long DestinationLeft
) {
3007 ICOM_THIS_MULTI(IFilterGraphImpl
, IBasicVideo_vtbl
, iface
);
3008 IBasicVideo
* pBasicVideo
;
3011 TRACE("(%p/%p)->(%ld)\n", This
, iface
, DestinationLeft
);
3013 EnterCriticalSection(&This
->cs
);
3015 hr
= GetTargetInterface(This
, &IID_IBasicVideo
, (LPVOID
*)&pBasicVideo
);
3018 hr
= IBasicVideo_put_DestinationLeft(pBasicVideo
, DestinationLeft
);
3020 LeaveCriticalSection(&This
->cs
);
3025 static HRESULT WINAPI
BasicVideo_get_DestinationLeft(IBasicVideo
*iface
,
3026 long *pDestinationLeft
) {
3027 ICOM_THIS_MULTI(IFilterGraphImpl
, IBasicVideo_vtbl
, iface
);
3028 IBasicVideo
* pBasicVideo
;
3031 TRACE("(%p/%p)->(%p)\n", This
, iface
, pDestinationLeft
);
3033 EnterCriticalSection(&This
->cs
);
3035 hr
= GetTargetInterface(This
, &IID_IBasicVideo
, (LPVOID
*)&pBasicVideo
);
3038 hr
= IBasicVideo_get_DestinationLeft(pBasicVideo
, pDestinationLeft
);
3040 LeaveCriticalSection(&This
->cs
);
3045 static HRESULT WINAPI
BasicVideo_put_DestinationWidth(IBasicVideo
*iface
,
3046 long DestinationWidth
) {
3047 ICOM_THIS_MULTI(IFilterGraphImpl
, IBasicVideo_vtbl
, iface
);
3048 IBasicVideo
* pBasicVideo
;
3051 TRACE("(%p/%p)->(%ld)\n", This
, iface
, DestinationWidth
);
3053 EnterCriticalSection(&This
->cs
);
3055 hr
= GetTargetInterface(This
, &IID_IBasicVideo
, (LPVOID
*)&pBasicVideo
);
3058 hr
= IBasicVideo_put_DestinationWidth(pBasicVideo
, DestinationWidth
);
3060 LeaveCriticalSection(&This
->cs
);
3065 static HRESULT WINAPI
BasicVideo_get_DestinationWidth(IBasicVideo
*iface
,
3066 long *pDestinationWidth
) {
3067 ICOM_THIS_MULTI(IFilterGraphImpl
, IBasicVideo_vtbl
, iface
);
3068 IBasicVideo
* pBasicVideo
;
3071 TRACE("(%p/%p)->(%p)\n", This
, iface
, pDestinationWidth
);
3073 EnterCriticalSection(&This
->cs
);
3075 hr
= GetTargetInterface(This
, &IID_IBasicVideo
, (LPVOID
*)&pBasicVideo
);
3078 hr
= IBasicVideo_get_DestinationWidth(pBasicVideo
, pDestinationWidth
);
3080 LeaveCriticalSection(&This
->cs
);
3085 static HRESULT WINAPI
BasicVideo_put_DestinationTop(IBasicVideo
*iface
,
3086 long DestinationTop
) {
3087 ICOM_THIS_MULTI(IFilterGraphImpl
, IBasicVideo_vtbl
, iface
);
3088 IBasicVideo
* pBasicVideo
;
3091 TRACE("(%p/%p)->(%ld)\n", This
, iface
, DestinationTop
);
3093 EnterCriticalSection(&This
->cs
);
3095 hr
= GetTargetInterface(This
, &IID_IBasicVideo
, (LPVOID
*)&pBasicVideo
);
3098 hr
= IBasicVideo_put_DestinationTop(pBasicVideo
, DestinationTop
);
3100 LeaveCriticalSection(&This
->cs
);
3105 static HRESULT WINAPI
BasicVideo_get_DestinationTop(IBasicVideo
*iface
,
3106 long *pDestinationTop
) {
3107 ICOM_THIS_MULTI(IFilterGraphImpl
, IBasicVideo_vtbl
, iface
);
3108 IBasicVideo
* pBasicVideo
;
3111 TRACE("(%p/%p)->(%p)\n", This
, iface
, pDestinationTop
);
3113 EnterCriticalSection(&This
->cs
);
3115 hr
= GetTargetInterface(This
, &IID_IBasicVideo
, (LPVOID
*)&pBasicVideo
);
3118 hr
= IBasicVideo_get_DestinationTop(pBasicVideo
, pDestinationTop
);
3120 LeaveCriticalSection(&This
->cs
);
3125 static HRESULT WINAPI
BasicVideo_put_DestinationHeight(IBasicVideo
*iface
,
3126 long DestinationHeight
) {
3127 ICOM_THIS_MULTI(IFilterGraphImpl
, IBasicVideo_vtbl
, iface
);
3128 IBasicVideo
* pBasicVideo
;
3131 TRACE("(%p/%p)->(%ld)\n", This
, iface
, DestinationHeight
);
3133 EnterCriticalSection(&This
->cs
);
3135 hr
= GetTargetInterface(This
, &IID_IBasicVideo
, (LPVOID
*)&pBasicVideo
);
3138 hr
= IBasicVideo_put_DestinationHeight(pBasicVideo
, DestinationHeight
);
3140 LeaveCriticalSection(&This
->cs
);
3145 static HRESULT WINAPI
BasicVideo_get_DestinationHeight(IBasicVideo
*iface
,
3146 long *pDestinationHeight
) {
3147 ICOM_THIS_MULTI(IFilterGraphImpl
, IBasicVideo_vtbl
, iface
);
3148 IBasicVideo
* pBasicVideo
;
3151 TRACE("(%p/%p)->(%p)\n", This
, iface
, pDestinationHeight
);
3153 EnterCriticalSection(&This
->cs
);
3155 hr
= GetTargetInterface(This
, &IID_IBasicVideo
, (LPVOID
*)&pBasicVideo
);
3158 hr
= IBasicVideo_get_DestinationHeight(pBasicVideo
, pDestinationHeight
);
3160 LeaveCriticalSection(&This
->cs
);
3165 static HRESULT WINAPI
BasicVideo_SetSourcePosition(IBasicVideo
*iface
,
3170 ICOM_THIS_MULTI(IFilterGraphImpl
, IBasicVideo_vtbl
, iface
);
3171 IBasicVideo
* pBasicVideo
;
3174 TRACE("(%p/%p)->(%ld, %ld, %ld, %ld)\n", This
, iface
, Left
, Top
, Width
, Height
);
3176 EnterCriticalSection(&This
->cs
);
3178 hr
= GetTargetInterface(This
, &IID_IBasicVideo
, (LPVOID
*)&pBasicVideo
);
3181 hr
= IBasicVideo_SetSourcePosition(pBasicVideo
, Left
, Top
, Width
, Height
);
3183 LeaveCriticalSection(&This
->cs
);
3188 static HRESULT WINAPI
BasicVideo_GetSourcePosition(IBasicVideo
*iface
,
3193 ICOM_THIS_MULTI(IFilterGraphImpl
, IBasicVideo_vtbl
, iface
);
3194 IBasicVideo
* pBasicVideo
;
3197 TRACE("(%p/%p)->(%p, %p, %p, %p)\n", This
, iface
, pLeft
, pTop
, pWidth
, pHeight
);
3199 EnterCriticalSection(&This
->cs
);
3201 hr
= GetTargetInterface(This
, &IID_IBasicVideo
, (LPVOID
*)&pBasicVideo
);
3204 hr
= IBasicVideo_GetSourcePosition(pBasicVideo
, pLeft
, pTop
, pWidth
, pHeight
);
3206 LeaveCriticalSection(&This
->cs
);
3211 static HRESULT WINAPI
BasicVideo_SetDefaultSourcePosition(IBasicVideo
*iface
) {
3212 ICOM_THIS_MULTI(IFilterGraphImpl
, IBasicVideo_vtbl
, iface
);
3213 IBasicVideo
* pBasicVideo
;
3216 TRACE("(%p/%p)->()\n", This
, iface
);
3218 EnterCriticalSection(&This
->cs
);
3220 hr
= GetTargetInterface(This
, &IID_IBasicVideo
, (LPVOID
*)&pBasicVideo
);
3223 hr
= IBasicVideo_SetDefaultSourcePosition(pBasicVideo
);
3225 LeaveCriticalSection(&This
->cs
);
3230 static HRESULT WINAPI
BasicVideo_SetDestinationPosition(IBasicVideo
*iface
,
3235 ICOM_THIS_MULTI(IFilterGraphImpl
, IBasicVideo_vtbl
, iface
);
3236 IBasicVideo
* pBasicVideo
;
3239 TRACE("(%p/%p)->(%ld, %ld, %ld, %ld)\n", This
, iface
, Left
, Top
, Width
, Height
);
3241 EnterCriticalSection(&This
->cs
);
3243 hr
= GetTargetInterface(This
, &IID_IBasicVideo
, (LPVOID
*)&pBasicVideo
);
3246 hr
= IBasicVideo_SetDestinationPosition(pBasicVideo
, Left
, Top
, Width
, Height
);
3248 LeaveCriticalSection(&This
->cs
);
3253 static HRESULT WINAPI
BasicVideo_GetDestinationPosition(IBasicVideo
*iface
,
3258 ICOM_THIS_MULTI(IFilterGraphImpl
, IBasicVideo_vtbl
, iface
);
3259 IBasicVideo
* pBasicVideo
;
3262 TRACE("(%p/%p)->(%p, %p, %p, %p)\n", This
, iface
, pLeft
, pTop
, pWidth
, pHeight
);
3264 EnterCriticalSection(&This
->cs
);
3266 hr
= GetTargetInterface(This
, &IID_IBasicVideo
, (LPVOID
*)&pBasicVideo
);
3269 hr
= IBasicVideo_GetDestinationPosition(pBasicVideo
, pLeft
, pTop
, pWidth
, pHeight
);
3271 LeaveCriticalSection(&This
->cs
);
3276 static HRESULT WINAPI
BasicVideo_SetDefaultDestinationPosition(IBasicVideo
*iface
) {
3277 ICOM_THIS_MULTI(IFilterGraphImpl
, IBasicVideo_vtbl
, iface
);
3278 IBasicVideo
* pBasicVideo
;
3281 TRACE("(%p/%p)->()\n", This
, iface
);
3283 EnterCriticalSection(&This
->cs
);
3285 hr
= GetTargetInterface(This
, &IID_IBasicVideo
, (LPVOID
*)&pBasicVideo
);
3288 hr
= IBasicVideo_SetDefaultDestinationPosition(pBasicVideo
);
3290 LeaveCriticalSection(&This
->cs
);
3295 static HRESULT WINAPI
BasicVideo_GetVideoSize(IBasicVideo
*iface
,
3298 ICOM_THIS_MULTI(IFilterGraphImpl
, IBasicVideo_vtbl
, iface
);
3299 IBasicVideo
* pBasicVideo
;
3302 TRACE("(%p/%p)->(%p, %p)\n", This
, iface
, pWidth
, pHeight
);
3304 EnterCriticalSection(&This
->cs
);
3306 hr
= GetTargetInterface(This
, &IID_IBasicVideo
, (LPVOID
*)&pBasicVideo
);
3309 hr
= IBasicVideo_GetVideoSize(pBasicVideo
, pWidth
, pHeight
);
3311 LeaveCriticalSection(&This
->cs
);
3316 static HRESULT WINAPI
BasicVideo_GetVideoPaletteEntries(IBasicVideo
*iface
,
3321 ICOM_THIS_MULTI(IFilterGraphImpl
, IBasicVideo_vtbl
, iface
);
3322 IBasicVideo
* pBasicVideo
;
3325 TRACE("(%p/%p)->(%ld, %ld, %p, %p)\n", This
, iface
, StartIndex
, Entries
, pRetrieved
, pPalette
);
3327 EnterCriticalSection(&This
->cs
);
3329 hr
= GetTargetInterface(This
, &IID_IBasicVideo
, (LPVOID
*)&pBasicVideo
);
3332 hr
= IBasicVideo_GetVideoPaletteEntries(pBasicVideo
, StartIndex
, Entries
, pRetrieved
, pPalette
);
3334 LeaveCriticalSection(&This
->cs
);
3339 static HRESULT WINAPI
BasicVideo_GetCurrentImage(IBasicVideo
*iface
,
3342 ICOM_THIS_MULTI(IFilterGraphImpl
, IBasicVideo_vtbl
, iface
);
3343 IBasicVideo
* pBasicVideo
;
3346 TRACE("(%p/%p)->(%p, %p)\n", This
, iface
, pBufferSize
, pDIBImage
);
3348 EnterCriticalSection(&This
->cs
);
3350 hr
= GetTargetInterface(This
, &IID_IBasicVideo
, (LPVOID
*)&pBasicVideo
);
3353 hr
= IBasicVideo_GetCurrentImage(pBasicVideo
, pBufferSize
, pDIBImage
);
3355 LeaveCriticalSection(&This
->cs
);
3360 static HRESULT WINAPI
BasicVideo_IsUsingDefaultSource(IBasicVideo
*iface
) {
3361 ICOM_THIS_MULTI(IFilterGraphImpl
, IBasicVideo_vtbl
, iface
);
3362 IBasicVideo
* pBasicVideo
;
3365 TRACE("(%p/%p)->()\n", This
, iface
);
3367 EnterCriticalSection(&This
->cs
);
3369 hr
= GetTargetInterface(This
, &IID_IBasicVideo
, (LPVOID
*)&pBasicVideo
);
3372 hr
= IBasicVideo_IsUsingDefaultSource(pBasicVideo
);
3374 LeaveCriticalSection(&This
->cs
);
3379 static HRESULT WINAPI
BasicVideo_IsUsingDefaultDestination(IBasicVideo
*iface
) {
3380 ICOM_THIS_MULTI(IFilterGraphImpl
, IBasicVideo_vtbl
, iface
);
3381 IBasicVideo
* pBasicVideo
;
3384 TRACE("(%p/%p)->()\n", This
, iface
);
3386 EnterCriticalSection(&This
->cs
);
3388 hr
= GetTargetInterface(This
, &IID_IBasicVideo
, (LPVOID
*)&pBasicVideo
);
3391 hr
= IBasicVideo_IsUsingDefaultDestination(pBasicVideo
);
3393 LeaveCriticalSection(&This
->cs
);
3399 static const IBasicVideoVtbl IBasicVideo_VTable
=
3401 BasicVideo_QueryInterface
,
3404 BasicVideo_GetTypeInfoCount
,
3405 BasicVideo_GetTypeInfo
,
3406 BasicVideo_GetIDsOfNames
,
3408 BasicVideo_get_AvgTimePerFrame
,
3409 BasicVideo_get_BitRate
,
3410 BasicVideo_get_BitErrorRate
,
3411 BasicVideo_get_VideoWidth
,
3412 BasicVideo_get_VideoHeight
,
3413 BasicVideo_put_SourceLeft
,
3414 BasicVideo_get_SourceLeft
,
3415 BasicVideo_put_SourceWidth
,
3416 BasicVideo_get_SourceWidth
,
3417 BasicVideo_put_SourceTop
,
3418 BasicVideo_get_SourceTop
,
3419 BasicVideo_put_SourceHeight
,
3420 BasicVideo_get_SourceHeight
,
3421 BasicVideo_put_DestinationLeft
,
3422 BasicVideo_get_DestinationLeft
,
3423 BasicVideo_put_DestinationWidth
,
3424 BasicVideo_get_DestinationWidth
,
3425 BasicVideo_put_DestinationTop
,
3426 BasicVideo_get_DestinationTop
,
3427 BasicVideo_put_DestinationHeight
,
3428 BasicVideo_get_DestinationHeight
,
3429 BasicVideo_SetSourcePosition
,
3430 BasicVideo_GetSourcePosition
,
3431 BasicVideo_SetDefaultSourcePosition
,
3432 BasicVideo_SetDestinationPosition
,
3433 BasicVideo_GetDestinationPosition
,
3434 BasicVideo_SetDefaultDestinationPosition
,
3435 BasicVideo_GetVideoSize
,
3436 BasicVideo_GetVideoPaletteEntries
,
3437 BasicVideo_GetCurrentImage
,
3438 BasicVideo_IsUsingDefaultSource
,
3439 BasicVideo_IsUsingDefaultDestination
3443 /*** IUnknown methods ***/
3444 static HRESULT WINAPI
VideoWindow_QueryInterface(IVideoWindow
*iface
,
3447 ICOM_THIS_MULTI(IFilterGraphImpl
, IVideoWindow_vtbl
, iface
);
3449 TRACE("(%p/%p)->(%s (%p), %p)\n", This
, iface
, debugstr_guid(riid
), riid
, ppvObj
);
3451 return Filtergraph_QueryInterface(This
, riid
, ppvObj
);
3454 static ULONG WINAPI
VideoWindow_AddRef(IVideoWindow
*iface
) {
3455 ICOM_THIS_MULTI(IFilterGraphImpl
, IVideoWindow_vtbl
, iface
);
3457 TRACE("(%p/%p)->()\n", This
, iface
);
3459 return Filtergraph_AddRef(This
);
3462 static ULONG WINAPI
VideoWindow_Release(IVideoWindow
*iface
) {
3463 ICOM_THIS_MULTI(IFilterGraphImpl
, IVideoWindow_vtbl
, iface
);
3465 TRACE("(%p/%p)->()\n", This
, iface
);
3467 return Filtergraph_Release(This
);
3470 /*** IDispatch methods ***/
3471 static HRESULT WINAPI
VideoWindow_GetTypeInfoCount(IVideoWindow
*iface
,
3473 ICOM_THIS_MULTI(IFilterGraphImpl
, IVideoWindow_vtbl
, iface
);
3474 IVideoWindow
* pVideoWindow
;
3477 TRACE("(%p/%p)->(%p)\n", This
, iface
, pctinfo
);
3479 EnterCriticalSection(&This
->cs
);
3481 hr
= GetTargetInterface(This
, &IID_IVideoWindow
, (LPVOID
*)&pVideoWindow
);
3484 hr
= IVideoWindow_GetTypeInfoCount(pVideoWindow
, pctinfo
);
3486 LeaveCriticalSection(&This
->cs
);
3491 static HRESULT WINAPI
VideoWindow_GetTypeInfo(IVideoWindow
*iface
,
3494 ITypeInfo
**ppTInfo
) {
3495 ICOM_THIS_MULTI(IFilterGraphImpl
, IVideoWindow_vtbl
, iface
);
3496 IVideoWindow
* pVideoWindow
;
3499 TRACE("(%p/%p)->(%d, %d, %p)\n", This
, iface
, iTInfo
, lcid
, ppTInfo
);
3501 EnterCriticalSection(&This
->cs
);
3503 hr
= GetTargetInterface(This
, &IID_IVideoWindow
, (LPVOID
*)&pVideoWindow
);
3506 hr
= IVideoWindow_GetTypeInfo(pVideoWindow
, iTInfo
, lcid
, ppTInfo
);
3508 LeaveCriticalSection(&This
->cs
);
3513 static HRESULT WINAPI
VideoWindow_GetIDsOfNames(IVideoWindow
*iface
,
3519 ICOM_THIS_MULTI(IFilterGraphImpl
, IVideoWindow_vtbl
, iface
);
3520 IVideoWindow
* pVideoWindow
;
3523 TRACE("(%p/%p)->(%s (%p), %p, %d, %d, %p)\n", This
, iface
, debugstr_guid(riid
), riid
, rgszNames
, cNames
, lcid
, rgDispId
);
3525 EnterCriticalSection(&This
->cs
);
3527 hr
= GetTargetInterface(This
, &IID_IVideoWindow
, (LPVOID
*)&pVideoWindow
);
3530 hr
= IVideoWindow_GetIDsOfNames(pVideoWindow
, riid
, rgszNames
, cNames
, lcid
, rgDispId
);
3532 LeaveCriticalSection(&This
->cs
);
3537 static HRESULT WINAPI
VideoWindow_Invoke(IVideoWindow
*iface
,
3538 DISPID dispIdMember
,
3542 DISPPARAMS
*pDispParams
,
3544 EXCEPINFO
*pExepInfo
,
3546 ICOM_THIS_MULTI(IFilterGraphImpl
, IVideoWindow_vtbl
, iface
);
3547 IVideoWindow
* pVideoWindow
;
3550 TRACE("(%p/%p)->(%d, %s (%p), %d, %04x, %p, %p, %p, %p)\n", This
, iface
, dispIdMember
, debugstr_guid(riid
), riid
, lcid
, wFlags
, pDispParams
, pVarResult
, pExepInfo
, puArgErr
);
3552 EnterCriticalSection(&This
->cs
);
3554 hr
= GetTargetInterface(This
, &IID_IVideoWindow
, (LPVOID
*)&pVideoWindow
);
3557 hr
= IVideoWindow_Invoke(pVideoWindow
, dispIdMember
, riid
, lcid
, wFlags
, pDispParams
, pVarResult
, pExepInfo
, puArgErr
);
3559 LeaveCriticalSection(&This
->cs
);
3565 /*** IVideoWindow methods ***/
3566 static HRESULT WINAPI
VideoWindow_put_Caption(IVideoWindow
*iface
,
3568 ICOM_THIS_MULTI(IFilterGraphImpl
, IVideoWindow_vtbl
, iface
);
3569 IVideoWindow
* pVideoWindow
;
3572 TRACE("(%p/%p)->(%s (%p))\n", This
, iface
, debugstr_w(strCaption
), strCaption
);
3574 EnterCriticalSection(&This
->cs
);
3576 hr
= GetTargetInterface(This
, &IID_IVideoWindow
, (LPVOID
*)&pVideoWindow
);
3579 hr
= IVideoWindow_put_Caption(pVideoWindow
, strCaption
);
3581 LeaveCriticalSection(&This
->cs
);
3586 static HRESULT WINAPI
VideoWindow_get_Caption(IVideoWindow
*iface
,
3588 ICOM_THIS_MULTI(IFilterGraphImpl
, IVideoWindow_vtbl
, iface
);
3589 IVideoWindow
* pVideoWindow
;
3592 TRACE("(%p/%p)->(%p)\n", This
, iface
, strCaption
);
3594 EnterCriticalSection(&This
->cs
);
3596 hr
= GetTargetInterface(This
, &IID_IVideoWindow
, (LPVOID
*)&pVideoWindow
);
3599 hr
= IVideoWindow_get_Caption(pVideoWindow
, strCaption
);
3601 LeaveCriticalSection(&This
->cs
);
3606 static HRESULT WINAPI
VideoWindow_put_WindowStyle(IVideoWindow
*iface
,
3608 ICOM_THIS_MULTI(IFilterGraphImpl
, IVideoWindow_vtbl
, iface
);
3609 IVideoWindow
* pVideoWindow
;
3612 TRACE("(%p/%p)->(%ld)\n", This
, iface
, WindowStyle
);
3614 EnterCriticalSection(&This
->cs
);
3616 hr
= GetTargetInterface(This
, &IID_IVideoWindow
, (LPVOID
*)&pVideoWindow
);
3619 hr
= IVideoWindow_put_WindowStyle(pVideoWindow
, WindowStyle
);
3621 LeaveCriticalSection(&This
->cs
);
3626 static HRESULT WINAPI
VideoWindow_get_WindowStyle(IVideoWindow
*iface
,
3627 long *WindowStyle
) {
3628 ICOM_THIS_MULTI(IFilterGraphImpl
, IVideoWindow_vtbl
, iface
);
3629 IVideoWindow
* pVideoWindow
;
3632 TRACE("(%p/%p)->(%p)\n", This
, iface
, WindowStyle
);
3634 EnterCriticalSection(&This
->cs
);
3636 hr
= GetTargetInterface(This
, &IID_IVideoWindow
, (LPVOID
*)&pVideoWindow
);
3639 hr
= IVideoWindow_get_WindowStyle(pVideoWindow
, WindowStyle
);
3641 LeaveCriticalSection(&This
->cs
);
3646 static HRESULT WINAPI
VideoWindow_put_WindowStyleEx(IVideoWindow
*iface
,
3647 long WindowStyleEx
) {
3648 ICOM_THIS_MULTI(IFilterGraphImpl
, IVideoWindow_vtbl
, iface
);
3649 IVideoWindow
* pVideoWindow
;
3652 TRACE("(%p/%p)->(%ld)\n", This
, iface
, WindowStyleEx
);
3654 EnterCriticalSection(&This
->cs
);
3656 hr
= GetTargetInterface(This
, &IID_IVideoWindow
, (LPVOID
*)&pVideoWindow
);
3659 hr
= IVideoWindow_put_WindowStyleEx(pVideoWindow
, WindowStyleEx
);
3661 LeaveCriticalSection(&This
->cs
);
3666 static HRESULT WINAPI
VideoWindow_get_WindowStyleEx(IVideoWindow
*iface
,
3667 long *WindowStyleEx
) {
3668 ICOM_THIS_MULTI(IFilterGraphImpl
, IVideoWindow_vtbl
, iface
);
3669 IVideoWindow
* pVideoWindow
;
3672 TRACE("(%p/%p)->(%p)\n", This
, iface
, WindowStyleEx
);
3674 EnterCriticalSection(&This
->cs
);
3676 hr
= GetTargetInterface(This
, &IID_IVideoWindow
, (LPVOID
*)&pVideoWindow
);
3679 hr
= IVideoWindow_get_WindowStyleEx(pVideoWindow
, WindowStyleEx
);
3681 LeaveCriticalSection(&This
->cs
);
3686 static HRESULT WINAPI
VideoWindow_put_AutoShow(IVideoWindow
*iface
,
3688 ICOM_THIS_MULTI(IFilterGraphImpl
, IVideoWindow_vtbl
, iface
);
3689 IVideoWindow
* pVideoWindow
;
3692 TRACE("(%p/%p)->(%ld)\n", This
, iface
, AutoShow
);
3694 EnterCriticalSection(&This
->cs
);
3696 hr
= GetTargetInterface(This
, &IID_IVideoWindow
, (LPVOID
*)&pVideoWindow
);
3699 hr
= IVideoWindow_put_AutoShow(pVideoWindow
, AutoShow
);
3701 LeaveCriticalSection(&This
->cs
);
3706 static HRESULT WINAPI
VideoWindow_get_AutoShow(IVideoWindow
*iface
,
3708 ICOM_THIS_MULTI(IFilterGraphImpl
, IVideoWindow_vtbl
, iface
);
3709 IVideoWindow
* pVideoWindow
;
3712 TRACE("(%p/%p)->(%p)\n", This
, iface
, AutoShow
);
3714 EnterCriticalSection(&This
->cs
);
3716 hr
= GetTargetInterface(This
, &IID_IVideoWindow
, (LPVOID
*)&pVideoWindow
);
3719 hr
= IVideoWindow_get_AutoShow(pVideoWindow
, AutoShow
);
3721 LeaveCriticalSection(&This
->cs
);
3726 static HRESULT WINAPI
VideoWindow_put_WindowState(IVideoWindow
*iface
,
3728 ICOM_THIS_MULTI(IFilterGraphImpl
, IVideoWindow_vtbl
, iface
);
3729 IVideoWindow
* pVideoWindow
;
3732 TRACE("(%p/%p)->(%ld)\n", This
, iface
, WindowState
);
3734 EnterCriticalSection(&This
->cs
);
3736 hr
= GetTargetInterface(This
, &IID_IVideoWindow
, (LPVOID
*)&pVideoWindow
);
3739 hr
= IVideoWindow_put_WindowState(pVideoWindow
, WindowState
);
3741 LeaveCriticalSection(&This
->cs
);
3746 static HRESULT WINAPI
VideoWindow_get_WindowState(IVideoWindow
*iface
,
3747 long *WindowState
) {
3748 ICOM_THIS_MULTI(IFilterGraphImpl
, IVideoWindow_vtbl
, iface
);
3749 IVideoWindow
* pVideoWindow
;
3752 TRACE("(%p/%p)->(%p)\n", This
, iface
, WindowState
);
3754 EnterCriticalSection(&This
->cs
);
3756 hr
= GetTargetInterface(This
, &IID_IVideoWindow
, (LPVOID
*)&pVideoWindow
);
3759 hr
= IVideoWindow_get_WindowState(pVideoWindow
, WindowState
);
3761 LeaveCriticalSection(&This
->cs
);
3766 static HRESULT WINAPI
VideoWindow_put_BackgroundPalette(IVideoWindow
*iface
,
3767 long BackgroundPalette
) {
3768 ICOM_THIS_MULTI(IFilterGraphImpl
, IVideoWindow_vtbl
, iface
);
3769 IVideoWindow
* pVideoWindow
;
3772 TRACE("(%p/%p)->(%ld)\n", This
, iface
, BackgroundPalette
);
3774 EnterCriticalSection(&This
->cs
);
3776 hr
= GetTargetInterface(This
, &IID_IVideoWindow
, (LPVOID
*)&pVideoWindow
);
3779 hr
= IVideoWindow_put_BackgroundPalette(pVideoWindow
, BackgroundPalette
);
3781 LeaveCriticalSection(&This
->cs
);
3786 static HRESULT WINAPI
VideoWindow_get_BackgroundPalette(IVideoWindow
*iface
,
3787 long *pBackgroundPalette
) {
3788 ICOM_THIS_MULTI(IFilterGraphImpl
, IVideoWindow_vtbl
, iface
);
3789 IVideoWindow
* pVideoWindow
;
3792 TRACE("(%p/%p)->(%p)\n", This
, iface
, pBackgroundPalette
);
3794 EnterCriticalSection(&This
->cs
);
3796 hr
= GetTargetInterface(This
, &IID_IVideoWindow
, (LPVOID
*)&pVideoWindow
);
3799 hr
= IVideoWindow_get_BackgroundPalette(pVideoWindow
, pBackgroundPalette
);
3801 LeaveCriticalSection(&This
->cs
);
3806 static HRESULT WINAPI
VideoWindow_put_Visible(IVideoWindow
*iface
,
3808 ICOM_THIS_MULTI(IFilterGraphImpl
, IVideoWindow_vtbl
, iface
);
3809 IVideoWindow
* pVideoWindow
;
3812 TRACE("(%p/%p)->(%ld)\n", This
, iface
, Visible
);
3814 EnterCriticalSection(&This
->cs
);
3816 hr
= GetTargetInterface(This
, &IID_IVideoWindow
, (LPVOID
*)&pVideoWindow
);
3819 hr
= IVideoWindow_put_Visible(pVideoWindow
, Visible
);
3821 LeaveCriticalSection(&This
->cs
);
3826 static HRESULT WINAPI
VideoWindow_get_Visible(IVideoWindow
*iface
,
3828 ICOM_THIS_MULTI(IFilterGraphImpl
, IVideoWindow_vtbl
, iface
);
3829 IVideoWindow
* pVideoWindow
;
3832 TRACE("(%p/%p)->(%p)\n", This
, iface
, pVisible
);
3834 EnterCriticalSection(&This
->cs
);
3836 hr
= GetTargetInterface(This
, &IID_IVideoWindow
, (LPVOID
*)&pVideoWindow
);
3839 hr
= IVideoWindow_get_Visible(pVideoWindow
, pVisible
);
3841 LeaveCriticalSection(&This
->cs
);
3846 static HRESULT WINAPI
VideoWindow_put_Left(IVideoWindow
*iface
,
3848 ICOM_THIS_MULTI(IFilterGraphImpl
, IVideoWindow_vtbl
, iface
);
3849 IVideoWindow
* pVideoWindow
;
3852 TRACE("(%p/%p)->(%ld)\n", This
, iface
, Left
);
3854 EnterCriticalSection(&This
->cs
);
3856 hr
= GetTargetInterface(This
, &IID_IVideoWindow
, (LPVOID
*)&pVideoWindow
);
3859 hr
= IVideoWindow_put_Left(pVideoWindow
, Left
);
3861 LeaveCriticalSection(&This
->cs
);
3866 static HRESULT WINAPI
VideoWindow_get_Left(IVideoWindow
*iface
,
3868 ICOM_THIS_MULTI(IFilterGraphImpl
, IVideoWindow_vtbl
, iface
);
3869 IVideoWindow
* pVideoWindow
;
3872 TRACE("(%p/%p)->(%p)\n", This
, iface
, pLeft
);
3874 EnterCriticalSection(&This
->cs
);
3876 hr
= GetTargetInterface(This
, &IID_IVideoWindow
, (LPVOID
*)&pVideoWindow
);
3879 hr
= IVideoWindow_get_Left(pVideoWindow
, pLeft
);
3881 LeaveCriticalSection(&This
->cs
);
3886 static HRESULT WINAPI
VideoWindow_put_Width(IVideoWindow
*iface
,
3888 ICOM_THIS_MULTI(IFilterGraphImpl
, IVideoWindow_vtbl
, iface
);
3889 IVideoWindow
* pVideoWindow
;
3892 TRACE("(%p/%p)->(%ld)\n", This
, iface
, Width
);
3894 EnterCriticalSection(&This
->cs
);
3896 hr
= GetTargetInterface(This
, &IID_IVideoWindow
, (LPVOID
*)&pVideoWindow
);
3899 hr
= IVideoWindow_put_Width(pVideoWindow
, Width
);
3901 LeaveCriticalSection(&This
->cs
);
3906 static HRESULT WINAPI
VideoWindow_get_Width(IVideoWindow
*iface
,
3908 ICOM_THIS_MULTI(IFilterGraphImpl
, IVideoWindow_vtbl
, iface
);
3909 IVideoWindow
* pVideoWindow
;
3912 TRACE("(%p/%p)->(%p)\n", This
, iface
, pWidth
);
3914 EnterCriticalSection(&This
->cs
);
3916 hr
= GetTargetInterface(This
, &IID_IVideoWindow
, (LPVOID
*)&pVideoWindow
);
3919 hr
= IVideoWindow_get_Width(pVideoWindow
, pWidth
);
3921 LeaveCriticalSection(&This
->cs
);
3926 static HRESULT WINAPI
VideoWindow_put_Top(IVideoWindow
*iface
,
3928 ICOM_THIS_MULTI(IFilterGraphImpl
, IVideoWindow_vtbl
, iface
);
3929 IVideoWindow
* pVideoWindow
;
3932 TRACE("(%p/%p)->(%ld)\n", This
, iface
, Top
);
3934 EnterCriticalSection(&This
->cs
);
3936 hr
= GetTargetInterface(This
, &IID_IVideoWindow
, (LPVOID
*)&pVideoWindow
);
3939 hr
= IVideoWindow_put_Top(pVideoWindow
, Top
);
3941 LeaveCriticalSection(&This
->cs
);
3946 static HRESULT WINAPI
VideoWindow_get_Top(IVideoWindow
*iface
,
3948 ICOM_THIS_MULTI(IFilterGraphImpl
, IVideoWindow_vtbl
, iface
);
3949 IVideoWindow
* pVideoWindow
;
3952 TRACE("(%p/%p)->(%p)\n", This
, iface
, pTop
);
3954 EnterCriticalSection(&This
->cs
);
3956 hr
= GetTargetInterface(This
, &IID_IVideoWindow
, (LPVOID
*)&pVideoWindow
);
3959 hr
= IVideoWindow_get_Top(pVideoWindow
, pTop
);
3961 LeaveCriticalSection(&This
->cs
);
3966 static HRESULT WINAPI
VideoWindow_put_Height(IVideoWindow
*iface
,
3968 ICOM_THIS_MULTI(IFilterGraphImpl
, IVideoWindow_vtbl
, iface
);
3969 IVideoWindow
* pVideoWindow
;
3972 TRACE("(%p/%p)->(%ld)\n", This
, iface
, Height
);
3974 EnterCriticalSection(&This
->cs
);
3976 hr
= GetTargetInterface(This
, &IID_IVideoWindow
, (LPVOID
*)&pVideoWindow
);
3979 hr
= IVideoWindow_put_Height(pVideoWindow
, Height
);
3981 LeaveCriticalSection(&This
->cs
);
3986 static HRESULT WINAPI
VideoWindow_get_Height(IVideoWindow
*iface
,
3988 ICOM_THIS_MULTI(IFilterGraphImpl
, IVideoWindow_vtbl
, iface
);
3989 IVideoWindow
* pVideoWindow
;
3992 TRACE("(%p/%p)->(%p)\n", This
, iface
, pHeight
);
3994 EnterCriticalSection(&This
->cs
);
3996 hr
= GetTargetInterface(This
, &IID_IVideoWindow
, (LPVOID
*)&pVideoWindow
);
3999 hr
= IVideoWindow_get_Height(pVideoWindow
, pHeight
);
4001 LeaveCriticalSection(&This
->cs
);
4006 static HRESULT WINAPI
VideoWindow_put_Owner(IVideoWindow
*iface
,
4008 ICOM_THIS_MULTI(IFilterGraphImpl
, IVideoWindow_vtbl
, iface
);
4009 IVideoWindow
* pVideoWindow
;
4012 TRACE("(%p/%p)->(%08x)\n", This
, iface
, (DWORD
) Owner
);
4014 EnterCriticalSection(&This
->cs
);
4016 hr
= GetTargetInterface(This
, &IID_IVideoWindow
, (LPVOID
*)&pVideoWindow
);
4019 hr
= IVideoWindow_put_Owner(pVideoWindow
, Owner
);
4021 LeaveCriticalSection(&This
->cs
);
4026 static HRESULT WINAPI
VideoWindow_get_Owner(IVideoWindow
*iface
,
4028 ICOM_THIS_MULTI(IFilterGraphImpl
, IVideoWindow_vtbl
, iface
);
4029 IVideoWindow
* pVideoWindow
;
4032 TRACE("(%p/%p)->(%p)\n", This
, iface
, Owner
);
4034 EnterCriticalSection(&This
->cs
);
4036 hr
= GetTargetInterface(This
, &IID_IVideoWindow
, (LPVOID
*)&pVideoWindow
);
4039 hr
= IVideoWindow_get_Owner(pVideoWindow
, Owner
);
4041 LeaveCriticalSection(&This
->cs
);
4046 static HRESULT WINAPI
VideoWindow_put_MessageDrain(IVideoWindow
*iface
,
4048 ICOM_THIS_MULTI(IFilterGraphImpl
, IVideoWindow_vtbl
, iface
);
4049 IVideoWindow
* pVideoWindow
;
4052 TRACE("(%p/%p)->(%08x)\n", This
, iface
, (DWORD
) Drain
);
4054 EnterCriticalSection(&This
->cs
);
4056 hr
= GetTargetInterface(This
, &IID_IVideoWindow
, (LPVOID
*)&pVideoWindow
);
4059 hr
= IVideoWindow_put_MessageDrain(pVideoWindow
, Drain
);
4061 LeaveCriticalSection(&This
->cs
);
4066 static HRESULT WINAPI
VideoWindow_get_MessageDrain(IVideoWindow
*iface
,
4068 ICOM_THIS_MULTI(IFilterGraphImpl
, IVideoWindow_vtbl
, iface
);
4069 IVideoWindow
* pVideoWindow
;
4072 TRACE("(%p/%p)->(%p)\n", This
, iface
, Drain
);
4074 EnterCriticalSection(&This
->cs
);
4076 hr
= GetTargetInterface(This
, &IID_IVideoWindow
, (LPVOID
*)&pVideoWindow
);
4079 hr
= IVideoWindow_get_MessageDrain(pVideoWindow
, Drain
);
4081 LeaveCriticalSection(&This
->cs
);
4086 static HRESULT WINAPI
VideoWindow_get_BorderColor(IVideoWindow
*iface
,
4088 ICOM_THIS_MULTI(IFilterGraphImpl
, IVideoWindow_vtbl
, iface
);
4089 IVideoWindow
* pVideoWindow
;
4092 TRACE("(%p/%p)->(%p)\n", This
, iface
, Color
);
4094 EnterCriticalSection(&This
->cs
);
4096 hr
= GetTargetInterface(This
, &IID_IVideoWindow
, (LPVOID
*)&pVideoWindow
);
4099 hr
= IVideoWindow_get_BorderColor(pVideoWindow
, Color
);
4101 LeaveCriticalSection(&This
->cs
);
4106 static HRESULT WINAPI
VideoWindow_put_BorderColor(IVideoWindow
*iface
,
4108 ICOM_THIS_MULTI(IFilterGraphImpl
, IVideoWindow_vtbl
, iface
);
4109 IVideoWindow
* pVideoWindow
;
4112 TRACE("(%p/%p)->(%ld)\n", This
, iface
, Color
);
4114 EnterCriticalSection(&This
->cs
);
4116 hr
= GetTargetInterface(This
, &IID_IVideoWindow
, (LPVOID
*)&pVideoWindow
);
4119 hr
= IVideoWindow_put_BorderColor(pVideoWindow
, Color
);
4121 LeaveCriticalSection(&This
->cs
);
4126 static HRESULT WINAPI
VideoWindow_get_FullScreenMode(IVideoWindow
*iface
,
4127 long *FullScreenMode
) {
4128 ICOM_THIS_MULTI(IFilterGraphImpl
, IVideoWindow_vtbl
, iface
);
4129 IVideoWindow
* pVideoWindow
;
4132 TRACE("(%p/%p)->(%p)\n", This
, iface
, FullScreenMode
);
4134 EnterCriticalSection(&This
->cs
);
4136 hr
= GetTargetInterface(This
, &IID_IVideoWindow
, (LPVOID
*)&pVideoWindow
);
4139 hr
= IVideoWindow_get_FullScreenMode(pVideoWindow
, FullScreenMode
);
4141 LeaveCriticalSection(&This
->cs
);
4146 static HRESULT WINAPI
VideoWindow_put_FullScreenMode(IVideoWindow
*iface
,
4147 long FullScreenMode
) {
4148 ICOM_THIS_MULTI(IFilterGraphImpl
, IVideoWindow_vtbl
, iface
);
4149 IVideoWindow
* pVideoWindow
;
4152 TRACE("(%p/%p)->(%ld)\n", This
, iface
, FullScreenMode
);
4154 EnterCriticalSection(&This
->cs
);
4156 hr
= GetTargetInterface(This
, &IID_IVideoWindow
, (LPVOID
*)&pVideoWindow
);
4159 hr
= IVideoWindow_put_FullScreenMode(pVideoWindow
, FullScreenMode
);
4161 LeaveCriticalSection(&This
->cs
);
4166 static HRESULT WINAPI
VideoWindow_SetWindowForeground(IVideoWindow
*iface
,
4168 ICOM_THIS_MULTI(IFilterGraphImpl
, IVideoWindow_vtbl
, iface
);
4169 IVideoWindow
* pVideoWindow
;
4172 TRACE("(%p/%p)->(%ld)\n", This
, iface
, Focus
);
4174 EnterCriticalSection(&This
->cs
);
4176 hr
= GetTargetInterface(This
, &IID_IVideoWindow
, (LPVOID
*)&pVideoWindow
);
4179 hr
= IVideoWindow_SetWindowForeground(pVideoWindow
, Focus
);
4181 LeaveCriticalSection(&This
->cs
);
4186 static HRESULT WINAPI
VideoWindow_NotifyOwnerMessage(IVideoWindow
*iface
,
4191 ICOM_THIS_MULTI(IFilterGraphImpl
, IVideoWindow_vtbl
, iface
);
4192 IVideoWindow
* pVideoWindow
;
4195 TRACE("(%p/%p)->(%08x, %ld, %08lx, %08lx)\n", This
, iface
, (DWORD
) hwnd
, uMsg
, wParam
, lParam
);
4197 EnterCriticalSection(&This
->cs
);
4199 hr
= GetTargetInterface(This
, &IID_IVideoWindow
, (LPVOID
*)&pVideoWindow
);
4202 hr
= IVideoWindow_NotifyOwnerMessage(pVideoWindow
, hwnd
, uMsg
, wParam
, lParam
);
4204 LeaveCriticalSection(&This
->cs
);
4209 static HRESULT WINAPI
VideoWindow_SetWindowPosition(IVideoWindow
*iface
,
4214 ICOM_THIS_MULTI(IFilterGraphImpl
, IVideoWindow_vtbl
, iface
);
4215 IVideoWindow
* pVideoWindow
;
4218 TRACE("(%p/%p)->(%ld, %ld, %ld, %ld)\n", This
, iface
, Left
, Top
, Width
, Height
);
4220 EnterCriticalSection(&This
->cs
);
4222 hr
= GetTargetInterface(This
, &IID_IVideoWindow
, (LPVOID
*)&pVideoWindow
);
4225 hr
= IVideoWindow_SetWindowPosition(pVideoWindow
, Left
, Top
, Width
, Height
);
4227 LeaveCriticalSection(&This
->cs
);
4232 static HRESULT WINAPI
VideoWindow_GetWindowPosition(IVideoWindow
*iface
,
4237 ICOM_THIS_MULTI(IFilterGraphImpl
, IVideoWindow_vtbl
, iface
);
4238 IVideoWindow
* pVideoWindow
;
4241 TRACE("(%p/%p)->(%p, %p, %p, %p)\n", This
, iface
, pLeft
, pTop
, pWidth
, pHeight
);
4243 EnterCriticalSection(&This
->cs
);
4245 hr
= GetTargetInterface(This
, &IID_IVideoWindow
, (LPVOID
*)&pVideoWindow
);
4248 hr
= IVideoWindow_GetWindowPosition(pVideoWindow
, pLeft
, pTop
, pWidth
, pHeight
);
4250 LeaveCriticalSection(&This
->cs
);
4255 static HRESULT WINAPI
VideoWindow_GetMinIdealImageSize(IVideoWindow
*iface
,
4258 ICOM_THIS_MULTI(IFilterGraphImpl
, IVideoWindow_vtbl
, iface
);
4259 IVideoWindow
* pVideoWindow
;
4262 TRACE("(%p/%p)->(%p, %p)\n", This
, iface
, pWidth
, pHeight
);
4264 EnterCriticalSection(&This
->cs
);
4266 hr
= GetTargetInterface(This
, &IID_IVideoWindow
, (LPVOID
*)&pVideoWindow
);
4269 hr
= IVideoWindow_GetMinIdealImageSize(pVideoWindow
, pWidth
, pHeight
);
4271 LeaveCriticalSection(&This
->cs
);
4276 static HRESULT WINAPI
VideoWindow_GetMaxIdealImageSize(IVideoWindow
*iface
,
4279 ICOM_THIS_MULTI(IFilterGraphImpl
, IVideoWindow_vtbl
, iface
);
4280 IVideoWindow
* pVideoWindow
;
4283 TRACE("(%p/%p)->(%p, %p)\n", This
, iface
, pWidth
, pHeight
);
4285 EnterCriticalSection(&This
->cs
);
4287 hr
= GetTargetInterface(This
, &IID_IVideoWindow
, (LPVOID
*)&pVideoWindow
);
4290 hr
= IVideoWindow_GetMaxIdealImageSize(pVideoWindow
, pWidth
, pHeight
);
4292 LeaveCriticalSection(&This
->cs
);
4297 static HRESULT WINAPI
VideoWindow_GetRestorePosition(IVideoWindow
*iface
,
4302 ICOM_THIS_MULTI(IFilterGraphImpl
, IVideoWindow_vtbl
, iface
);
4303 IVideoWindow
* pVideoWindow
;
4306 TRACE("(%p/%p)->(%p, %p, %p, %p)\n", This
, iface
, pLeft
, pTop
, pWidth
, pHeight
);
4308 EnterCriticalSection(&This
->cs
);
4310 hr
= GetTargetInterface(This
, &IID_IVideoWindow
, (LPVOID
*)&pVideoWindow
);
4313 hr
= IVideoWindow_GetRestorePosition(pVideoWindow
, pLeft
, pTop
, pWidth
, pHeight
);
4315 LeaveCriticalSection(&This
->cs
);
4320 static HRESULT WINAPI
VideoWindow_HideCursor(IVideoWindow
*iface
,
4322 ICOM_THIS_MULTI(IFilterGraphImpl
, IVideoWindow_vtbl
, iface
);
4323 IVideoWindow
* pVideoWindow
;
4326 TRACE("(%p/%p)->(%ld)\n", This
, iface
, HideCursor
);
4328 EnterCriticalSection(&This
->cs
);
4330 hr
= GetTargetInterface(This
, &IID_IVideoWindow
, (LPVOID
*)&pVideoWindow
);
4333 hr
= IVideoWindow_HideCursor(pVideoWindow
, HideCursor
);
4335 LeaveCriticalSection(&This
->cs
);
4340 static HRESULT WINAPI
VideoWindow_IsCursorHidden(IVideoWindow
*iface
,
4341 long *CursorHidden
) {
4342 ICOM_THIS_MULTI(IFilterGraphImpl
, IVideoWindow_vtbl
, iface
);
4343 IVideoWindow
* pVideoWindow
;
4346 TRACE("(%p/%p)->(%p)\n", This
, iface
, CursorHidden
);
4348 EnterCriticalSection(&This
->cs
);
4350 hr
= GetTargetInterface(This
, &IID_IVideoWindow
, (LPVOID
*)&pVideoWindow
);
4353 hr
= IVideoWindow_IsCursorHidden(pVideoWindow
, CursorHidden
);
4355 LeaveCriticalSection(&This
->cs
);
4361 static const IVideoWindowVtbl IVideoWindow_VTable
=
4363 VideoWindow_QueryInterface
,
4365 VideoWindow_Release
,
4366 VideoWindow_GetTypeInfoCount
,
4367 VideoWindow_GetTypeInfo
,
4368 VideoWindow_GetIDsOfNames
,
4370 VideoWindow_put_Caption
,
4371 VideoWindow_get_Caption
,
4372 VideoWindow_put_WindowStyle
,
4373 VideoWindow_get_WindowStyle
,
4374 VideoWindow_put_WindowStyleEx
,
4375 VideoWindow_get_WindowStyleEx
,
4376 VideoWindow_put_AutoShow
,
4377 VideoWindow_get_AutoShow
,
4378 VideoWindow_put_WindowState
,
4379 VideoWindow_get_WindowState
,
4380 VideoWindow_put_BackgroundPalette
,
4381 VideoWindow_get_BackgroundPalette
,
4382 VideoWindow_put_Visible
,
4383 VideoWindow_get_Visible
,
4384 VideoWindow_put_Left
,
4385 VideoWindow_get_Left
,
4386 VideoWindow_put_Width
,
4387 VideoWindow_get_Width
,
4388 VideoWindow_put_Top
,
4389 VideoWindow_get_Top
,
4390 VideoWindow_put_Height
,
4391 VideoWindow_get_Height
,
4392 VideoWindow_put_Owner
,
4393 VideoWindow_get_Owner
,
4394 VideoWindow_put_MessageDrain
,
4395 VideoWindow_get_MessageDrain
,
4396 VideoWindow_get_BorderColor
,
4397 VideoWindow_put_BorderColor
,
4398 VideoWindow_get_FullScreenMode
,
4399 VideoWindow_put_FullScreenMode
,
4400 VideoWindow_SetWindowForeground
,
4401 VideoWindow_NotifyOwnerMessage
,
4402 VideoWindow_SetWindowPosition
,
4403 VideoWindow_GetWindowPosition
,
4404 VideoWindow_GetMinIdealImageSize
,
4405 VideoWindow_GetMaxIdealImageSize
,
4406 VideoWindow_GetRestorePosition
,
4407 VideoWindow_HideCursor
,
4408 VideoWindow_IsCursorHidden
4412 /*** IUnknown methods ***/
4413 static HRESULT WINAPI
MediaEvent_QueryInterface(IMediaEventEx
*iface
,
4416 ICOM_THIS_MULTI(IFilterGraphImpl
, IMediaEventEx_vtbl
, iface
);
4418 TRACE("(%p/%p)->(%s (%p), %p)\n", This
, iface
, debugstr_guid(riid
), riid
, ppvObj
);
4420 return Filtergraph_QueryInterface(This
, riid
, ppvObj
);
4423 static ULONG WINAPI
MediaEvent_AddRef(IMediaEventEx
*iface
) {
4424 ICOM_THIS_MULTI(IFilterGraphImpl
, IMediaEventEx_vtbl
, iface
);
4426 TRACE("(%p/%p)->()\n", This
, iface
);
4428 return Filtergraph_AddRef(This
);
4431 static ULONG WINAPI
MediaEvent_Release(IMediaEventEx
*iface
) {
4432 ICOM_THIS_MULTI(IFilterGraphImpl
, IMediaEventEx_vtbl
, iface
);
4434 TRACE("(%p/%p)->()\n", This
, iface
);
4436 return Filtergraph_Release(This
);
4439 /*** IDispatch methods ***/
4440 static HRESULT WINAPI
MediaEvent_GetTypeInfoCount(IMediaEventEx
*iface
,
4442 ICOM_THIS_MULTI(IFilterGraphImpl
, IMediaEventEx_vtbl
, iface
);
4444 TRACE("(%p/%p)->(%p): stub !!!\n", This
, iface
, pctinfo
);
4449 static HRESULT WINAPI
MediaEvent_GetTypeInfo(IMediaEventEx
*iface
,
4452 ITypeInfo
**ppTInfo
) {
4453 ICOM_THIS_MULTI(IFilterGraphImpl
, IMediaEventEx_vtbl
, iface
);
4455 TRACE("(%p/%p)->(%d, %d, %p): stub !!!\n", This
, iface
, iTInfo
, lcid
, ppTInfo
);
4460 static HRESULT WINAPI
MediaEvent_GetIDsOfNames(IMediaEventEx
*iface
,
4466 ICOM_THIS_MULTI(IFilterGraphImpl
, IMediaEventEx_vtbl
, iface
);
4468 TRACE("(%p/%p)->(%s (%p), %p, %d, %d, %p): stub !!!\n", This
, iface
, debugstr_guid(riid
), riid
, rgszNames
, cNames
, lcid
, rgDispId
);
4473 static HRESULT WINAPI
MediaEvent_Invoke(IMediaEventEx
*iface
,
4474 DISPID dispIdMember
,
4478 DISPPARAMS
*pDispParams
,
4480 EXCEPINFO
*pExepInfo
,
4482 ICOM_THIS_MULTI(IFilterGraphImpl
, IMediaEventEx_vtbl
, iface
);
4484 TRACE("(%p/%p)->(%d, %s (%p), %d, %04x, %p, %p, %p, %p): stub !!!\n", This
, iface
, dispIdMember
, debugstr_guid(riid
), riid
, lcid
, wFlags
, pDispParams
, pVarResult
, pExepInfo
, puArgErr
);
4489 /*** IMediaEvent methods ***/
4490 static HRESULT WINAPI
MediaEvent_GetEventHandle(IMediaEventEx
*iface
,
4492 ICOM_THIS_MULTI(IFilterGraphImpl
, IMediaEventEx_vtbl
, iface
);
4494 TRACE("(%p/%p)->(%p)\n", This
, iface
, hEvent
);
4496 *hEvent
= (OAEVENT
)This
->evqueue
.msg_event
;
4501 static HRESULT WINAPI
MediaEvent_GetEvent(IMediaEventEx
*iface
,
4506 ICOM_THIS_MULTI(IFilterGraphImpl
, IMediaEventEx_vtbl
, iface
);
4509 TRACE("(%p/%p)->(%p, %p, %p, %ld)\n", This
, iface
, lEventCode
, lParam1
, lParam2
, msTimeout
);
4511 if (EventsQueue_GetEvent(&This
->evqueue
, &evt
, msTimeout
))
4513 *lEventCode
= evt
.lEventCode
;
4514 *lParam1
= evt
.lParam1
;
4515 *lParam2
= evt
.lParam2
;
4523 static HRESULT WINAPI
MediaEvent_WaitForCompletion(IMediaEventEx
*iface
,
4526 ICOM_THIS_MULTI(IFilterGraphImpl
, IMediaEventEx_vtbl
, iface
);
4528 TRACE("(%p/%p)->(%ld, %p)\n", This
, iface
, msTimeout
, pEvCode
);
4530 if (WaitForSingleObject(This
->hEventCompletion
, msTimeout
) == WAIT_OBJECT_0
)
4532 *pEvCode
= This
->CompletionStatus
;
4540 static HRESULT WINAPI
MediaEvent_CancelDefaultHandling(IMediaEventEx
*iface
,
4542 ICOM_THIS_MULTI(IFilterGraphImpl
, IMediaEventEx_vtbl
, iface
);
4544 TRACE("(%p/%p)->(%ld)\n", This
, iface
, lEvCode
);
4546 if (lEvCode
== EC_COMPLETE
)
4547 This
->HandleEcComplete
= FALSE
;
4548 else if (lEvCode
== EC_REPAINT
)
4549 This
->HandleEcRepaint
= FALSE
;
4550 else if (lEvCode
== EC_CLOCK_CHANGED
)
4551 This
->HandleEcClockChanged
= FALSE
;
4558 static HRESULT WINAPI
MediaEvent_RestoreDefaultHandling(IMediaEventEx
*iface
,
4560 ICOM_THIS_MULTI(IFilterGraphImpl
, IMediaEventEx_vtbl
, iface
);
4562 TRACE("(%p/%p)->(%ld)\n", This
, iface
, lEvCode
);
4564 if (lEvCode
== EC_COMPLETE
)
4565 This
->HandleEcComplete
= TRUE
;
4566 else if (lEvCode
== EC_REPAINT
)
4567 This
->HandleEcRepaint
= TRUE
;
4568 else if (lEvCode
== EC_CLOCK_CHANGED
)
4569 This
->HandleEcClockChanged
= TRUE
;
4576 static HRESULT WINAPI
MediaEvent_FreeEventParams(IMediaEventEx
*iface
,
4580 ICOM_THIS_MULTI(IFilterGraphImpl
, IMediaEventEx_vtbl
, iface
);
4582 TRACE("(%p/%p)->(%ld, %08lx, %08lx): stub !!!\n", This
, iface
, lEvCode
, lParam1
, lParam2
);
4587 /*** IMediaEventEx methods ***/
4588 static HRESULT WINAPI
MediaEvent_SetNotifyWindow(IMediaEventEx
*iface
,
4591 LONG_PTR lInstanceData
) {
4592 ICOM_THIS_MULTI(IFilterGraphImpl
, IMediaEventEx_vtbl
, iface
);
4594 TRACE("(%p/%p)->(%08x, %ld, %08lx)\n", This
, iface
, (DWORD
) hwnd
, lMsg
, lInstanceData
);
4596 This
->notif
.hWnd
= (HWND
)hwnd
;
4597 This
->notif
.msg
= lMsg
;
4598 This
->notif
.instance
= (long) lInstanceData
;
4603 static HRESULT WINAPI
MediaEvent_SetNotifyFlags(IMediaEventEx
*iface
,
4604 long lNoNotifyFlags
) {
4605 ICOM_THIS_MULTI(IFilterGraphImpl
, IMediaEventEx_vtbl
, iface
);
4607 TRACE("(%p/%p)->(%ld)\n", This
, iface
, lNoNotifyFlags
);
4609 if ((lNoNotifyFlags
!= 0) && (lNoNotifyFlags
!= 1))
4610 return E_INVALIDARG
;
4612 This
->notif
.disabled
= lNoNotifyFlags
;
4617 static HRESULT WINAPI
MediaEvent_GetNotifyFlags(IMediaEventEx
*iface
,
4618 long *lplNoNotifyFlags
) {
4619 ICOM_THIS_MULTI(IFilterGraphImpl
, IMediaEventEx_vtbl
, iface
);
4621 TRACE("(%p/%p)->(%p)\n", This
, iface
, lplNoNotifyFlags
);
4623 if (!lplNoNotifyFlags
)
4626 *lplNoNotifyFlags
= This
->notif
.disabled
;
4632 static const IMediaEventExVtbl IMediaEventEx_VTable
=
4634 MediaEvent_QueryInterface
,
4637 MediaEvent_GetTypeInfoCount
,
4638 MediaEvent_GetTypeInfo
,
4639 MediaEvent_GetIDsOfNames
,
4641 MediaEvent_GetEventHandle
,
4642 MediaEvent_GetEvent
,
4643 MediaEvent_WaitForCompletion
,
4644 MediaEvent_CancelDefaultHandling
,
4645 MediaEvent_RestoreDefaultHandling
,
4646 MediaEvent_FreeEventParams
,
4647 MediaEvent_SetNotifyWindow
,
4648 MediaEvent_SetNotifyFlags
,
4649 MediaEvent_GetNotifyFlags
4653 static HRESULT WINAPI
MediaFilter_QueryInterface(IMediaFilter
*iface
, REFIID riid
, LPVOID
*ppv
)
4655 ICOM_THIS_MULTI(IFilterGraphImpl
, IMediaFilter_vtbl
, iface
);
4657 return Filtergraph_QueryInterface(This
, riid
, ppv
);
4660 static ULONG WINAPI
MediaFilter_AddRef(IMediaFilter
*iface
)
4662 ICOM_THIS_MULTI(IFilterGraphImpl
, IMediaFilter_vtbl
, iface
);
4664 return Filtergraph_AddRef(This
);
4667 static ULONG WINAPI
MediaFilter_Release(IMediaFilter
*iface
)
4669 ICOM_THIS_MULTI(IFilterGraphImpl
, IMediaFilter_vtbl
, iface
);
4671 return Filtergraph_Release(This
);
4674 static HRESULT WINAPI
MediaFilter_GetClassID(IMediaFilter
*iface
, CLSID
* pClassID
)
4676 FIXME("(%p): stub\n", pClassID
);
4681 static HRESULT WINAPI
MediaFilter_Stop(IMediaFilter
*iface
)
4683 FIXME("(): stub\n");
4688 static HRESULT WINAPI
MediaFilter_Pause(IMediaFilter
*iface
)
4690 FIXME("(): stub\n");
4695 static HRESULT WINAPI
MediaFilter_Run(IMediaFilter
*iface
, REFERENCE_TIME tStart
)
4697 FIXME("(0x%s): stub\n", wine_dbgstr_longlong(tStart
));
4702 static HRESULT WINAPI
MediaFilter_GetState(IMediaFilter
*iface
, DWORD dwMsTimeout
, FILTER_STATE
* pState
)
4704 FIXME("(%d, %p): stub\n", dwMsTimeout
, pState
);
4709 static HRESULT WINAPI
MediaFilter_SetSyncSource(IMediaFilter
*iface
, IReferenceClock
*pClock
)
4711 ICOM_THIS_MULTI(IFilterGraphImpl
, IMediaFilter_vtbl
, iface
);
4715 TRACE("(%p/%p)->(%p)\n", iface
, This
, pClock
);
4717 EnterCriticalSection(&This
->cs
);
4719 for (i
= 0;i
< This
->nFilters
;i
++)
4721 hr
= IBaseFilter_SetSyncSource(This
->ppFiltersInGraph
[i
], pClock
);
4729 IBaseFilter_SetSyncSource(This
->ppFiltersInGraph
[i
], This
->refClock
);
4734 IReferenceClock_Release(This
->refClock
);
4735 This
->refClock
= pClock
;
4737 IReferenceClock_AddRef(This
->refClock
);
4739 if (This
->HandleEcClockChanged
)
4741 IMediaEventSink
*pEventSink
;
4744 eshr
= IMediaFilter_QueryInterface(iface
, &IID_IMediaEventSink
, (LPVOID
)&pEventSink
);
4745 if (SUCCEEDED(eshr
))
4747 IMediaEventSink_Notify(pEventSink
, EC_CLOCK_CHANGED
, 0, 0);
4748 IMediaEventSink_Release(pEventSink
);
4753 LeaveCriticalSection(&This
->cs
);
4758 static HRESULT WINAPI
MediaFilter_GetSyncSource(IMediaFilter
*iface
, IReferenceClock
**ppClock
)
4760 ICOM_THIS_MULTI(IFilterGraphImpl
, IMediaFilter_vtbl
, iface
);
4762 TRACE("(%p/%p)->(%p)\n", iface
, This
, ppClock
);
4767 EnterCriticalSection(&This
->cs
);
4769 *ppClock
= This
->refClock
;
4771 IReferenceClock_AddRef(*ppClock
);
4773 LeaveCriticalSection(&This
->cs
);
4778 static const IMediaFilterVtbl IMediaFilter_VTable
=
4780 MediaFilter_QueryInterface
,
4782 MediaFilter_Release
,
4783 MediaFilter_GetClassID
,
4787 MediaFilter_GetState
,
4788 MediaFilter_SetSyncSource
,
4789 MediaFilter_GetSyncSource
4792 static HRESULT WINAPI
MediaEventSink_QueryInterface(IMediaEventSink
*iface
, REFIID riid
, LPVOID
*ppv
)
4794 ICOM_THIS_MULTI(IFilterGraphImpl
, IMediaEventSink_vtbl
, iface
);
4796 return Filtergraph_QueryInterface(This
, riid
, ppv
);
4799 static ULONG WINAPI
MediaEventSink_AddRef(IMediaEventSink
*iface
)
4801 ICOM_THIS_MULTI(IFilterGraphImpl
, IMediaEventSink_vtbl
, iface
);
4803 return Filtergraph_AddRef(This
);
4806 static ULONG WINAPI
MediaEventSink_Release(IMediaEventSink
*iface
)
4808 ICOM_THIS_MULTI(IFilterGraphImpl
, IMediaEventSink_vtbl
, iface
);
4810 return Filtergraph_Release(This
);
4813 static HRESULT WINAPI
MediaEventSink_Notify(IMediaEventSink
*iface
, long EventCode
, LONG_PTR EventParam1
, LONG_PTR EventParam2
)
4815 ICOM_THIS_MULTI(IFilterGraphImpl
, IMediaEventSink_vtbl
, iface
);
4818 TRACE("(%p/%p)->(%ld, %ld, %ld)\n", This
, iface
, EventCode
, EventParam1
, EventParam2
);
4820 /* We need thread safety here, let's use the events queue's one */
4821 EnterCriticalSection(&This
->evqueue
.msg_crst
);
4823 if ((EventCode
== EC_COMPLETE
) && This
->HandleEcComplete
)
4825 TRACE("Process EC_COMPLETE notification\n");
4826 if (++This
->EcCompleteCount
== This
->nRenderers
)
4828 evt
.lEventCode
= EC_COMPLETE
;
4831 TRACE("Send EC_COMPLETE to app\n");
4832 EventsQueue_PutEvent(&This
->evqueue
, &evt
);
4833 if (!This
->notif
.disabled
&& This
->notif
.hWnd
)
4835 TRACE("Send Window message\n");
4836 PostMessageW(This
->notif
.hWnd
, This
->notif
.msg
, 0, This
->notif
.instance
);
4838 This
->CompletionStatus
= EC_COMPLETE
;
4839 SetEvent(This
->hEventCompletion
);
4842 else if ((EventCode
== EC_REPAINT
) && This
->HandleEcRepaint
)
4844 /* FIXME: Not handled yet */
4848 evt
.lEventCode
= EventCode
;
4849 evt
.lParam1
= EventParam1
;
4850 evt
.lParam2
= EventParam2
;
4851 EventsQueue_PutEvent(&This
->evqueue
, &evt
);
4852 if (!This
->notif
.disabled
&& This
->notif
.hWnd
)
4853 PostMessageW(This
->notif
.hWnd
, This
->notif
.msg
, 0, This
->notif
.instance
);
4856 LeaveCriticalSection(&This
->evqueue
.msg_crst
);
4860 static const IMediaEventSinkVtbl IMediaEventSink_VTable
=
4862 MediaEventSink_QueryInterface
,
4863 MediaEventSink_AddRef
,
4864 MediaEventSink_Release
,
4865 MediaEventSink_Notify
4868 static HRESULT WINAPI
GraphConfig_QueryInterface(IGraphConfig
*iface
, REFIID riid
, LPVOID
*ppv
)
4870 ICOM_THIS_MULTI(IFilterGraphImpl
, IGraphConfig_vtbl
, iface
);
4872 return Filtergraph_QueryInterface(This
, riid
, ppv
);
4875 static ULONG WINAPI
GraphConfig_AddRef(IGraphConfig
*iface
)
4877 ICOM_THIS_MULTI(IFilterGraphImpl
, IGraphConfig_vtbl
, iface
);
4879 return Filtergraph_AddRef(This
);
4882 static ULONG WINAPI
GraphConfig_Release(IGraphConfig
*iface
)
4884 ICOM_THIS_MULTI(IFilterGraphImpl
, IGraphConfig_vtbl
, iface
);
4886 return Filtergraph_Release(This
);
4889 static HRESULT WINAPI
GraphConfig_Reconnect(IGraphConfig
*iface
,
4892 const AM_MEDIA_TYPE
* pmtFirstConnection
,
4893 IBaseFilter
* pUsingFilter
,
4897 ICOM_THIS_MULTI(IFilterGraphImpl
, IGraphConfig_vtbl
, iface
);
4899 FIXME("(%p)->(%p, %p, %p, %p, %p, %x): stub!\n", This
, pOutputPin
, pInputPin
, pmtFirstConnection
, pUsingFilter
, hAbortEvent
, dwFlags
);
4904 static HRESULT WINAPI
GraphConfig_Reconfigure(IGraphConfig
*iface
,
4905 IGraphConfigCallback
* pCallback
,
4910 ICOM_THIS_MULTI(IFilterGraphImpl
, IGraphConfig_vtbl
, iface
);
4912 FIXME("(%p)->(%p, %p, %x, %p): stub!\n", This
, pCallback
, pvContext
, dwFlags
, hAbortEvent
);
4917 static HRESULT WINAPI
GraphConfig_AddFilterToCache(IGraphConfig
*iface
,
4918 IBaseFilter
* pFilter
)
4920 ICOM_THIS_MULTI(IFilterGraphImpl
, IGraphConfig_vtbl
, iface
);
4922 FIXME("(%p)->(%p): stub!\n", This
, pFilter
);
4927 static HRESULT WINAPI
GraphConfig_EnumCacheFilter(IGraphConfig
*iface
,
4928 IEnumFilters
** pEnum
)
4930 ICOM_THIS_MULTI(IFilterGraphImpl
, IGraphConfig_vtbl
, iface
);
4932 FIXME("(%p)->(%p): stub!\n", This
, pEnum
);
4937 static HRESULT WINAPI
GraphConfig_RemoveFilterFromCache(IGraphConfig
*iface
,
4938 IBaseFilter
* pFilter
)
4940 ICOM_THIS_MULTI(IFilterGraphImpl
, IGraphConfig_vtbl
, iface
);
4942 FIXME("(%p)->(%p): stub!\n", This
, pFilter
);
4947 static HRESULT WINAPI
GraphConfig_GetStartTime(IGraphConfig
*iface
,
4948 REFERENCE_TIME
* prtStart
)
4950 ICOM_THIS_MULTI(IFilterGraphImpl
, IGraphConfig_vtbl
, iface
);
4952 FIXME("(%p)->(%p): stub!\n", This
, prtStart
);
4957 static HRESULT WINAPI
GraphConfig_PushThroughData(IGraphConfig
*iface
,
4959 IPinConnection
* pConnection
,
4962 ICOM_THIS_MULTI(IFilterGraphImpl
, IGraphConfig_vtbl
, iface
);
4964 FIXME("(%p)->(%p, %p, %p): stub!\n", This
, pOutputPin
, pConnection
, hEventAbort
);
4969 static HRESULT WINAPI
GraphConfig_SetFilterFlags(IGraphConfig
*iface
,
4970 IBaseFilter
* pFilter
,
4973 ICOM_THIS_MULTI(IFilterGraphImpl
, IGraphConfig_vtbl
, iface
);
4975 FIXME("(%p)->(%p, %x): stub!\n", This
, pFilter
, dwFlags
);
4980 static HRESULT WINAPI
GraphConfig_GetFilterFlags(IGraphConfig
*iface
,
4981 IBaseFilter
* pFilter
,
4984 ICOM_THIS_MULTI(IFilterGraphImpl
, IGraphConfig_vtbl
, iface
);
4986 FIXME("(%p)->(%p, %p): stub!\n", This
, pFilter
, dwFlags
);
4991 static HRESULT WINAPI
GraphConfig_RemoveFilterEx(IGraphConfig
*iface
,
4992 IBaseFilter
* pFilter
,
4995 ICOM_THIS_MULTI(IFilterGraphImpl
, IGraphConfig_vtbl
, iface
);
4997 FIXME("(%p)->(%p, %x): stub!\n", This
, pFilter
, dwFlags
);
5002 static const IGraphConfigVtbl IGraphConfig_VTable
=
5004 GraphConfig_QueryInterface
,
5006 GraphConfig_Release
,
5007 GraphConfig_Reconnect
,
5008 GraphConfig_Reconfigure
,
5009 GraphConfig_AddFilterToCache
,
5010 GraphConfig_EnumCacheFilter
,
5011 GraphConfig_RemoveFilterFromCache
,
5012 GraphConfig_GetStartTime
,
5013 GraphConfig_PushThroughData
,
5014 GraphConfig_SetFilterFlags
,
5015 GraphConfig_GetFilterFlags
,
5016 GraphConfig_RemoveFilterEx
5019 static const IUnknownVtbl IInner_VTable
=
5021 FilterGraphInner_QueryInterface
,
5022 FilterGraphInner_AddRef
,
5023 FilterGraphInner_Release
5026 static HRESULT WINAPI
Filtergraph_QueryInterface(IFilterGraphImpl
*This
,
5029 if (This
->bAggregatable
)
5030 This
->bUnkOuterValid
= TRUE
;
5032 if (This
->pUnkOuter
)
5034 if (This
->bAggregatable
)
5035 return IUnknown_QueryInterface(This
->pUnkOuter
, riid
, ppv
);
5037 if (IsEqualIID(riid
, &IID_IUnknown
))
5041 IUnknown_AddRef((IUnknown
*)&(This
->IInner_vtbl
));
5042 hr
= IUnknown_QueryInterface((IUnknown
*)&(This
->IInner_vtbl
), riid
, ppv
);
5043 IUnknown_Release((IUnknown
*)&(This
->IInner_vtbl
));
5044 This
->bAggregatable
= TRUE
;
5049 return E_NOINTERFACE
;
5052 return IUnknown_QueryInterface((IUnknown
*)&(This
->IInner_vtbl
), riid
, ppv
);
5055 static ULONG WINAPI
Filtergraph_AddRef(IFilterGraphImpl
*This
) {
5056 if (This
->pUnkOuter
&& This
->bUnkOuterValid
)
5057 return IUnknown_AddRef(This
->pUnkOuter
);
5058 return IUnknown_AddRef((IUnknown
*)&(This
->IInner_vtbl
));
5061 static ULONG WINAPI
Filtergraph_Release(IFilterGraphImpl
*This
) {
5062 if (This
->pUnkOuter
&& This
->bUnkOuterValid
)
5063 return IUnknown_Release(This
->pUnkOuter
);
5064 return IUnknown_Release((IUnknown
*)&(This
->IInner_vtbl
));
5067 /* This is the only function that actually creates a FilterGraph class... */
5068 HRESULT
FilterGraph_create(IUnknown
*pUnkOuter
, LPVOID
*ppObj
)
5070 IFilterGraphImpl
*fimpl
;
5073 TRACE("(%p,%p)\n", pUnkOuter
, ppObj
);
5077 fimpl
= CoTaskMemAlloc(sizeof(*fimpl
));
5078 fimpl
->pUnkOuter
= pUnkOuter
;
5079 fimpl
->bUnkOuterValid
= FALSE
;
5080 fimpl
->bAggregatable
= FALSE
;
5081 fimpl
->IInner_vtbl
= &IInner_VTable
;
5082 fimpl
->IFilterGraph2_vtbl
= &IFilterGraph2_VTable
;
5083 fimpl
->IMediaControl_vtbl
= &IMediaControl_VTable
;
5084 fimpl
->IMediaSeeking_vtbl
= &IMediaSeeking_VTable
;
5085 fimpl
->IBasicAudio_vtbl
= &IBasicAudio_VTable
;
5086 fimpl
->IBasicVideo_vtbl
= &IBasicVideo_VTable
;
5087 fimpl
->IVideoWindow_vtbl
= &IVideoWindow_VTable
;
5088 fimpl
->IMediaEventEx_vtbl
= &IMediaEventEx_VTable
;
5089 fimpl
->IMediaFilter_vtbl
= &IMediaFilter_VTable
;
5090 fimpl
->IMediaEventSink_vtbl
= &IMediaEventSink_VTable
;
5091 fimpl
->IGraphConfig_vtbl
= &IGraphConfig_VTable
;
5092 fimpl
->IMediaPosition_vtbl
= &IMediaPosition_VTable
;
5094 fimpl
->ppFiltersInGraph
= NULL
;
5095 fimpl
->pFilterNames
= NULL
;
5096 fimpl
->nFilters
= 0;
5097 fimpl
->filterCapacity
= 0;
5098 fimpl
->nameIndex
= 1;
5099 fimpl
->refClock
= NULL
;
5100 fimpl
->hEventCompletion
= CreateEventW(0, TRUE
, FALSE
, 0);
5101 fimpl
->HandleEcComplete
= TRUE
;
5102 fimpl
->HandleEcRepaint
= TRUE
;
5103 fimpl
->HandleEcClockChanged
= TRUE
;
5104 fimpl
->notif
.hWnd
= 0;
5105 fimpl
->notif
.disabled
= FALSE
;
5106 fimpl
->nRenderers
= 0;
5107 fimpl
->EcCompleteCount
= 0;
5108 fimpl
->state
= State_Stopped
;
5109 EventsQueue_Init(&fimpl
->evqueue
);
5110 InitializeCriticalSection(&fimpl
->cs
);
5111 fimpl
->cs
.DebugInfo
->Spare
[0] = (DWORD_PTR
)(__FILE__
": IFilterGraphImpl.cs");
5112 fimpl
->nItfCacheEntries
= 0;
5113 memcpy(&fimpl
->timeformatseek
, &TIME_FORMAT_MEDIA_TIME
, sizeof(GUID
));
5114 fimpl
->start_time
= fimpl
->position
= 0;
5115 fimpl
->stop_position
= -1;
5117 hr
= CoCreateInstance(&CLSID_FilterMapper2
, NULL
, CLSCTX_INPROC_SERVER
, &IID_IFilterMapper2
, (LPVOID
*)&fimpl
->pFilterMapper2
);
5119 ERR("Unable to create filter mapper (%x)\n", hr
);
5122 IFilterGraph2_SetDefaultSyncSource((IFilterGraph2
*)fimpl
);
5128 HRESULT
FilterGraphNoThread_create(IUnknown
*pUnkOuter
, LPVOID
*ppObj
)
5130 FIXME("CLSID_FilterGraphNoThread partially implemented - Forwarding to CLSID_FilterGraph\n");
5131 return FilterGraph_create(pUnkOuter
, ppObj
);