2003-06-13 20:06:44 +02:00
|
|
|
/* DirectShow FilterGraph object (QUARTZ.DLL)
|
|
|
|
*
|
|
|
|
* Copyright 2002 Lionel Ulmer
|
2004-03-05 21:42:40 +01:00
|
|
|
* Copyright 2004 Christian Costa
|
2003-06-13 20:06:44 +02:00
|
|
|
*
|
|
|
|
* This file contains the (internal) driver registration functions,
|
|
|
|
* driver enumeration APIs and DirectDraw creation functions.
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
2003-09-06 01:08:26 +02:00
|
|
|
#include <stdarg.h>
|
|
|
|
|
|
|
|
#include "windef.h"
|
|
|
|
#include "winbase.h"
|
2003-06-13 20:06:44 +02:00
|
|
|
#include "dshow.h"
|
|
|
|
#include "wine/debug.h"
|
2003-08-07 00:04:45 +02:00
|
|
|
#include "strmif.h"
|
2004-03-03 03:18:13 +01:00
|
|
|
#include "vfwmsgs.h"
|
2004-03-05 21:42:40 +01:00
|
|
|
#include "evcode.h"
|
2003-07-03 20:09:28 +02:00
|
|
|
#include "wine/unicode.h"
|
2003-06-13 20:06:44 +02:00
|
|
|
|
|
|
|
#include "quartz_private.h"
|
|
|
|
|
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(quartz);
|
|
|
|
|
2004-03-05 21:42:40 +01:00
|
|
|
typedef struct {
|
|
|
|
HWND hWnd; /* Target window */
|
|
|
|
long msg; /* User window message */
|
|
|
|
long instance; /* User data */
|
|
|
|
int disabled; /* Disabled messages posting */
|
|
|
|
} WndNotify;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
long lEventCode; /* Event code */
|
|
|
|
LONG_PTR lParam1; /* Param1 */
|
|
|
|
LONG_PTR lParam2; /* Param2 */
|
|
|
|
} Event;
|
|
|
|
|
|
|
|
/* messages ring implementation for queuing events (taken from winmm) */
|
|
|
|
#define EVENTS_RING_BUFFER_INCREMENT 64
|
|
|
|
typedef struct {
|
|
|
|
Event* messages;
|
|
|
|
int ring_buffer_size;
|
|
|
|
int msg_tosave;
|
|
|
|
int msg_toget;
|
|
|
|
CRITICAL_SECTION msg_crst;
|
|
|
|
HANDLE msg_event; /* Signaled for no empty queue */
|
|
|
|
} EventsQueue;
|
|
|
|
|
|
|
|
static int EventsQueue_Init(EventsQueue* omr)
|
|
|
|
{
|
|
|
|
omr->msg_toget = 0;
|
|
|
|
omr->msg_tosave = 0;
|
|
|
|
omr->msg_event = CreateEventW(NULL, TRUE, FALSE, NULL);
|
|
|
|
omr->ring_buffer_size = EVENTS_RING_BUFFER_INCREMENT;
|
|
|
|
omr->messages = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY,omr->ring_buffer_size * sizeof(Event));
|
|
|
|
|
|
|
|
InitializeCriticalSection(&omr->msg_crst);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int EventsQueue_Destroy(EventsQueue* omr)
|
|
|
|
{
|
|
|
|
CloseHandle(omr->msg_event);
|
|
|
|
HeapFree(GetProcessHeap(),0,omr->messages);
|
|
|
|
DeleteCriticalSection(&omr->msg_crst);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int EventsQueue_PutEvent(EventsQueue* omr, Event* evt)
|
|
|
|
{
|
|
|
|
EnterCriticalSection(&omr->msg_crst);
|
|
|
|
if ((omr->msg_toget == ((omr->msg_tosave + 1) % omr->ring_buffer_size)))
|
|
|
|
{
|
|
|
|
int old_ring_buffer_size = omr->ring_buffer_size;
|
|
|
|
omr->ring_buffer_size += EVENTS_RING_BUFFER_INCREMENT;
|
|
|
|
TRACE("omr->ring_buffer_size=%d\n",omr->ring_buffer_size);
|
|
|
|
omr->messages = HeapReAlloc(GetProcessHeap(),0,omr->messages, omr->ring_buffer_size * sizeof(Event));
|
|
|
|
/* Now we need to rearrange the ring buffer so that the new
|
|
|
|
buffers just allocated are in between omr->msg_tosave and
|
|
|
|
omr->msg_toget.
|
|
|
|
*/
|
|
|
|
if (omr->msg_tosave < omr->msg_toget)
|
|
|
|
{
|
|
|
|
memmove(&(omr->messages[omr->msg_toget + EVENTS_RING_BUFFER_INCREMENT]),
|
|
|
|
&(omr->messages[omr->msg_toget]),
|
|
|
|
sizeof(Event)*(old_ring_buffer_size - omr->msg_toget)
|
|
|
|
);
|
|
|
|
omr->msg_toget += EVENTS_RING_BUFFER_INCREMENT;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
omr->messages[omr->msg_tosave] = *evt;
|
|
|
|
SetEvent(omr->msg_event);
|
|
|
|
omr->msg_tosave = (omr->msg_tosave + 1) % omr->ring_buffer_size;
|
|
|
|
LeaveCriticalSection(&omr->msg_crst);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int EventsQueue_GetEvent(EventsQueue* omr, Event* evt, long msTimeOut)
|
|
|
|
{
|
|
|
|
if (WaitForSingleObject(omr->msg_event, msTimeOut) != WAIT_OBJECT_0)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
EnterCriticalSection(&omr->msg_crst);
|
|
|
|
|
|
|
|
if (omr->msg_toget == omr->msg_tosave) /* buffer empty ? */
|
|
|
|
{
|
|
|
|
LeaveCriticalSection(&omr->msg_crst);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
*evt = omr->messages[omr->msg_toget];
|
|
|
|
omr->msg_toget = (omr->msg_toget + 1) % omr->ring_buffer_size;
|
|
|
|
|
|
|
|
/* Mark the buffer as empty if needed */
|
|
|
|
if (omr->msg_toget == omr->msg_tosave) /* buffer empty ? */
|
|
|
|
ResetEvent(omr->msg_event);
|
|
|
|
|
|
|
|
LeaveCriticalSection(&omr->msg_crst);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2003-07-01 06:29:48 +02:00
|
|
|
typedef struct _IFilterGraphImpl {
|
2004-08-13 01:00:51 +02:00
|
|
|
IGraphBuilderVtbl *IGraphBuilder_vtbl;
|
|
|
|
IMediaControlVtbl *IMediaControl_vtbl;
|
|
|
|
IMediaSeekingVtbl *IMediaSeeking_vtbl;
|
|
|
|
IBasicAudioVtbl *IBasicAudio_vtbl;
|
|
|
|
IBasicVideoVtbl *IBasicVideo_vtbl;
|
|
|
|
IVideoWindowVtbl *IVideoWindow_vtbl;
|
|
|
|
IMediaEventExVtbl *IMediaEventEx_vtbl;
|
|
|
|
IMediaFilterVtbl *IMediaFilter_vtbl;
|
|
|
|
IMediaEventSinkVtbl *IMediaEventSink_vtbl;
|
2003-07-03 20:09:28 +02:00
|
|
|
/* IAMGraphStreams */
|
|
|
|
/* IAMStats */
|
|
|
|
/* IBasicVideo2 */
|
|
|
|
/* IFilterChain */
|
|
|
|
/* IFilterGraph2 */
|
|
|
|
/* IFilterMapper2 */
|
|
|
|
/* IGraphConfig */
|
|
|
|
/* IGraphVersion */
|
|
|
|
/* IMediaPosition */
|
|
|
|
/* IQueueCommand */
|
|
|
|
/* IRegisterServiceProvider */
|
|
|
|
/* IResourceMananger */
|
|
|
|
/* IServiceProvider */
|
2003-08-07 00:04:45 +02:00
|
|
|
/* IVideoFrameStep */
|
2003-07-03 20:09:28 +02:00
|
|
|
|
2003-07-01 06:29:48 +02:00
|
|
|
ULONG ref;
|
2003-07-03 20:09:28 +02:00
|
|
|
IBaseFilter ** ppFiltersInGraph;
|
|
|
|
LPWSTR * pFilterNames;
|
|
|
|
int nFilters;
|
|
|
|
int filterCapacity;
|
2004-03-03 03:18:13 +01:00
|
|
|
long nameIndex;
|
2004-03-05 21:42:40 +01:00
|
|
|
EventsQueue evqueue;
|
|
|
|
HANDLE hEventCompletion;
|
|
|
|
int CompletionStatus;
|
|
|
|
WndNotify notif;
|
|
|
|
int nRenderers;
|
|
|
|
int EcCompleteCount;
|
|
|
|
int HandleEcComplete;
|
|
|
|
int HandleEcRepaint;
|
2003-07-01 06:29:48 +02:00
|
|
|
} IFilterGraphImpl;
|
|
|
|
|
|
|
|
|
2003-06-13 20:06:44 +02:00
|
|
|
static HRESULT Filtergraph_QueryInterface(IFilterGraphImpl *This,
|
|
|
|
REFIID riid,
|
|
|
|
LPVOID *ppvObj) {
|
|
|
|
TRACE("(%p)->(%s (%p), %p)\n", This, debugstr_guid(riid), riid, ppvObj);
|
|
|
|
|
|
|
|
if (IsEqualGUID(&IID_IUnknown, riid) ||
|
2004-04-30 06:14:19 +02:00
|
|
|
IsEqualGUID(&IID_IFilterGraph, riid) ||
|
2003-06-13 20:06:44 +02:00
|
|
|
IsEqualGUID(&IID_IGraphBuilder, riid)) {
|
|
|
|
*ppvObj = &(This->IGraphBuilder_vtbl);
|
|
|
|
TRACE(" returning IGraphBuilder interface (%p)\n", *ppvObj);
|
|
|
|
} else if (IsEqualGUID(&IID_IMediaControl, riid)) {
|
|
|
|
*ppvObj = &(This->IMediaControl_vtbl);
|
|
|
|
TRACE(" returning IMediaControl interface (%p)\n", *ppvObj);
|
|
|
|
} else if (IsEqualGUID(&IID_IMediaSeeking, riid)) {
|
|
|
|
*ppvObj = &(This->IMediaSeeking_vtbl);
|
|
|
|
TRACE(" returning IMediaSeeking interface (%p)\n", *ppvObj);
|
|
|
|
} else if (IsEqualGUID(&IID_IBasicAudio, riid)) {
|
|
|
|
*ppvObj = &(This->IBasicAudio_vtbl);
|
|
|
|
TRACE(" returning IBasicAudio interface (%p)\n", *ppvObj);
|
|
|
|
} else if (IsEqualGUID(&IID_IBasicVideo, riid)) {
|
|
|
|
*ppvObj = &(This->IBasicVideo_vtbl);
|
|
|
|
TRACE(" returning IBasicVideo interface (%p)\n", *ppvObj);
|
|
|
|
} else if (IsEqualGUID(&IID_IVideoWindow, riid)) {
|
|
|
|
*ppvObj = &(This->IVideoWindow_vtbl);
|
|
|
|
TRACE(" returning IVideoWindow interface (%p)\n", *ppvObj);
|
2003-07-03 20:09:28 +02:00
|
|
|
} else if (IsEqualGUID(&IID_IMediaEvent, riid) ||
|
2003-08-07 00:04:45 +02:00
|
|
|
IsEqualGUID(&IID_IMediaEventEx, riid)) {
|
2003-06-13 20:06:44 +02:00
|
|
|
*ppvObj = &(This->IMediaEventEx_vtbl);
|
|
|
|
TRACE(" returning IMediaEvent(Ex) interface (%p)\n", *ppvObj);
|
2003-07-03 20:09:28 +02:00
|
|
|
} else if (IsEqualGUID(&IID_IMediaFilter, riid) ||
|
|
|
|
IsEqualGUID(&IID_IPersist, riid)) {
|
|
|
|
*ppvObj = &(This->IMediaFilter_vtbl);
|
|
|
|
TRACE(" returning IMediaFilter interface (%p)\n", *ppvObj);
|
2004-03-05 21:42:40 +01:00
|
|
|
} else if (IsEqualGUID(&IID_IMediaEventSink, riid)) {
|
|
|
|
*ppvObj = &(This->IMediaEventSink_vtbl);
|
|
|
|
TRACE(" returning IMediaEventSink interface (%p)\n", *ppvObj);
|
2003-06-13 20:06:44 +02:00
|
|
|
} else {
|
|
|
|
*ppvObj = NULL;
|
2003-07-03 20:09:28 +02:00
|
|
|
FIXME("unknown interface %s\n", debugstr_guid(riid));
|
2003-06-13 20:06:44 +02:00
|
|
|
return E_NOINTERFACE;
|
|
|
|
}
|
|
|
|
|
|
|
|
This->ref++;
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG Filtergraph_AddRef(IFilterGraphImpl *This) {
|
|
|
|
TRACE("(%p)->(): new ref = %ld\n", This, This->ref + 1);
|
|
|
|
|
|
|
|
return ++This->ref;
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG Filtergraph_Release(IFilterGraphImpl *This) {
|
|
|
|
static ULONG ref;
|
|
|
|
|
|
|
|
TRACE("(%p)->(): new ref = %ld\n", This, This->ref - 1);
|
|
|
|
|
|
|
|
ref = --This->ref;
|
|
|
|
if (ref == 0) {
|
2004-03-05 21:42:40 +01:00
|
|
|
CloseHandle(This->hEventCompletion);
|
|
|
|
EventsQueue_Destroy(&This->evqueue);
|
|
|
|
HeapFree(GetProcessHeap(), 0, This->ppFiltersInGraph);
|
|
|
|
HeapFree(GetProcessHeap(), 0, This->pFilterNames);
|
2003-06-13 20:06:44 +02:00
|
|
|
HeapFree(GetProcessHeap(), 0, This);
|
|
|
|
}
|
|
|
|
return ref;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*** IUnknown methods ***/
|
|
|
|
static HRESULT WINAPI Graphbuilder_QueryInterface(IGraphBuilder *iface,
|
|
|
|
REFIID riid,
|
|
|
|
LPVOID*ppvObj) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IGraphBuilder_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%s (%p), %p)\n", This, iface, debugstr_guid(riid), riid, ppvObj);
|
|
|
|
return Filtergraph_QueryInterface(This, riid, ppvObj);
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI Graphbuilder_AddRef(IGraphBuilder *iface) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IGraphBuilder_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->() calling FilterGraph AddRef\n", This, iface);
|
|
|
|
|
|
|
|
return Filtergraph_AddRef(This);
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI Graphbuilder_Release(IGraphBuilder *iface) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IGraphBuilder_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->() calling FilterGraph Release\n", This, iface);
|
|
|
|
|
|
|
|
return Filtergraph_Release(This);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*** IFilterGraph methods ***/
|
|
|
|
static HRESULT WINAPI Graphbuilder_AddFilter(IGraphBuilder *iface,
|
|
|
|
IBaseFilter *pFilter,
|
|
|
|
LPCWSTR pName) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IGraphBuilder_vtbl, iface);
|
2003-07-03 20:09:28 +02:00
|
|
|
HRESULT hr;
|
2004-03-03 03:18:13 +01:00
|
|
|
int i,j;
|
|
|
|
WCHAR* wszFilterName = NULL;
|
|
|
|
int duplicate_name = FALSE;
|
|
|
|
|
2003-07-03 20:09:28 +02:00
|
|
|
TRACE("(%p/%p)->(%p, %s (%p))\n", This, iface, pFilter, debugstr_w(pName), pName);
|
|
|
|
|
2004-03-03 03:18:13 +01:00
|
|
|
wszFilterName = (WCHAR*) CoTaskMemAlloc( (pName ? strlenW(pName) + 6 : 5) * sizeof(WCHAR) );
|
|
|
|
|
|
|
|
if (pName)
|
|
|
|
{
|
|
|
|
/* Check if name already exists */
|
|
|
|
for(i = 0; i < This->nFilters; i++)
|
|
|
|
if (!strcmpW(This->pFilterNames[i], pName))
|
|
|
|
{
|
|
|
|
duplicate_name = TRUE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If no name given or name already existing, generate one */
|
|
|
|
if (!pName || duplicate_name)
|
|
|
|
{
|
|
|
|
static const WCHAR wszFmt1[] = {'%','s',' ','%','0','4','d',0};
|
|
|
|
static const WCHAR wszFmt2[] = {'%','0','4','d',0};
|
|
|
|
|
|
|
|
for (j = 0; j < 10000 ; j++)
|
|
|
|
{
|
|
|
|
/* Create name */
|
|
|
|
if (pName)
|
|
|
|
sprintfW(wszFilterName, wszFmt1, pName, This->nameIndex);
|
|
|
|
else
|
|
|
|
sprintfW(wszFilterName, wszFmt2, This->nameIndex);
|
|
|
|
TRACE("Generated name %s\n", debugstr_w(wszFilterName));
|
|
|
|
|
|
|
|
/* Check if the generated name already exists */
|
|
|
|
for(i = 0; i < This->nFilters; i++)
|
|
|
|
if (!strcmpW(This->pFilterNames[i], pName))
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* Compute next index and exit if generated name is suitable */
|
|
|
|
if (This->nameIndex++ == 10000)
|
|
|
|
This->nameIndex = 1;
|
|
|
|
if (i == This->nFilters)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
/* Unable to find a suitable name */
|
|
|
|
if (j == 10000)
|
|
|
|
{
|
|
|
|
CoTaskMemFree(wszFilterName);
|
|
|
|
return VFW_E_DUPLICATE_NAME;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
memcpy(wszFilterName, pName, (strlenW(pName) + 1) * sizeof(WCHAR));
|
|
|
|
|
2003-07-03 20:09:28 +02:00
|
|
|
|
|
|
|
if (This->nFilters + 1 > This->filterCapacity)
|
|
|
|
{
|
|
|
|
int newCapacity = 2*This->filterCapacity;
|
|
|
|
IBaseFilter ** ppNewFilters = CoTaskMemAlloc(newCapacity * sizeof(IBaseFilter*));
|
|
|
|
LPWSTR * pNewNames = CoTaskMemAlloc(newCapacity * sizeof(LPWSTR));
|
|
|
|
memcpy(ppNewFilters, This->ppFiltersInGraph, This->nFilters * sizeof(IBaseFilter*));
|
|
|
|
memcpy(pNewNames, This->pFilterNames, This->nFilters * sizeof(LPWSTR));
|
|
|
|
CoTaskMemFree(This->ppFiltersInGraph);
|
|
|
|
CoTaskMemFree(This->pFilterNames);
|
|
|
|
This->ppFiltersInGraph = ppNewFilters;
|
|
|
|
This->pFilterNames = pNewNames;
|
|
|
|
This->filterCapacity = newCapacity;
|
|
|
|
}
|
2003-06-13 20:06:44 +02:00
|
|
|
|
2004-03-03 03:18:13 +01:00
|
|
|
hr = IBaseFilter_JoinFilterGraph(pFilter, (IFilterGraph *)This, wszFilterName);
|
2003-06-13 20:06:44 +02:00
|
|
|
|
2003-07-03 20:09:28 +02:00
|
|
|
if (SUCCEEDED(hr))
|
|
|
|
{
|
|
|
|
IBaseFilter_AddRef(pFilter);
|
|
|
|
This->ppFiltersInGraph[This->nFilters] = pFilter;
|
2004-03-03 03:18:13 +01:00
|
|
|
This->pFilterNames[This->nFilters] = wszFilterName;
|
2003-07-03 20:09:28 +02:00
|
|
|
This->nFilters++;
|
|
|
|
}
|
2004-03-03 03:18:13 +01:00
|
|
|
else
|
|
|
|
CoTaskMemFree(wszFilterName);
|
2003-07-03 20:09:28 +02:00
|
|
|
|
2004-03-03 03:18:13 +01:00
|
|
|
if (SUCCEEDED(hr) && duplicate_name)
|
|
|
|
return VFW_S_DUPLICATE_NAME;
|
|
|
|
|
2003-07-03 20:09:28 +02:00
|
|
|
return hr;
|
2003-06-13 20:06:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Graphbuilder_RemoveFilter(IGraphBuilder *iface,
|
|
|
|
IBaseFilter *pFilter) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IGraphBuilder_vtbl, iface);
|
2003-07-03 20:09:28 +02:00
|
|
|
int i;
|
|
|
|
HRESULT hr = E_FAIL;
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%p)\n", This, iface, pFilter);
|
|
|
|
|
|
|
|
/* FIXME: check graph is stopped */
|
|
|
|
|
|
|
|
for (i = 0; i < This->nFilters; i++)
|
|
|
|
{
|
|
|
|
if (This->ppFiltersInGraph[i] == pFilter)
|
|
|
|
{
|
|
|
|
/* FIXME: disconnect pins */
|
|
|
|
hr = IBaseFilter_JoinFilterGraph(pFilter, NULL, This->pFilterNames[i]);
|
|
|
|
if (SUCCEEDED(hr))
|
|
|
|
{
|
|
|
|
IPin_Release(pFilter);
|
|
|
|
CoTaskMemFree(This->pFilterNames[i]);
|
|
|
|
memmove(This->ppFiltersInGraph+i, This->ppFiltersInGraph+i+1, sizeof(IBaseFilter*)*(This->nFilters - 1 - i));
|
|
|
|
memmove(This->pFilterNames+i, This->pFilterNames+i+1, sizeof(LPWSTR)*(This->nFilters - 1 - i));
|
|
|
|
This->nFilters--;
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2003-06-13 20:06:44 +02:00
|
|
|
|
2003-07-03 20:09:28 +02:00
|
|
|
return hr; /* FIXME: check this error code */
|
2003-06-13 20:06:44 +02:00
|
|
|
}
|
|
|
|
|
2004-03-03 03:18:13 +01:00
|
|
|
static HRESULT WINAPI Graphbuilder_EnumFilters(IGraphBuilder *iface,
|
2003-06-13 20:06:44 +02:00
|
|
|
IEnumFilters **ppEnum) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IGraphBuilder_vtbl, iface);
|
|
|
|
|
2004-03-04 07:07:30 +01:00
|
|
|
TRACE("(%p/%p)->(%p)\n", This, iface, ppEnum);
|
2004-03-05 21:42:40 +01:00
|
|
|
|
2004-03-04 07:07:30 +01:00
|
|
|
return IEnumFiltersImpl_Construct(This->ppFiltersInGraph, This->nFilters, ppEnum);
|
2003-06-13 20:06:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Graphbuilder_FindFilterByName(IGraphBuilder *iface,
|
|
|
|
LPCWSTR pName,
|
|
|
|
IBaseFilter **ppFilter) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IGraphBuilder_vtbl, iface);
|
2003-07-03 20:09:28 +02:00
|
|
|
int i;
|
2003-06-13 20:06:44 +02:00
|
|
|
|
2003-07-03 20:09:28 +02:00
|
|
|
TRACE("(%p/%p)->(%s (%p), %p)\n", This, iface, debugstr_w(pName), pName, ppFilter);
|
2003-06-13 20:06:44 +02:00
|
|
|
|
2003-07-03 20:09:28 +02:00
|
|
|
*ppFilter = NULL;
|
|
|
|
|
|
|
|
for (i = 0; i < This->nFilters; i++)
|
|
|
|
{
|
|
|
|
if (!strcmpW(pName, This->pFilterNames[i]))
|
|
|
|
{
|
|
|
|
*ppFilter = This->ppFiltersInGraph[i];
|
|
|
|
IBaseFilter_AddRef(*ppFilter);
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return E_FAIL; /* FIXME: check this error code */
|
2003-06-13 20:06:44 +02:00
|
|
|
}
|
|
|
|
|
2003-12-30 20:13:05 +01:00
|
|
|
/* NOTE: despite the implication, it doesn't matter which
|
|
|
|
* way round you put in the input and output pins */
|
2003-06-13 20:06:44 +02:00
|
|
|
static HRESULT WINAPI Graphbuilder_ConnectDirect(IGraphBuilder *iface,
|
|
|
|
IPin *ppinIn,
|
|
|
|
IPin *ppinOut,
|
|
|
|
const AM_MEDIA_TYPE *pmt) {
|
2003-12-30 20:13:05 +01:00
|
|
|
PIN_DIRECTION dir;
|
|
|
|
HRESULT hr;
|
|
|
|
|
2003-06-13 20:06:44 +02:00
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IGraphBuilder_vtbl, iface);
|
|
|
|
|
2003-07-03 20:09:28 +02:00
|
|
|
TRACE("(%p/%p)->(%p, %p, %p)\n", This, iface, ppinIn, ppinOut, pmt);
|
2003-06-13 20:06:44 +02:00
|
|
|
|
2003-12-30 20:13:05 +01:00
|
|
|
/* FIXME: check pins are in graph */
|
|
|
|
|
|
|
|
hr = IPin_QueryDirection(ppinIn, &dir);
|
|
|
|
if (SUCCEEDED(hr))
|
|
|
|
{
|
|
|
|
if (dir == PINDIR_INPUT)
|
|
|
|
hr = IPin_Connect(ppinOut, ppinIn, pmt);
|
|
|
|
else
|
|
|
|
hr = IPin_Connect(ppinIn, ppinOut, pmt);
|
|
|
|
}
|
|
|
|
|
|
|
|
return hr;
|
2003-06-13 20:06:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Graphbuilder_Reconnect(IGraphBuilder *iface,
|
|
|
|
IPin *ppin) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IGraphBuilder_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%p): stub !!!\n", This, iface, ppin);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Graphbuilder_Disconnect(IGraphBuilder *iface,
|
|
|
|
IPin *ppin) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IGraphBuilder_vtbl, iface);
|
|
|
|
|
2003-07-03 20:09:28 +02:00
|
|
|
TRACE("(%p/%p)->(%p)\n", This, iface, ppin);
|
2003-06-13 20:06:44 +02:00
|
|
|
|
2003-07-03 20:09:28 +02:00
|
|
|
return IPin_Disconnect(ppin);
|
2003-06-13 20:06:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Graphbuilder_SetDefaultSyncSource(IGraphBuilder *iface) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IGraphBuilder_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(): stub !!!\n", iface, This);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*** IGraphBuilder methods ***/
|
|
|
|
static HRESULT WINAPI Graphbuilder_Connect(IGraphBuilder *iface,
|
|
|
|
IPin *ppinOut,
|
|
|
|
IPin *ppinIn) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IGraphBuilder_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%p, %p): stub !!!\n", This, iface, ppinOut, ppinIn);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Graphbuilder_Render(IGraphBuilder *iface,
|
|
|
|
IPin *ppinOut) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IGraphBuilder_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%p): stub !!!\n", This, iface, ppinOut);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Graphbuilder_RenderFile(IGraphBuilder *iface,
|
|
|
|
LPCWSTR lpcwstrFile,
|
|
|
|
LPCWSTR lpcwstrPlayList) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IGraphBuilder_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%s (%p), %s (%p)): stub !!!\n", This, iface, debugstr_w(lpcwstrFile), lpcwstrFile, debugstr_w(lpcwstrPlayList), lpcwstrPlayList);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Graphbuilder_AddSourceFilter(IGraphBuilder *iface,
|
|
|
|
LPCWSTR lpcwstrFileName,
|
|
|
|
LPCWSTR lpcwstrFilterName,
|
|
|
|
IBaseFilter **ppFilter) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IGraphBuilder_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%s (%p), %s (%p), %p): stub !!!\n", This, iface, debugstr_w(lpcwstrFileName), lpcwstrFileName, debugstr_w(lpcwstrFilterName), lpcwstrFilterName, ppFilter);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Graphbuilder_SetLogFile(IGraphBuilder *iface,
|
|
|
|
DWORD_PTR hFile) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IGraphBuilder_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%08lx): stub !!!\n", This, iface, (DWORD) hFile);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Graphbuilder_Abort(IGraphBuilder *iface) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IGraphBuilder_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(): stub !!!\n", This, iface);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Graphbuilder_ShouldOperationContinue(IGraphBuilder *iface) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IGraphBuilder_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(): stub !!!\n", This, iface);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-08-13 01:00:51 +02:00
|
|
|
static IGraphBuilderVtbl IGraphBuilder_VTable =
|
2003-06-13 20:06:44 +02:00
|
|
|
{
|
|
|
|
Graphbuilder_QueryInterface,
|
|
|
|
Graphbuilder_AddRef,
|
|
|
|
Graphbuilder_Release,
|
|
|
|
Graphbuilder_AddFilter,
|
|
|
|
Graphbuilder_RemoveFilter,
|
2004-03-03 03:18:13 +01:00
|
|
|
Graphbuilder_EnumFilters,
|
2003-06-13 20:06:44 +02:00
|
|
|
Graphbuilder_FindFilterByName,
|
|
|
|
Graphbuilder_ConnectDirect,
|
|
|
|
Graphbuilder_Reconnect,
|
|
|
|
Graphbuilder_Disconnect,
|
|
|
|
Graphbuilder_SetDefaultSyncSource,
|
|
|
|
Graphbuilder_Connect,
|
|
|
|
Graphbuilder_Render,
|
|
|
|
Graphbuilder_RenderFile,
|
|
|
|
Graphbuilder_AddSourceFilter,
|
|
|
|
Graphbuilder_SetLogFile,
|
|
|
|
Graphbuilder_Abort,
|
|
|
|
Graphbuilder_ShouldOperationContinue
|
|
|
|
};
|
|
|
|
|
|
|
|
/*** IUnknown methods ***/
|
|
|
|
static HRESULT WINAPI Mediacontrol_QueryInterface(IMediaControl *iface,
|
|
|
|
REFIID riid,
|
|
|
|
LPVOID*ppvObj) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IMediaControl_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%s (%p), %p)\n", This, iface, debugstr_guid(riid), riid, ppvObj);
|
|
|
|
|
|
|
|
return Filtergraph_QueryInterface(This, riid, ppvObj);
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI Mediacontrol_AddRef(IMediaControl *iface) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IMediaControl_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->()\n", This, iface);
|
|
|
|
|
|
|
|
return Filtergraph_AddRef(This);
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI Mediacontrol_Release(IMediaControl *iface) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IMediaControl_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->()\n", This, iface);
|
|
|
|
|
|
|
|
return Filtergraph_Release(This);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/*** IDispatch methods ***/
|
|
|
|
static HRESULT WINAPI Mediacontrol_GetTypeInfoCount(IMediaControl *iface,
|
|
|
|
UINT*pctinfo) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IMediaControl_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%p): stub !!!\n", This, iface, pctinfo);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Mediacontrol_GetTypeInfo(IMediaControl *iface,
|
|
|
|
UINT iTInfo,
|
|
|
|
LCID lcid,
|
|
|
|
ITypeInfo**ppTInfo) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IMediaControl_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%d, %ld, %p): stub !!!\n", This, iface, iTInfo, lcid, ppTInfo);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Mediacontrol_GetIDsOfNames(IMediaControl *iface,
|
|
|
|
REFIID riid,
|
|
|
|
LPOLESTR*rgszNames,
|
|
|
|
UINT cNames,
|
|
|
|
LCID lcid,
|
|
|
|
DISPID*rgDispId) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IMediaControl_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%s (%p), %p, %d, %ld, %p): stub !!!\n", This, iface, debugstr_guid(riid), riid, rgszNames, cNames, lcid, rgDispId);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Mediacontrol_Invoke(IMediaControl *iface,
|
|
|
|
DISPID dispIdMember,
|
|
|
|
REFIID riid,
|
|
|
|
LCID lcid,
|
|
|
|
WORD wFlags,
|
|
|
|
DISPPARAMS*pDispParams,
|
|
|
|
VARIANT*pVarResult,
|
|
|
|
EXCEPINFO*pExepInfo,
|
|
|
|
UINT*puArgErr) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IMediaControl_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%ld, %s (%p), %ld, %04x, %p, %p, %p, %p): stub !!!\n", This, iface, dispIdMember, debugstr_guid(riid), riid, lcid, wFlags, pDispParams, pVarResult, pExepInfo, puArgErr);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*** IMediaControl methods ***/
|
|
|
|
static HRESULT WINAPI Mediacontrol_Run(IMediaControl *iface) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IMediaControl_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(): stub !!!\n", This, iface);
|
|
|
|
|
2004-03-05 21:42:40 +01:00
|
|
|
ResetEvent(This->hEventCompletion);
|
|
|
|
|
2003-06-13 20:06:44 +02:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Mediacontrol_Pause(IMediaControl *iface) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IMediaControl_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(): stub !!!\n", This, iface);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Mediacontrol_Stop(IMediaControl *iface) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IMediaControl_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(): stub !!!\n", This, iface);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Mediacontrol_GetState(IMediaControl *iface,
|
|
|
|
LONG msTimeout,
|
|
|
|
OAFilterState *pfs) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IMediaControl_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%ld, %p): stub !!!\n", This, iface, msTimeout, pfs);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Mediacontrol_RenderFile(IMediaControl *iface,
|
|
|
|
BSTR strFilename) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IMediaControl_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%s (%p)): stub !!!\n", This, iface, debugstr_w(strFilename), strFilename);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Mediacontrol_AddSourceFilter(IMediaControl *iface,
|
|
|
|
BSTR strFilename,
|
|
|
|
IDispatch **ppUnk) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IMediaControl_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%s (%p), %p): stub !!!\n", This, iface, debugstr_w(strFilename), strFilename, ppUnk);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Mediacontrol_get_FilterCollection(IMediaControl *iface,
|
|
|
|
IDispatch **ppUnk) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IMediaControl_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%p): stub !!!\n", This, iface, ppUnk);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Mediacontrol_get_RegFilterCollection(IMediaControl *iface,
|
|
|
|
IDispatch **ppUnk) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IMediaControl_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%p): stub !!!\n", This, iface, ppUnk);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Mediacontrol_StopWhenReady(IMediaControl *iface) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IMediaControl_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(): stub !!!\n", This, iface);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-08-13 01:00:51 +02:00
|
|
|
static IMediaControlVtbl IMediaControl_VTable =
|
2003-06-13 20:06:44 +02:00
|
|
|
{
|
|
|
|
Mediacontrol_QueryInterface,
|
|
|
|
Mediacontrol_AddRef,
|
|
|
|
Mediacontrol_Release,
|
|
|
|
Mediacontrol_GetTypeInfoCount,
|
|
|
|
Mediacontrol_GetTypeInfo,
|
|
|
|
Mediacontrol_GetIDsOfNames,
|
|
|
|
Mediacontrol_Invoke,
|
|
|
|
Mediacontrol_Run,
|
|
|
|
Mediacontrol_Pause,
|
|
|
|
Mediacontrol_Stop,
|
|
|
|
Mediacontrol_GetState,
|
|
|
|
Mediacontrol_RenderFile,
|
|
|
|
Mediacontrol_AddSourceFilter,
|
|
|
|
Mediacontrol_get_FilterCollection,
|
|
|
|
Mediacontrol_get_RegFilterCollection,
|
|
|
|
Mediacontrol_StopWhenReady
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/*** IUnknown methods ***/
|
|
|
|
static HRESULT WINAPI Mediaseeking_QueryInterface(IMediaSeeking *iface,
|
|
|
|
REFIID riid,
|
|
|
|
LPVOID*ppvObj) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IMediaSeeking_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%s (%p), %p)\n", This, iface, debugstr_guid(riid), riid, ppvObj);
|
|
|
|
|
|
|
|
return Filtergraph_QueryInterface(This, riid, ppvObj);
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI Mediaseeking_AddRef(IMediaSeeking *iface) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IMediaSeeking_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->()\n", This, iface);
|
|
|
|
|
|
|
|
return Filtergraph_AddRef(This);
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI Mediaseeking_Release(IMediaSeeking *iface) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IMediaSeeking_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->()\n", This, iface);
|
|
|
|
|
|
|
|
return Filtergraph_Release(This);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*** IMediaSeeking methods ***/
|
|
|
|
static HRESULT WINAPI Mediaseeking_GetCapabilities(IMediaSeeking *iface,
|
|
|
|
DWORD *pCapabilities) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IMediaSeeking_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%p): stub !!!\n", This, iface, pCapabilities);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Mediaseeking_CheckCapabilities(IMediaSeeking *iface,
|
|
|
|
DWORD *pCapabilities) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IMediaSeeking_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%p): stub !!!\n", This, iface, pCapabilities);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Mediaseeking_IsFormatSupported(IMediaSeeking *iface,
|
2003-06-30 22:24:52 +02:00
|
|
|
const GUID *pFormat) {
|
2003-06-13 20:06:44 +02:00
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IMediaSeeking_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%p): stub !!!\n", This, iface, pFormat);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Mediaseeking_QueryPreferredFormat(IMediaSeeking *iface,
|
|
|
|
GUID *pFormat) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IMediaSeeking_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%p): stub !!!\n", This, iface, pFormat);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Mediaseeking_GetTimeFormat(IMediaSeeking *iface,
|
|
|
|
GUID *pFormat) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IMediaSeeking_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%p): stub !!!\n", This, iface, pFormat);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Mediaseeking_IsUsingTimeFormat(IMediaSeeking *iface,
|
2003-06-30 22:24:52 +02:00
|
|
|
const GUID *pFormat) {
|
2003-06-13 20:06:44 +02:00
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IMediaSeeking_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%p): stub !!!\n", This, iface, pFormat);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Mediaseeking_SetTimeFormat(IMediaSeeking *iface,
|
2003-06-30 22:24:52 +02:00
|
|
|
const GUID *pFormat) {
|
2003-06-13 20:06:44 +02:00
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IMediaSeeking_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%p): stub !!!\n", This, iface, pFormat);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Mediaseeking_GetDuration(IMediaSeeking *iface,
|
|
|
|
LONGLONG *pDuration) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IMediaSeeking_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%p): stub !!!\n", This, iface, pDuration);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Mediaseeking_GetStopPosition(IMediaSeeking *iface,
|
|
|
|
LONGLONG *pStop) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IMediaSeeking_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%p): stub !!!\n", This, iface, pStop);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Mediaseeking_GetCurrentPosition(IMediaSeeking *iface,
|
|
|
|
LONGLONG *pCurrent) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IMediaSeeking_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%p): stub !!!\n", This, iface, pCurrent);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Mediaseeking_ConvertTimeFormat(IMediaSeeking *iface,
|
|
|
|
LONGLONG *pTarget,
|
2003-06-30 22:24:52 +02:00
|
|
|
const GUID *pTargetFormat,
|
2003-06-13 20:06:44 +02:00
|
|
|
LONGLONG Source,
|
2003-06-30 22:24:52 +02:00
|
|
|
const GUID *pSourceFormat) {
|
2003-06-13 20:06:44 +02:00
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IMediaSeeking_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%p, %p, %lld, %p): stub !!!\n", This, iface, pTarget, pTargetFormat, Source, pSourceFormat);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Mediaseeking_SetPositions(IMediaSeeking *iface,
|
|
|
|
LONGLONG *pCurrent,
|
|
|
|
DWORD dwCurrentFlags,
|
|
|
|
LONGLONG *pStop,
|
|
|
|
DWORD dwStopFlags) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IMediaSeeking_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%p, %08lx, %p, %08lx): stub !!!\n", This, iface, pCurrent, dwCurrentFlags, pStop, dwStopFlags);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Mediaseeking_GetPositions(IMediaSeeking *iface,
|
|
|
|
LONGLONG *pCurrent,
|
|
|
|
LONGLONG *pStop) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IMediaSeeking_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%p, %p): stub !!!\n", This, iface, pCurrent, pStop);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Mediaseeking_GetAvailable(IMediaSeeking *iface,
|
|
|
|
LONGLONG *pEarliest,
|
|
|
|
LONGLONG *pLatest) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IMediaSeeking_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%p, %p): stub !!!\n", This, iface, pEarliest, pLatest);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Mediaseeking_SetRate(IMediaSeeking *iface,
|
|
|
|
double dRate) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IMediaSeeking_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%f): stub !!!\n", This, iface, dRate);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Mediaseeking_GetRate(IMediaSeeking *iface,
|
|
|
|
double *pdRate) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IMediaSeeking_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%p): stub !!!\n", This, iface, pdRate);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Mediaseeking_GetPreroll(IMediaSeeking *iface,
|
|
|
|
LONGLONG *pllPreroll) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IMediaSeeking_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%p): stub !!!\n", This, iface, pllPreroll);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-08-13 01:00:51 +02:00
|
|
|
static IMediaSeekingVtbl IMediaSeeking_VTable =
|
2003-06-13 20:06:44 +02:00
|
|
|
{
|
|
|
|
Mediaseeking_QueryInterface,
|
|
|
|
Mediaseeking_AddRef,
|
|
|
|
Mediaseeking_Release,
|
|
|
|
Mediaseeking_GetCapabilities,
|
|
|
|
Mediaseeking_CheckCapabilities,
|
|
|
|
Mediaseeking_IsFormatSupported,
|
|
|
|
Mediaseeking_QueryPreferredFormat,
|
|
|
|
Mediaseeking_GetTimeFormat,
|
|
|
|
Mediaseeking_IsUsingTimeFormat,
|
|
|
|
Mediaseeking_SetTimeFormat,
|
|
|
|
Mediaseeking_GetDuration,
|
|
|
|
Mediaseeking_GetStopPosition,
|
|
|
|
Mediaseeking_GetCurrentPosition,
|
|
|
|
Mediaseeking_ConvertTimeFormat,
|
|
|
|
Mediaseeking_SetPositions,
|
|
|
|
Mediaseeking_GetPositions,
|
|
|
|
Mediaseeking_GetAvailable,
|
|
|
|
Mediaseeking_SetRate,
|
|
|
|
Mediaseeking_GetRate,
|
|
|
|
Mediaseeking_GetPreroll
|
|
|
|
};
|
|
|
|
|
|
|
|
/*** IUnknown methods ***/
|
|
|
|
static HRESULT WINAPI Basicaudio_QueryInterface(IBasicAudio *iface,
|
|
|
|
REFIID riid,
|
|
|
|
LPVOID*ppvObj) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IBasicAudio_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%s (%p), %p)\n", This, iface, debugstr_guid(riid), riid, ppvObj);
|
|
|
|
|
|
|
|
return Filtergraph_QueryInterface(This, riid, ppvObj);
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI Basicaudio_AddRef(IBasicAudio *iface) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IBasicAudio_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->()\n", This, iface);
|
|
|
|
|
|
|
|
return Filtergraph_AddRef(This);
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI Basicaudio_Release(IBasicAudio *iface) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IBasicAudio_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->()\n", This, iface);
|
|
|
|
|
|
|
|
return Filtergraph_Release(This);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*** IDispatch methods ***/
|
|
|
|
static HRESULT WINAPI Basicaudio_GetTypeInfoCount(IBasicAudio *iface,
|
|
|
|
UINT*pctinfo) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IBasicAudio_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%p): stub !!!\n", This, iface, pctinfo);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Basicaudio_GetTypeInfo(IBasicAudio *iface,
|
|
|
|
UINT iTInfo,
|
|
|
|
LCID lcid,
|
|
|
|
ITypeInfo**ppTInfo) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IBasicAudio_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%d, %ld, %p): stub !!!\n", This, iface, iTInfo, lcid, ppTInfo);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Basicaudio_GetIDsOfNames(IBasicAudio *iface,
|
|
|
|
REFIID riid,
|
|
|
|
LPOLESTR*rgszNames,
|
|
|
|
UINT cNames,
|
|
|
|
LCID lcid,
|
|
|
|
DISPID*rgDispId) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IBasicAudio_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%s (%p), %p, %d, %ld, %p): stub !!!\n", This, iface, debugstr_guid(riid), riid, rgszNames, cNames, lcid, rgDispId);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Basicaudio_Invoke(IBasicAudio *iface,
|
|
|
|
DISPID dispIdMember,
|
|
|
|
REFIID riid,
|
|
|
|
LCID lcid,
|
|
|
|
WORD wFlags,
|
|
|
|
DISPPARAMS*pDispParams,
|
|
|
|
VARIANT*pVarResult,
|
|
|
|
EXCEPINFO*pExepInfo,
|
|
|
|
UINT*puArgErr) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IBasicAudio_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%ld, %s (%p), %ld, %04x, %p, %p, %p, %p): stub !!!\n", This, iface, dispIdMember, debugstr_guid(riid), riid, lcid, wFlags, pDispParams, pVarResult, pExepInfo, puArgErr);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*** IBasicAudio methods ***/
|
|
|
|
static HRESULT WINAPI Basicaudio_put_Volume(IBasicAudio *iface,
|
|
|
|
long lVolume) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IBasicAudio_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%ld): stub !!!\n", This, iface, lVolume);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Basicaudio_get_Volume(IBasicAudio *iface,
|
|
|
|
long *plVolume) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IBasicAudio_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%p): stub !!!\n", This, iface, plVolume);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Basicaudio_put_Balance(IBasicAudio *iface,
|
|
|
|
long lBalance) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IBasicAudio_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%ld): stub !!!\n", This, iface, lBalance);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Basicaudio_get_Balance(IBasicAudio *iface,
|
|
|
|
long *plBalance) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IBasicAudio_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%p): stub !!!\n", This, iface, plBalance);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2004-08-13 01:00:51 +02:00
|
|
|
static IBasicAudioVtbl IBasicAudio_VTable =
|
2003-06-13 20:06:44 +02:00
|
|
|
{
|
|
|
|
Basicaudio_QueryInterface,
|
|
|
|
Basicaudio_AddRef,
|
|
|
|
Basicaudio_Release,
|
|
|
|
Basicaudio_GetTypeInfoCount,
|
|
|
|
Basicaudio_GetTypeInfo,
|
|
|
|
Basicaudio_GetIDsOfNames,
|
|
|
|
Basicaudio_Invoke,
|
|
|
|
Basicaudio_put_Volume,
|
|
|
|
Basicaudio_get_Volume,
|
|
|
|
Basicaudio_put_Balance,
|
|
|
|
Basicaudio_get_Balance
|
|
|
|
};
|
|
|
|
|
|
|
|
/*** IUnknown methods ***/
|
|
|
|
static HRESULT WINAPI Basicvideo_QueryInterface(IBasicVideo *iface,
|
|
|
|
REFIID riid,
|
|
|
|
LPVOID*ppvObj) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IBasicVideo_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%s (%p), %p)\n", This, iface, debugstr_guid(riid), riid, ppvObj);
|
|
|
|
|
|
|
|
return Filtergraph_QueryInterface(This, riid, ppvObj);
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI Basicvideo_AddRef(IBasicVideo *iface) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IBasicVideo_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->()\n", This, iface);
|
|
|
|
|
|
|
|
return Filtergraph_AddRef(This);
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI Basicvideo_Release(IBasicVideo *iface) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IBasicVideo_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->()\n", This, iface);
|
|
|
|
|
|
|
|
return Filtergraph_Release(This);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*** IDispatch methods ***/
|
|
|
|
static HRESULT WINAPI Basicvideo_GetTypeInfoCount(IBasicVideo *iface,
|
|
|
|
UINT*pctinfo) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IBasicVideo_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%p): stub !!!\n", This, iface, pctinfo);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Basicvideo_GetTypeInfo(IBasicVideo *iface,
|
|
|
|
UINT iTInfo,
|
|
|
|
LCID lcid,
|
|
|
|
ITypeInfo**ppTInfo) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IBasicVideo_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%d, %ld, %p): stub !!!\n", This, iface, iTInfo, lcid, ppTInfo);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Basicvideo_GetIDsOfNames(IBasicVideo *iface,
|
|
|
|
REFIID riid,
|
|
|
|
LPOLESTR*rgszNames,
|
|
|
|
UINT cNames,
|
|
|
|
LCID lcid,
|
|
|
|
DISPID*rgDispId) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IBasicVideo_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%s (%p), %p, %d, %ld, %p): stub !!!\n", This, iface, debugstr_guid(riid), riid, rgszNames, cNames, lcid, rgDispId);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Basicvideo_Invoke(IBasicVideo *iface,
|
|
|
|
DISPID dispIdMember,
|
|
|
|
REFIID riid,
|
|
|
|
LCID lcid,
|
|
|
|
WORD wFlags,
|
|
|
|
DISPPARAMS*pDispParams,
|
|
|
|
VARIANT*pVarResult,
|
|
|
|
EXCEPINFO*pExepInfo,
|
|
|
|
UINT*puArgErr) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IBasicVideo_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%ld, %s (%p), %ld, %04x, %p, %p, %p, %p): stub !!!\n", This, iface, dispIdMember, debugstr_guid(riid), riid, lcid, wFlags, pDispParams, pVarResult, pExepInfo, puArgErr);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*** IBasicVideo methods ***/
|
|
|
|
static HRESULT WINAPI Basicvideo_get_AvgTimePerFrame(IBasicVideo *iface,
|
|
|
|
REFTIME *pAvgTimePerFrame) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IBasicVideo_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%p): stub !!!\n", This, iface, pAvgTimePerFrame);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Basicvideo_get_BitRate(IBasicVideo *iface,
|
|
|
|
long *pBitRate) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IBasicVideo_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%p): stub !!!\n", This, iface, pBitRate);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Basicvideo_get_BitErrorRate(IBasicVideo *iface,
|
|
|
|
long *pBitErrorRate) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IBasicVideo_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%p): stub !!!\n", This, iface, pBitErrorRate);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Basicvideo_get_VideoWidth(IBasicVideo *iface,
|
|
|
|
long *pVideoWidth) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IBasicVideo_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%p): stub !!!\n", This, iface, pVideoWidth);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Basicvideo_get_VideoHeight(IBasicVideo *iface,
|
|
|
|
long *pVideoHeight) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IBasicVideo_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%p): stub !!!\n", This, iface, pVideoHeight);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Basicvideo_put_SourceLeft(IBasicVideo *iface,
|
|
|
|
long SourceLeft) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IBasicVideo_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%ld): stub !!!\n", This, iface, SourceLeft);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Basicvideo_get_SourceLeft(IBasicVideo *iface,
|
|
|
|
long *pSourceLeft) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IBasicVideo_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%p): stub !!!\n", This, iface, pSourceLeft);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Basicvideo_put_SourceWidth(IBasicVideo *iface,
|
|
|
|
long SourceWidth) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IBasicVideo_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%ld): stub !!!\n", This, iface, SourceWidth);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Basicvideo_get_SourceWidth(IBasicVideo *iface,
|
|
|
|
long *pSourceWidth) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IBasicVideo_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%p): stub !!!\n", This, iface, pSourceWidth);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Basicvideo_put_SourceTop(IBasicVideo *iface,
|
|
|
|
long SourceTop) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IBasicVideo_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%ld): stub !!!\n", This, iface, SourceTop);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Basicvideo_get_SourceTop(IBasicVideo *iface,
|
|
|
|
long *pSourceTop) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IBasicVideo_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%p): stub !!!\n", This, iface, pSourceTop);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Basicvideo_put_SourceHeight(IBasicVideo *iface,
|
|
|
|
long SourceHeight) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IBasicVideo_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%ld): stub !!!\n", This, iface, SourceHeight);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Basicvideo_get_SourceHeight(IBasicVideo *iface,
|
|
|
|
long *pSourceHeight) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IBasicVideo_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%p): stub !!!\n", This, iface, pSourceHeight);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Basicvideo_put_DestinationLeft(IBasicVideo *iface,
|
|
|
|
long DestinationLeft) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IBasicVideo_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%ld): stub !!!\n", This, iface, DestinationLeft);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Basicvideo_get_DestinationLeft(IBasicVideo *iface,
|
|
|
|
long *pDestinationLeft) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IBasicVideo_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%p): stub !!!\n", This, iface, pDestinationLeft);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Basicvideo_put_DestinationWidth(IBasicVideo *iface,
|
|
|
|
long DestinationWidth) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IBasicVideo_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%ld): stub !!!\n", This, iface, DestinationWidth);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Basicvideo_get_DestinationWidth(IBasicVideo *iface,
|
|
|
|
long *pDestinationWidth) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IBasicVideo_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%p): stub !!!\n", This, iface, pDestinationWidth);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Basicvideo_put_DestinationTop(IBasicVideo *iface,
|
|
|
|
long DestinationTop) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IBasicVideo_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%ld): stub !!!\n", This, iface, DestinationTop);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Basicvideo_get_DestinationTop(IBasicVideo *iface,
|
|
|
|
long *pDestinationTop) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IBasicVideo_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%p): stub !!!\n", This, iface, pDestinationTop);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Basicvideo_put_DestinationHeight(IBasicVideo *iface,
|
|
|
|
long DestinationHeight) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IBasicVideo_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%ld): stub !!!\n", This, iface, DestinationHeight);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Basicvideo_get_DestinationHeight(IBasicVideo *iface,
|
|
|
|
long *pDestinationHeight) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IBasicVideo_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%p): stub !!!\n", This, iface, pDestinationHeight);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Basicvideo_SetSourcePosition(IBasicVideo *iface,
|
|
|
|
long Left,
|
|
|
|
long Top,
|
|
|
|
long Width,
|
|
|
|
long Height) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IBasicVideo_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%ld, %ld, %ld, %ld): stub !!!\n", This, iface, Left, Top, Width, Height);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Basicvideo_GetSourcePosition(IBasicVideo *iface,
|
|
|
|
long *pLeft,
|
|
|
|
long *pTop,
|
|
|
|
long *pWidth,
|
|
|
|
long *pHeight) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IBasicVideo_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%p, %p, %p, %p): stub !!!\n", This, iface, pLeft, pTop, pWidth, pHeight);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Basicvideo_SetDefaultSourcePosition(IBasicVideo *iface) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IBasicVideo_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(): stub !!!\n", This, iface);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Basicvideo_SetDestinationPosition(IBasicVideo *iface,
|
|
|
|
long Left,
|
|
|
|
long Top,
|
|
|
|
long Width,
|
|
|
|
long Height) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IBasicVideo_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%ld, %ld, %ld, %ld): stub !!!\n", This, iface, Left, Top, Width, Height);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Basicvideo_GetDestinationPosition(IBasicVideo *iface,
|
|
|
|
long *pLeft,
|
|
|
|
long *pTop,
|
|
|
|
long *pWidth,
|
|
|
|
long *pHeight) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IBasicVideo_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%p, %p, %p, %p): stub !!!\n", This, iface, pLeft, pTop, pWidth, pHeight);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Basicvideo_SetDefaultDestinationPosition(IBasicVideo *iface) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IBasicVideo_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(): stub !!!\n", This, iface);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Basicvideo_GetVideoSize(IBasicVideo *iface,
|
|
|
|
long *pWidth,
|
|
|
|
long *pHeight) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IBasicVideo_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%p, %p): stub !!!\n", This, iface, pWidth, pHeight);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Basicvideo_GetVideoPaletteEntries(IBasicVideo *iface,
|
|
|
|
long StartIndex,
|
|
|
|
long Entries,
|
|
|
|
long *pRetrieved,
|
|
|
|
long *pPalette) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IBasicVideo_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%ld, %ld, %p, %p): stub !!!\n", This, iface, StartIndex, Entries, pRetrieved, pPalette);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Basicvideo_GetCurrentImage(IBasicVideo *iface,
|
|
|
|
long *pBufferSize,
|
|
|
|
long *pDIBImage) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IBasicVideo_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%p, %p): stub !!!\n", This, iface, pBufferSize, pDIBImage);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Basicvideo_IsUsingDefaultSource(IBasicVideo *iface) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IBasicVideo_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(): stub !!!\n", This, iface);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Basicvideo_IsUsingDefaultDestination(IBasicVideo *iface) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IBasicVideo_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(): stub !!!\n", This, iface);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-08-13 01:00:51 +02:00
|
|
|
static IBasicVideoVtbl IBasicVideo_VTable =
|
2003-06-13 20:06:44 +02:00
|
|
|
{
|
|
|
|
Basicvideo_QueryInterface,
|
|
|
|
Basicvideo_AddRef,
|
|
|
|
Basicvideo_Release,
|
|
|
|
Basicvideo_GetTypeInfoCount,
|
|
|
|
Basicvideo_GetTypeInfo,
|
|
|
|
Basicvideo_GetIDsOfNames,
|
|
|
|
Basicvideo_Invoke,
|
|
|
|
Basicvideo_get_AvgTimePerFrame,
|
|
|
|
Basicvideo_get_BitRate,
|
|
|
|
Basicvideo_get_BitErrorRate,
|
|
|
|
Basicvideo_get_VideoWidth,
|
|
|
|
Basicvideo_get_VideoHeight,
|
|
|
|
Basicvideo_put_SourceLeft,
|
|
|
|
Basicvideo_get_SourceLeft,
|
|
|
|
Basicvideo_put_SourceWidth,
|
|
|
|
Basicvideo_get_SourceWidth,
|
|
|
|
Basicvideo_put_SourceTop,
|
|
|
|
Basicvideo_get_SourceTop,
|
|
|
|
Basicvideo_put_SourceHeight,
|
|
|
|
Basicvideo_get_SourceHeight,
|
|
|
|
Basicvideo_put_DestinationLeft,
|
|
|
|
Basicvideo_get_DestinationLeft,
|
|
|
|
Basicvideo_put_DestinationWidth,
|
|
|
|
Basicvideo_get_DestinationWidth,
|
|
|
|
Basicvideo_put_DestinationTop,
|
|
|
|
Basicvideo_get_DestinationTop,
|
|
|
|
Basicvideo_put_DestinationHeight,
|
|
|
|
Basicvideo_get_DestinationHeight,
|
|
|
|
Basicvideo_SetSourcePosition,
|
|
|
|
Basicvideo_GetSourcePosition,
|
|
|
|
Basicvideo_SetDefaultSourcePosition,
|
|
|
|
Basicvideo_SetDestinationPosition,
|
|
|
|
Basicvideo_GetDestinationPosition,
|
|
|
|
Basicvideo_SetDefaultDestinationPosition,
|
|
|
|
Basicvideo_GetVideoSize,
|
|
|
|
Basicvideo_GetVideoPaletteEntries,
|
|
|
|
Basicvideo_GetCurrentImage,
|
|
|
|
Basicvideo_IsUsingDefaultSource,
|
|
|
|
Basicvideo_IsUsingDefaultDestination
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/*** IUnknown methods ***/
|
|
|
|
static HRESULT WINAPI Videowindow_QueryInterface(IVideoWindow *iface,
|
|
|
|
REFIID riid,
|
|
|
|
LPVOID*ppvObj) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IVideoWindow_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%s (%p), %p)\n", This, iface, debugstr_guid(riid), riid, ppvObj);
|
|
|
|
|
|
|
|
return Filtergraph_QueryInterface(This, riid, ppvObj);
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI Videowindow_AddRef(IVideoWindow *iface) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IVideoWindow_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->()\n", This, iface);
|
|
|
|
|
|
|
|
return Filtergraph_AddRef(This);
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI Videowindow_Release(IVideoWindow *iface) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IVideoWindow_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->()\n", This, iface);
|
|
|
|
|
|
|
|
return Filtergraph_Release(This);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*** IDispatch methods ***/
|
|
|
|
static HRESULT WINAPI Videowindow_GetTypeInfoCount(IVideoWindow *iface,
|
|
|
|
UINT*pctinfo) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IVideoWindow_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%p): stub !!!\n", This, iface, pctinfo);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Videowindow_GetTypeInfo(IVideoWindow *iface,
|
|
|
|
UINT iTInfo,
|
|
|
|
LCID lcid,
|
|
|
|
ITypeInfo**ppTInfo) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IVideoWindow_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%d, %ld, %p): stub !!!\n", This, iface, iTInfo, lcid, ppTInfo);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Videowindow_GetIDsOfNames(IVideoWindow *iface,
|
|
|
|
REFIID riid,
|
|
|
|
LPOLESTR*rgszNames,
|
|
|
|
UINT cNames,
|
|
|
|
LCID lcid,
|
|
|
|
DISPID*rgDispId) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IVideoWindow_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%s (%p), %p, %d, %ld, %p): stub !!!\n", This, iface, debugstr_guid(riid), riid, rgszNames, cNames, lcid, rgDispId);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Videowindow_Invoke(IVideoWindow *iface,
|
|
|
|
DISPID dispIdMember,
|
|
|
|
REFIID riid,
|
|
|
|
LCID lcid,
|
|
|
|
WORD wFlags,
|
|
|
|
DISPPARAMS*pDispParams,
|
|
|
|
VARIANT*pVarResult,
|
|
|
|
EXCEPINFO*pExepInfo,
|
|
|
|
UINT*puArgErr) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IVideoWindow_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%ld, %s (%p), %ld, %04x, %p, %p, %p, %p): stub !!!\n", This, iface, dispIdMember, debugstr_guid(riid), riid, lcid, wFlags, pDispParams, pVarResult, pExepInfo, puArgErr);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*** IVideoWindow methods ***/
|
|
|
|
static HRESULT WINAPI Videowindow_put_Caption(IVideoWindow *iface,
|
|
|
|
BSTR strCaption) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IVideoWindow_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%s (%p)): stub !!!\n", This, iface, debugstr_w(strCaption), strCaption);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Videowindow_get_Caption(IVideoWindow *iface,
|
|
|
|
BSTR *strCaption) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IVideoWindow_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%p): stub !!!\n", This, iface, strCaption);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Videowindow_put_WindowStyle(IVideoWindow *iface,
|
|
|
|
long WindowStyle) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IVideoWindow_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%ld): stub !!!\n", This, iface, WindowStyle);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Videowindow_get_WindowStyle(IVideoWindow *iface,
|
|
|
|
long *WindowStyle) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IVideoWindow_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%p): stub !!!\n", This, iface, WindowStyle);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Videowindow_put_WindowStyleEx(IVideoWindow *iface,
|
|
|
|
long WindowStyleEx) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IVideoWindow_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%ld): stub !!!\n", This, iface, WindowStyleEx);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Videowindow_get_WindowStyleEx(IVideoWindow *iface,
|
|
|
|
long *WindowStyleEx) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IVideoWindow_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%p): stub !!!\n", This, iface, WindowStyleEx);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Videowindow_put_AutoShow(IVideoWindow *iface,
|
|
|
|
long AutoShow) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IVideoWindow_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%ld): stub !!!\n", This, iface, AutoShow);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Videowindow_get_AutoShow(IVideoWindow *iface,
|
|
|
|
long *AutoShow) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IVideoWindow_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%p): stub !!!\n", This, iface, AutoShow);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Videowindow_put_WindowState(IVideoWindow *iface,
|
|
|
|
long WindowState) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IVideoWindow_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%ld): stub !!!\n", This, iface, WindowState);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Videowindow_get_WindowState(IVideoWindow *iface,
|
|
|
|
long *WindowState) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IVideoWindow_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%p): stub !!!\n", This, iface, WindowState);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Videowindow_put_BackgroundPalette(IVideoWindow *iface,
|
|
|
|
long BackgroundPalette) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IVideoWindow_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%ld): stub !!!\n", This, iface, BackgroundPalette);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Videowindow_get_BackgroundPalette(IVideoWindow *iface,
|
|
|
|
long *pBackgroundPalette) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IVideoWindow_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%p): stub !!!\n", This, iface, pBackgroundPalette);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Videowindow_put_Visible(IVideoWindow *iface,
|
|
|
|
long Visible) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IVideoWindow_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%ld): stub !!!\n", This, iface, Visible);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Videowindow_get_Visible(IVideoWindow *iface,
|
|
|
|
long *pVisible) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IVideoWindow_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%p): stub !!!\n", This, iface, pVisible);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Videowindow_put_Left(IVideoWindow *iface,
|
|
|
|
long Left) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IVideoWindow_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%ld): stub !!!\n", This, iface, Left);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Videowindow_get_Left(IVideoWindow *iface,
|
|
|
|
long *pLeft) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IVideoWindow_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%p): stub !!!\n", This, iface, pLeft);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Videowindow_put_Width(IVideoWindow *iface,
|
|
|
|
long Width) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IVideoWindow_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%ld): stub !!!\n", This, iface, Width);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Videowindow_get_Width(IVideoWindow *iface,
|
|
|
|
long *pWidth) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IVideoWindow_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%p): stub !!!\n", This, iface, pWidth);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Videowindow_put_Top(IVideoWindow *iface,
|
|
|
|
long Top) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IVideoWindow_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%ld): stub !!!\n", This, iface, Top);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Videowindow_get_Top(IVideoWindow *iface,
|
|
|
|
long *pTop) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IVideoWindow_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%p): stub !!!\n", This, iface, pTop);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Videowindow_put_Height(IVideoWindow *iface,
|
|
|
|
long Height) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IVideoWindow_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%ld): stub !!!\n", This, iface, Height);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Videowindow_get_Height(IVideoWindow *iface,
|
|
|
|
long *pHeight) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IVideoWindow_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%p): stub !!!\n", This, iface, pHeight);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Videowindow_put_Owner(IVideoWindow *iface,
|
|
|
|
OAHWND Owner) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IVideoWindow_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%08lx): stub !!!\n", This, iface, (DWORD) Owner);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Videowindow_get_Owner(IVideoWindow *iface,
|
|
|
|
OAHWND *Owner) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IVideoWindow_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%08lx): stub !!!\n", This, iface, (DWORD) Owner);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Videowindow_put_MessageDrain(IVideoWindow *iface,
|
|
|
|
OAHWND Drain) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IVideoWindow_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%08lx): stub !!!\n", This, iface, (DWORD) Drain);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Videowindow_get_MessageDrain(IVideoWindow *iface,
|
|
|
|
OAHWND *Drain) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IVideoWindow_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%p): stub !!!\n", This, iface, Drain);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Videowindow_get_BorderColor(IVideoWindow *iface,
|
|
|
|
long *Color) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IVideoWindow_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%p): stub !!!\n", This, iface, Color);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Videowindow_put_BorderColor(IVideoWindow *iface,
|
|
|
|
long Color) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IVideoWindow_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%ld): stub !!!\n", This, iface, Color);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Videowindow_get_FullScreenMode(IVideoWindow *iface,
|
|
|
|
long *FullScreenMode) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IVideoWindow_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%p): stub !!!\n", This, iface, FullScreenMode);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Videowindow_put_FullScreenMode(IVideoWindow *iface,
|
|
|
|
long FullScreenMode) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IVideoWindow_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%ld): stub !!!\n", This, iface, FullScreenMode);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Videowindow_SetWindowForeground(IVideoWindow *iface,
|
|
|
|
long Focus) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IVideoWindow_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%ld): stub !!!\n", This, iface, Focus);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Videowindow_NotifyOwnerMessage(IVideoWindow *iface,
|
|
|
|
OAHWND hwnd,
|
|
|
|
long uMsg,
|
|
|
|
LONG_PTR wParam,
|
|
|
|
LONG_PTR lParam) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IVideoWindow_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%08lx, %ld, %08lx, %08lx): stub !!!\n", This, iface, (DWORD) hwnd, uMsg, wParam, lParam);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Videowindow_SetWindowPosition(IVideoWindow *iface,
|
|
|
|
long Left,
|
|
|
|
long Top,
|
|
|
|
long Width,
|
|
|
|
long Height) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IVideoWindow_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%ld, %ld, %ld, %ld): stub !!!\n", This, iface, Left, Top, Width, Height);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Videowindow_GetWindowPosition(IVideoWindow *iface,
|
|
|
|
long *pLeft,
|
|
|
|
long *pTop,
|
|
|
|
long *pWidth,
|
|
|
|
long *pHeight) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IVideoWindow_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%p, %p, %p, %p): stub !!!\n", This, iface, pLeft, pTop, pWidth, pHeight);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Videowindow_GetMinIdealImageSize(IVideoWindow *iface,
|
|
|
|
long *pWidth,
|
|
|
|
long *pHeight) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IVideoWindow_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%p, %p): stub !!!\n", This, iface, pWidth, pHeight);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Videowindow_GetMaxIdealImageSize(IVideoWindow *iface,
|
|
|
|
long *pWidth,
|
|
|
|
long *pHeight) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IVideoWindow_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%p, %p): stub !!!\n", This, iface, pWidth, pHeight);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Videowindow_GetRestorePosition(IVideoWindow *iface,
|
|
|
|
long *pLeft,
|
|
|
|
long *pTop,
|
|
|
|
long *pWidth,
|
|
|
|
long *pHeight) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IVideoWindow_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%p, %p, %p, %p): stub !!!\n", This, iface, pLeft, pTop, pWidth, pHeight);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Videowindow_HideCursor(IVideoWindow *iface,
|
|
|
|
long HideCursor) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IVideoWindow_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%ld): stub !!!\n", This, iface, HideCursor);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Videowindow_IsCursorHidden(IVideoWindow *iface,
|
|
|
|
long *CursorHidden) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IVideoWindow_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%p): stub !!!\n", This, iface, CursorHidden);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-08-13 01:00:51 +02:00
|
|
|
static IVideoWindowVtbl IVideoWindow_VTable =
|
2003-06-13 20:06:44 +02:00
|
|
|
{
|
|
|
|
Videowindow_QueryInterface,
|
|
|
|
Videowindow_AddRef,
|
|
|
|
Videowindow_Release,
|
|
|
|
Videowindow_GetTypeInfoCount,
|
|
|
|
Videowindow_GetTypeInfo,
|
|
|
|
Videowindow_GetIDsOfNames,
|
|
|
|
Videowindow_Invoke,
|
|
|
|
Videowindow_put_Caption,
|
|
|
|
Videowindow_get_Caption,
|
|
|
|
Videowindow_put_WindowStyle,
|
|
|
|
Videowindow_get_WindowStyle,
|
|
|
|
Videowindow_put_WindowStyleEx,
|
|
|
|
Videowindow_get_WindowStyleEx,
|
|
|
|
Videowindow_put_AutoShow,
|
|
|
|
Videowindow_get_AutoShow,
|
|
|
|
Videowindow_put_WindowState,
|
|
|
|
Videowindow_get_WindowState,
|
|
|
|
Videowindow_put_BackgroundPalette,
|
|
|
|
Videowindow_get_BackgroundPalette,
|
|
|
|
Videowindow_put_Visible,
|
|
|
|
Videowindow_get_Visible,
|
|
|
|
Videowindow_put_Left,
|
|
|
|
Videowindow_get_Left,
|
|
|
|
Videowindow_put_Width,
|
|
|
|
Videowindow_get_Width,
|
|
|
|
Videowindow_put_Top,
|
|
|
|
Videowindow_get_Top,
|
|
|
|
Videowindow_put_Height,
|
|
|
|
Videowindow_get_Height,
|
|
|
|
Videowindow_put_Owner,
|
|
|
|
Videowindow_get_Owner,
|
|
|
|
Videowindow_put_MessageDrain,
|
|
|
|
Videowindow_get_MessageDrain,
|
|
|
|
Videowindow_get_BorderColor,
|
|
|
|
Videowindow_put_BorderColor,
|
|
|
|
Videowindow_get_FullScreenMode,
|
|
|
|
Videowindow_put_FullScreenMode,
|
|
|
|
Videowindow_SetWindowForeground,
|
|
|
|
Videowindow_NotifyOwnerMessage,
|
|
|
|
Videowindow_SetWindowPosition,
|
|
|
|
Videowindow_GetWindowPosition,
|
|
|
|
Videowindow_GetMinIdealImageSize,
|
|
|
|
Videowindow_GetMaxIdealImageSize,
|
|
|
|
Videowindow_GetRestorePosition,
|
|
|
|
Videowindow_HideCursor,
|
|
|
|
Videowindow_IsCursorHidden
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/*** IUnknown methods ***/
|
|
|
|
static HRESULT WINAPI Mediaevent_QueryInterface(IMediaEventEx *iface,
|
|
|
|
REFIID riid,
|
|
|
|
LPVOID*ppvObj) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IMediaEventEx_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%s (%p), %p)\n", This, iface, debugstr_guid(riid), riid, ppvObj);
|
|
|
|
|
|
|
|
return Filtergraph_QueryInterface(This, riid, ppvObj);
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI Mediaevent_AddRef(IMediaEventEx *iface) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IMediaEventEx_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->()\n", This, iface);
|
|
|
|
|
|
|
|
return Filtergraph_AddRef(This);
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI Mediaevent_Release(IMediaEventEx *iface) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IMediaEventEx_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->()\n", This, iface);
|
|
|
|
|
|
|
|
return Filtergraph_Release(This);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*** IDispatch methods ***/
|
|
|
|
static HRESULT WINAPI Mediaevent_GetTypeInfoCount(IMediaEventEx *iface,
|
|
|
|
UINT*pctinfo) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IMediaEventEx_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%p): stub !!!\n", This, iface, pctinfo);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Mediaevent_GetTypeInfo(IMediaEventEx *iface,
|
|
|
|
UINT iTInfo,
|
|
|
|
LCID lcid,
|
|
|
|
ITypeInfo**ppTInfo) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IMediaEventEx_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%d, %ld, %p): stub !!!\n", This, iface, iTInfo, lcid, ppTInfo);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Mediaevent_GetIDsOfNames(IMediaEventEx *iface,
|
|
|
|
REFIID riid,
|
|
|
|
LPOLESTR*rgszNames,
|
|
|
|
UINT cNames,
|
|
|
|
LCID lcid,
|
|
|
|
DISPID*rgDispId) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IMediaEventEx_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%s (%p), %p, %d, %ld, %p): stub !!!\n", This, iface, debugstr_guid(riid), riid, rgszNames, cNames, lcid, rgDispId);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Mediaevent_Invoke(IMediaEventEx *iface,
|
|
|
|
DISPID dispIdMember,
|
|
|
|
REFIID riid,
|
|
|
|
LCID lcid,
|
|
|
|
WORD wFlags,
|
|
|
|
DISPPARAMS*pDispParams,
|
|
|
|
VARIANT*pVarResult,
|
|
|
|
EXCEPINFO*pExepInfo,
|
|
|
|
UINT*puArgErr) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IMediaEventEx_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%ld, %s (%p), %ld, %04x, %p, %p, %p, %p): stub !!!\n", This, iface, dispIdMember, debugstr_guid(riid), riid, lcid, wFlags, pDispParams, pVarResult, pExepInfo, puArgErr);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*** IMediaEvent methods ***/
|
|
|
|
static HRESULT WINAPI Mediaevent_GetEventHandle(IMediaEventEx *iface,
|
|
|
|
OAEVENT *hEvent) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IMediaEventEx_vtbl, iface);
|
|
|
|
|
2004-03-05 21:42:40 +01:00
|
|
|
TRACE("(%p/%p)->(%p)\n", This, iface, hEvent);
|
|
|
|
|
|
|
|
*hEvent = (OAEVENT)This->evqueue.msg_event;
|
2003-06-13 20:06:44 +02:00
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Mediaevent_GetEvent(IMediaEventEx *iface,
|
|
|
|
long *lEventCode,
|
|
|
|
LONG_PTR *lParam1,
|
|
|
|
LONG_PTR *lParam2,
|
|
|
|
long msTimeout) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IMediaEventEx_vtbl, iface);
|
2004-03-05 21:42:40 +01:00
|
|
|
Event evt;
|
2003-06-13 20:06:44 +02:00
|
|
|
|
2004-03-05 21:42:40 +01:00
|
|
|
TRACE("(%p/%p)->(%p, %p, %p, %ld)\n", This, iface, lEventCode, lParam1, lParam2, msTimeout);
|
2003-06-13 20:06:44 +02:00
|
|
|
|
2004-03-05 21:42:40 +01:00
|
|
|
if (EventsQueue_GetEvent(&This->evqueue, &evt, msTimeout))
|
|
|
|
{
|
|
|
|
*lEventCode = evt.lEventCode;
|
|
|
|
*lParam1 = evt.lParam1;
|
|
|
|
*lParam2 = evt.lParam2;
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
*lEventCode = 0;
|
|
|
|
return E_ABORT;
|
2003-06-13 20:06:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Mediaevent_WaitForCompletion(IMediaEventEx *iface,
|
|
|
|
long msTimeout,
|
|
|
|
long *pEvCode) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IMediaEventEx_vtbl, iface);
|
|
|
|
|
2004-03-05 21:42:40 +01:00
|
|
|
TRACE("(%p/%p)->(%ld, %p)\n", This, iface, msTimeout, pEvCode);
|
2003-06-13 20:06:44 +02:00
|
|
|
|
2004-03-05 21:42:40 +01:00
|
|
|
if (WaitForSingleObject(This->hEventCompletion, msTimeout) == WAIT_OBJECT_0)
|
|
|
|
{
|
|
|
|
*pEvCode = This->CompletionStatus;
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
*pEvCode = 0;
|
|
|
|
return E_ABORT;
|
2003-06-13 20:06:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Mediaevent_CancelDefaultHandling(IMediaEventEx *iface,
|
|
|
|
long lEvCode) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IMediaEventEx_vtbl, iface);
|
|
|
|
|
2004-03-05 21:42:40 +01:00
|
|
|
TRACE("(%p/%p)->(%ld)\n", This, iface, lEvCode);
|
|
|
|
|
|
|
|
if (lEvCode == EC_COMPLETE)
|
|
|
|
This->HandleEcComplete = FALSE;
|
|
|
|
else if (lEvCode == EC_REPAINT)
|
|
|
|
This->HandleEcRepaint = FALSE;
|
|
|
|
else
|
|
|
|
return S_FALSE;
|
2003-06-13 20:06:44 +02:00
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Mediaevent_RestoreDefaultHandling(IMediaEventEx *iface,
|
|
|
|
long lEvCode) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IMediaEventEx_vtbl, iface);
|
|
|
|
|
2004-03-05 21:42:40 +01:00
|
|
|
TRACE("(%p/%p)->(%ld)\n", This, iface, lEvCode);
|
|
|
|
|
|
|
|
if (lEvCode == EC_COMPLETE)
|
|
|
|
This->HandleEcComplete = TRUE;
|
|
|
|
else if (lEvCode == EC_REPAINT)
|
|
|
|
This->HandleEcRepaint = TRUE;
|
|
|
|
else
|
|
|
|
return S_FALSE;
|
2003-06-13 20:06:44 +02:00
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Mediaevent_FreeEventParams(IMediaEventEx *iface,
|
|
|
|
long lEvCode,
|
|
|
|
LONG_PTR lParam1,
|
|
|
|
LONG_PTR lParam2) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IMediaEventEx_vtbl, iface);
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%ld, %08lx, %08lx): stub !!!\n", This, iface, lEvCode, lParam1, lParam2);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*** IMediaEventEx methods ***/
|
|
|
|
static HRESULT WINAPI Mediaevent_SetNotifyWindow(IMediaEventEx *iface,
|
|
|
|
OAHWND hwnd,
|
|
|
|
long lMsg,
|
|
|
|
LONG_PTR lInstanceData) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IMediaEventEx_vtbl, iface);
|
|
|
|
|
2004-03-05 21:42:40 +01:00
|
|
|
TRACE("(%p/%p)->(%08lx, %ld, %08lx)\n", This, iface, (DWORD) hwnd, lMsg, lInstanceData);
|
|
|
|
|
|
|
|
This->notif.hWnd = (HWND)hwnd;
|
|
|
|
This->notif.msg = lMsg;
|
|
|
|
This->notif.instance = (long) lInstanceData;
|
2003-06-13 20:06:44 +02:00
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Mediaevent_SetNotifyFlags(IMediaEventEx *iface,
|
|
|
|
long lNoNotifyFlags) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IMediaEventEx_vtbl, iface);
|
|
|
|
|
2004-03-05 21:42:40 +01:00
|
|
|
TRACE("(%p/%p)->(%ld)\n", This, iface, lNoNotifyFlags);
|
|
|
|
|
|
|
|
if ((lNoNotifyFlags != 0) || (lNoNotifyFlags != 1))
|
|
|
|
return E_INVALIDARG;
|
|
|
|
|
|
|
|
This->notif.disabled = lNoNotifyFlags;
|
2003-06-13 20:06:44 +02:00
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI Mediaevent_GetNotifyFlags(IMediaEventEx *iface,
|
|
|
|
long *lplNoNotifyFlags) {
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IMediaEventEx_vtbl, iface);
|
|
|
|
|
2004-03-05 21:42:40 +01:00
|
|
|
TRACE("(%p/%p)->(%p)\n", This, iface, lplNoNotifyFlags);
|
|
|
|
|
|
|
|
if (!lplNoNotifyFlags)
|
|
|
|
return E_POINTER;
|
|
|
|
|
|
|
|
*lplNoNotifyFlags = This->notif.disabled;
|
2003-06-13 20:06:44 +02:00
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-08-13 01:00:51 +02:00
|
|
|
static IMediaEventExVtbl IMediaEventEx_VTable =
|
2003-06-13 20:06:44 +02:00
|
|
|
{
|
|
|
|
Mediaevent_QueryInterface,
|
|
|
|
Mediaevent_AddRef,
|
|
|
|
Mediaevent_Release,
|
|
|
|
Mediaevent_GetTypeInfoCount,
|
|
|
|
Mediaevent_GetTypeInfo,
|
|
|
|
Mediaevent_GetIDsOfNames,
|
|
|
|
Mediaevent_Invoke,
|
|
|
|
Mediaevent_GetEventHandle,
|
|
|
|
Mediaevent_GetEvent,
|
|
|
|
Mediaevent_WaitForCompletion,
|
|
|
|
Mediaevent_CancelDefaultHandling,
|
|
|
|
Mediaevent_RestoreDefaultHandling,
|
|
|
|
Mediaevent_FreeEventParams,
|
|
|
|
Mediaevent_SetNotifyWindow,
|
|
|
|
Mediaevent_SetNotifyFlags,
|
|
|
|
Mediaevent_GetNotifyFlags
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2003-07-03 20:09:28 +02:00
|
|
|
static HRESULT WINAPI MediaFilter_QueryInterface(IMediaFilter *iface, REFIID riid, LPVOID *ppv)
|
|
|
|
{
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IMediaEventEx_vtbl, iface);
|
|
|
|
|
|
|
|
return Filtergraph_QueryInterface(This, riid, ppv);
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI MediaFilter_AddRef(IMediaFilter *iface)
|
|
|
|
{
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IMediaEventEx_vtbl, iface);
|
2003-06-13 20:06:44 +02:00
|
|
|
|
2003-07-03 20:09:28 +02:00
|
|
|
return Filtergraph_AddRef(This);
|
|
|
|
}
|
2003-06-13 20:06:44 +02:00
|
|
|
|
2003-07-03 20:09:28 +02:00
|
|
|
static ULONG WINAPI MediaFilter_Release(IMediaFilter *iface)
|
|
|
|
{
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IMediaEventEx_vtbl, iface);
|
|
|
|
|
|
|
|
return Filtergraph_Release(This);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI MediaFilter_GetClassID(IMediaFilter *iface, CLSID * pClassID)
|
|
|
|
{
|
|
|
|
FIXME("(%p): stub\n", pClassID);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI MediaFilter_Stop(IMediaFilter *iface)
|
|
|
|
{
|
|
|
|
FIXME("(): stub\n");
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI MediaFilter_Pause(IMediaFilter *iface)
|
|
|
|
{
|
|
|
|
FIXME("(): stub\n");
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI MediaFilter_Run(IMediaFilter *iface, REFERENCE_TIME tStart)
|
|
|
|
{
|
|
|
|
FIXME("(%lld): stub\n", tStart);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI MediaFilter_GetState(IMediaFilter *iface, DWORD dwMsTimeout, FILTER_STATE * pState)
|
|
|
|
{
|
|
|
|
FIXME("(%ld, %p): stub\n", dwMsTimeout, pState);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI MediaFilter_SetSyncSource(IMediaFilter *iface, IReferenceClock *pClock)
|
|
|
|
{
|
|
|
|
FIXME("(%p): stub\n", pClock);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI MediaFilter_GetSyncSource(IMediaFilter *iface, IReferenceClock **ppClock)
|
|
|
|
{
|
|
|
|
FIXME("(%p): stub\n", ppClock);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
2004-08-13 01:00:51 +02:00
|
|
|
static IMediaFilterVtbl IMediaFilter_VTable =
|
2003-07-03 20:09:28 +02:00
|
|
|
{
|
|
|
|
MediaFilter_QueryInterface,
|
|
|
|
MediaFilter_AddRef,
|
|
|
|
MediaFilter_Release,
|
|
|
|
MediaFilter_GetClassID,
|
|
|
|
MediaFilter_Stop,
|
|
|
|
MediaFilter_Pause,
|
|
|
|
MediaFilter_Run,
|
|
|
|
MediaFilter_GetState,
|
|
|
|
MediaFilter_SetSyncSource,
|
|
|
|
MediaFilter_GetSyncSource
|
|
|
|
};
|
2003-06-13 20:06:44 +02:00
|
|
|
|
2004-03-05 21:42:40 +01:00
|
|
|
static HRESULT WINAPI MediaEventSink_QueryInterface(IMediaEventSink *iface, REFIID riid, LPVOID *ppv)
|
|
|
|
{
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IMediaEventSink_vtbl, iface);
|
|
|
|
|
|
|
|
return Filtergraph_QueryInterface(This, riid, ppv);
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI MediaEventSink_AddRef(IMediaEventSink *iface)
|
|
|
|
{
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IMediaEventSink_vtbl, iface);
|
|
|
|
|
|
|
|
return Filtergraph_AddRef(This);
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI MediaEventSink_Release(IMediaEventSink *iface)
|
|
|
|
{
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IMediaEventSink_vtbl, iface);
|
|
|
|
|
|
|
|
return Filtergraph_Release(This);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI MediaEventSink_Notify(IMediaEventSink *iface, long EventCode, LONG_PTR EventParam1, LONG_PTR EventParam2)
|
|
|
|
{
|
|
|
|
ICOM_THIS_MULTI(IFilterGraphImpl, IMediaEventSink_vtbl, iface);
|
|
|
|
Event evt;
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%ld, %ld, %ld)\n", This, iface, EventCode, EventParam1, EventParam2);
|
|
|
|
|
|
|
|
/* We need thread safety here, let's use the events queue's one */
|
|
|
|
EnterCriticalSection(&This->evqueue.msg_crst);
|
|
|
|
|
|
|
|
if ((EventCode == EC_COMPLETE) && This->HandleEcComplete)
|
|
|
|
{
|
|
|
|
if (++This->EcCompleteCount == This->nRenderers)
|
|
|
|
{
|
|
|
|
evt.lEventCode = EC_COMPLETE;
|
|
|
|
evt.lParam1 = S_OK;
|
|
|
|
evt.lParam2 = 0;
|
|
|
|
EventsQueue_PutEvent(&This->evqueue, &evt);
|
|
|
|
if (!This->notif.disabled && This->notif.hWnd)
|
|
|
|
PostMessageW(This->notif.hWnd, This->notif.msg, 0, This->notif.instance);
|
|
|
|
This->CompletionStatus = EC_COMPLETE;
|
|
|
|
SetEvent(This->hEventCompletion);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if ((EventCode == EC_REPAINT) && This->HandleEcRepaint)
|
|
|
|
{
|
|
|
|
/* FIXME: Not handled yet */
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
evt.lEventCode = EventCode;
|
|
|
|
evt.lParam1 = EventParam1;
|
|
|
|
evt.lParam2 = EventParam2;
|
|
|
|
EventsQueue_PutEvent(&This->evqueue, &evt);
|
|
|
|
if (!This->notif.disabled && This->notif.hWnd)
|
|
|
|
PostMessageW(This->notif.hWnd, This->notif.msg, 0, This->notif.instance);
|
|
|
|
}
|
|
|
|
|
2004-04-05 22:16:35 +02:00
|
|
|
LeaveCriticalSection(&This->evqueue.msg_crst);
|
2004-03-05 21:42:40 +01:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2004-08-13 01:00:51 +02:00
|
|
|
static IMediaEventSinkVtbl IMediaEventSink_VTable =
|
2004-03-05 21:42:40 +01:00
|
|
|
{
|
|
|
|
MediaEventSink_QueryInterface,
|
|
|
|
MediaEventSink_AddRef,
|
|
|
|
MediaEventSink_Release,
|
|
|
|
MediaEventSink_Notify
|
|
|
|
};
|
|
|
|
|
2003-06-13 20:06:44 +02:00
|
|
|
/* This is the only function that actually creates a FilterGraph class... */
|
|
|
|
HRESULT FILTERGRAPH_create(IUnknown *pUnkOuter, LPVOID *ppObj) {
|
|
|
|
IFilterGraphImpl *fimpl;
|
|
|
|
|
|
|
|
TRACE("(%p,%p)\n", pUnkOuter, ppObj);
|
|
|
|
|
|
|
|
fimpl = (IFilterGraphImpl *) HeapAlloc(GetProcessHeap(), 0, sizeof(*fimpl));
|
|
|
|
fimpl->IGraphBuilder_vtbl = &IGraphBuilder_VTable;
|
|
|
|
fimpl->IMediaControl_vtbl = &IMediaControl_VTable;
|
|
|
|
fimpl->IMediaSeeking_vtbl = &IMediaSeeking_VTable;
|
|
|
|
fimpl->IBasicAudio_vtbl = &IBasicAudio_VTable;
|
|
|
|
fimpl->IBasicVideo_vtbl = &IBasicVideo_VTable;
|
|
|
|
fimpl->IVideoWindow_vtbl = &IVideoWindow_VTable;
|
|
|
|
fimpl->IMediaEventEx_vtbl = &IMediaEventEx_VTable;
|
2003-07-03 20:09:28 +02:00
|
|
|
fimpl->IMediaFilter_vtbl = &IMediaFilter_VTable;
|
2004-03-05 21:42:40 +01:00
|
|
|
fimpl->IMediaEventSink_vtbl = &IMediaEventSink_VTable;
|
2003-06-13 20:06:44 +02:00
|
|
|
fimpl->ref = 1;
|
2003-08-07 00:04:45 +02:00
|
|
|
fimpl->ppFiltersInGraph = NULL;
|
|
|
|
fimpl->pFilterNames = NULL;
|
|
|
|
fimpl->nFilters = 0;
|
|
|
|
fimpl->filterCapacity = 0;
|
2004-03-03 03:18:13 +01:00
|
|
|
fimpl->nameIndex = 1;
|
2004-03-05 21:42:40 +01:00
|
|
|
fimpl->hEventCompletion = CreateEventW(0, TRUE, FALSE,0);
|
|
|
|
fimpl->HandleEcComplete = TRUE;
|
|
|
|
fimpl->HandleEcRepaint = TRUE;
|
|
|
|
fimpl->notif.hWnd = 0;
|
|
|
|
fimpl->notif.disabled = TRUE;
|
|
|
|
fimpl->nRenderers = 0;
|
|
|
|
fimpl->EcCompleteCount = 0;
|
|
|
|
EventsQueue_Init(&fimpl->evqueue);
|
2003-06-13 20:06:44 +02:00
|
|
|
|
|
|
|
*ppObj = fimpl;
|
|
|
|
return S_OK;
|
|
|
|
}
|