2008-02-12 03:07:45 +01:00
|
|
|
/* DirectShow Editing Services (qedit.dll)
|
|
|
|
*
|
|
|
|
* Copyright 2008 Google (Lei Zhang)
|
|
|
|
*
|
|
|
|
* 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "qedit_private.h"
|
2010-12-08 12:14:21 +01:00
|
|
|
#include "rpcproxy.h"
|
2008-02-12 03:07:45 +01:00
|
|
|
#include "wine/debug.h"
|
|
|
|
|
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(qedit);
|
|
|
|
|
2010-12-08 12:14:21 +01:00
|
|
|
static HINSTANCE instance;
|
|
|
|
|
2008-02-12 03:07:45 +01:00
|
|
|
BOOL WINAPI DllMain(HINSTANCE hInstDLL, DWORD fdwReason, LPVOID lpv)
|
|
|
|
{
|
|
|
|
switch(fdwReason) {
|
|
|
|
case DLL_PROCESS_ATTACH:
|
2010-12-08 12:14:21 +01:00
|
|
|
instance = hInstDLL;
|
2008-02-12 03:07:45 +01:00
|
|
|
DisableThreadLibraryCalls(hInstDLL);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2008-02-12 03:18:06 +01:00
|
|
|
/******************************************************************************
|
|
|
|
* DirectShow ClassFactory
|
|
|
|
*/
|
|
|
|
typedef struct {
|
2012-08-20 11:55:43 +02:00
|
|
|
IClassFactory IClassFactory_iface;
|
2008-02-12 03:18:06 +01:00
|
|
|
LONG ref;
|
|
|
|
HRESULT (*pfnCreateInstance)(IUnknown *pUnkOuter, LPVOID *ppObj);
|
|
|
|
} IClassFactoryImpl;
|
|
|
|
|
2012-08-20 11:55:43 +02:00
|
|
|
static inline IClassFactoryImpl *impl_from_IClassFactory(IClassFactory *iface)
|
|
|
|
{
|
|
|
|
return CONTAINING_RECORD(iface, IClassFactoryImpl, IClassFactory_iface);
|
|
|
|
}
|
|
|
|
|
2008-02-12 03:18:06 +01:00
|
|
|
struct object_creation_info
|
|
|
|
{
|
|
|
|
const CLSID *clsid;
|
|
|
|
HRESULT (*pfnCreateInstance)(IUnknown *pUnkOuter, LPVOID *ppObj);
|
|
|
|
};
|
|
|
|
|
|
|
|
static const struct object_creation_info object_creation[] =
|
|
|
|
{
|
2016-04-25 05:40:27 +02:00
|
|
|
{ &CLSID_AMTimeline, AMTimeline_create },
|
2008-02-13 23:12:17 +01:00
|
|
|
{ &CLSID_MediaDet, MediaDet_create },
|
2010-02-04 01:02:59 +01:00
|
|
|
{ &CLSID_SampleGrabber, SampleGrabber_create },
|
2008-02-12 03:18:06 +01:00
|
|
|
};
|
|
|
|
|
2012-08-20 11:55:43 +02:00
|
|
|
static HRESULT WINAPI DSCF_QueryInterface(IClassFactory *iface, REFIID riid, void **ppobj)
|
2008-02-12 03:18:06 +01:00
|
|
|
{
|
|
|
|
if (IsEqualGUID(riid, &IID_IUnknown)
|
|
|
|
|| IsEqualGUID(riid, &IID_IClassFactory))
|
|
|
|
{
|
|
|
|
IClassFactory_AddRef(iface);
|
2012-08-20 11:55:43 +02:00
|
|
|
*ppobj = iface;
|
2008-02-12 03:18:06 +01:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
*ppobj = NULL;
|
2012-08-20 11:55:43 +02:00
|
|
|
WARN("(%p)->(%s,%p), not found\n", iface, debugstr_guid(riid), ppobj);
|
2008-02-12 03:18:06 +01:00
|
|
|
return E_NOINTERFACE;
|
|
|
|
}
|
|
|
|
|
2012-08-20 11:55:43 +02:00
|
|
|
static ULONG WINAPI DSCF_AddRef(IClassFactory *iface)
|
2008-02-12 03:18:06 +01:00
|
|
|
{
|
2012-08-20 11:55:43 +02:00
|
|
|
IClassFactoryImpl *This = impl_from_IClassFactory(iface);
|
2008-02-12 03:18:06 +01:00
|
|
|
return InterlockedIncrement(&This->ref);
|
|
|
|
}
|
|
|
|
|
2012-08-20 11:55:43 +02:00
|
|
|
static ULONG WINAPI DSCF_Release(IClassFactory *iface)
|
2008-02-12 03:18:06 +01:00
|
|
|
{
|
2012-08-20 11:55:43 +02:00
|
|
|
IClassFactoryImpl *This = impl_from_IClassFactory(iface);
|
2008-02-12 03:18:06 +01:00
|
|
|
ULONG ref = InterlockedDecrement(&This->ref);
|
|
|
|
|
|
|
|
if (ref == 0)
|
|
|
|
CoTaskMemFree(This);
|
|
|
|
|
|
|
|
return ref;
|
|
|
|
}
|
|
|
|
|
2012-08-20 11:55:43 +02:00
|
|
|
static HRESULT WINAPI DSCF_CreateInstance(IClassFactory *iface, IUnknown *pOuter, REFIID riid,
|
|
|
|
void **ppobj)
|
2008-02-12 03:18:06 +01:00
|
|
|
{
|
2012-08-20 11:55:43 +02:00
|
|
|
IClassFactoryImpl *This = impl_from_IClassFactory(iface);
|
2008-02-12 03:18:06 +01:00
|
|
|
HRESULT hres;
|
|
|
|
LPUNKNOWN punk;
|
|
|
|
|
|
|
|
TRACE("(%p)->(%p,%s,%p)\n",This,pOuter,debugstr_guid(riid),ppobj);
|
|
|
|
|
|
|
|
*ppobj = NULL;
|
2012-06-26 23:54:49 +02:00
|
|
|
if (pOuter && !IsEqualGUID(&IID_IUnknown, riid))
|
|
|
|
return E_INVALIDARG;
|
|
|
|
|
2008-02-12 03:18:06 +01:00
|
|
|
hres = This->pfnCreateInstance(pOuter, (LPVOID *) &punk);
|
|
|
|
if (SUCCEEDED(hres)) {
|
|
|
|
hres = IUnknown_QueryInterface(punk, riid, ppobj);
|
|
|
|
IUnknown_Release(punk);
|
|
|
|
}
|
|
|
|
return hres;
|
|
|
|
}
|
|
|
|
|
2012-08-20 11:55:43 +02:00
|
|
|
static HRESULT WINAPI DSCF_LockServer(IClassFactory *iface, BOOL dolock)
|
2008-02-12 03:18:06 +01:00
|
|
|
{
|
2012-08-20 11:55:43 +02:00
|
|
|
IClassFactoryImpl *This = impl_from_IClassFactory(iface);
|
2008-02-12 03:18:06 +01:00
|
|
|
FIXME("(%p)->(%d),stub!\n",This,dolock);
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const IClassFactoryVtbl DSCF_Vtbl =
|
|
|
|
{
|
|
|
|
DSCF_QueryInterface,
|
|
|
|
DSCF_AddRef,
|
|
|
|
DSCF_Release,
|
|
|
|
DSCF_CreateInstance,
|
|
|
|
DSCF_LockServer
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2008-02-12 03:07:45 +01:00
|
|
|
/***********************************************************************
|
|
|
|
* DllCanUnloadNow (QEDIT.@)
|
|
|
|
*/
|
|
|
|
HRESULT WINAPI DllCanUnloadNow(void)
|
|
|
|
{
|
2012-11-21 22:35:30 +01:00
|
|
|
return S_FALSE;
|
2008-02-12 03:07:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
* DllGetClassObject [QEDIT.@]
|
|
|
|
* Retrieves class object from a DLL object
|
|
|
|
*
|
|
|
|
* PARAMS
|
|
|
|
* rclsid [I] CLSID for the class object
|
|
|
|
* riid [I] Reference to identifier of interface for class object
|
|
|
|
* ppv [O] Address of variable to receive interface pointer for riid
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* Success: S_OK
|
|
|
|
* Failure: CLASS_E_CLASSNOTAVAILABLE, E_OUTOFMEMORY, E_INVALIDARG,
|
|
|
|
* E_UNEXPECTED, E_NOINTERFACE
|
|
|
|
*/
|
|
|
|
|
|
|
|
HRESULT WINAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID *ppv)
|
|
|
|
{
|
2008-02-12 03:18:06 +01:00
|
|
|
unsigned int i;
|
|
|
|
IClassFactoryImpl *factory;
|
|
|
|
|
2008-02-12 03:07:45 +01:00
|
|
|
TRACE("(%s,%s,%p)\n", debugstr_guid(rclsid), debugstr_guid(riid), ppv);
|
|
|
|
|
2008-02-12 03:18:06 +01:00
|
|
|
if ( !IsEqualGUID( &IID_IClassFactory, riid )
|
|
|
|
&& ! IsEqualGUID( &IID_IUnknown, riid) )
|
|
|
|
return E_NOINTERFACE;
|
|
|
|
|
|
|
|
for (i=0; i < sizeof(object_creation)/sizeof(object_creation[0]); i++)
|
|
|
|
{
|
|
|
|
if (IsEqualGUID(object_creation[i].clsid, rclsid))
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (i == sizeof(object_creation)/sizeof(object_creation[0]))
|
|
|
|
{
|
|
|
|
FIXME("%s: no class found.\n", debugstr_guid(rclsid));
|
|
|
|
return CLASS_E_CLASSNOTAVAILABLE;
|
|
|
|
}
|
|
|
|
|
|
|
|
factory = CoTaskMemAlloc(sizeof(*factory));
|
|
|
|
if (factory == NULL) return E_OUTOFMEMORY;
|
|
|
|
|
2012-08-20 11:55:43 +02:00
|
|
|
factory->IClassFactory_iface.lpVtbl = &DSCF_Vtbl;
|
2008-02-12 03:18:06 +01:00
|
|
|
factory->ref = 1;
|
|
|
|
|
|
|
|
factory->pfnCreateInstance = object_creation[i].pfnCreateInstance;
|
|
|
|
|
2012-08-20 11:55:43 +02:00
|
|
|
*ppv = &factory->IClassFactory_iface;
|
2008-02-12 03:18:06 +01:00
|
|
|
return S_OK;
|
2008-02-12 03:07:45 +01:00
|
|
|
}
|
2010-12-08 12:14:21 +01:00
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* DllRegisterServer (QEDIT.@)
|
|
|
|
*/
|
|
|
|
HRESULT WINAPI DllRegisterServer(void)
|
|
|
|
{
|
2011-08-02 15:51:55 +02:00
|
|
|
return __wine_register_resources( instance );
|
2010-12-08 12:14:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* DllUnregisterServer (QEDIT.@)
|
|
|
|
*/
|
|
|
|
HRESULT WINAPI DllUnregisterServer(void)
|
|
|
|
{
|
2011-08-02 15:51:55 +02:00
|
|
|
return __wine_unregister_resources( instance );
|
2010-12-08 12:14:21 +01:00
|
|
|
}
|