2004-03-09 02:29:56 +01:00
|
|
|
/*
|
|
|
|
* MultiMedia Streams Base Functions (AMSTREAM.DLL)
|
|
|
|
*
|
|
|
|
* Copyright 2004 Christian Costa
|
|
|
|
*
|
|
|
|
* 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
|
2006-05-18 14:49:52 +02:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2004-03-09 02:29:56 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
2004-10-07 05:06:48 +02:00
|
|
|
#define COBJMACROS
|
|
|
|
|
2004-03-09 02:29:56 +01:00
|
|
|
#include "windef.h"
|
|
|
|
#include "winbase.h"
|
|
|
|
#include "winuser.h"
|
|
|
|
#include "winerror.h"
|
|
|
|
|
|
|
|
#include "ole2.h"
|
2010-12-03 11:51:35 +01:00
|
|
|
#include "rpcproxy.h"
|
2004-03-09 02:29:56 +01:00
|
|
|
|
|
|
|
#include "amstream_private.h"
|
|
|
|
|
|
|
|
#include "wine/debug.h"
|
|
|
|
|
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(amstream);
|
|
|
|
|
2010-12-03 11:51:35 +01:00
|
|
|
static HINSTANCE instance;
|
2004-03-09 02:29:56 +01:00
|
|
|
|
|
|
|
/* For the moment, do nothing here. */
|
|
|
|
BOOL WINAPI DllMain(HINSTANCE hInstDLL, DWORD fdwReason, LPVOID lpv)
|
|
|
|
{
|
|
|
|
switch(fdwReason) {
|
|
|
|
case DLL_PROCESS_ATTACH:
|
2010-12-03 11:51:35 +01:00
|
|
|
instance = hInstDLL;
|
2004-03-09 02:29:56 +01:00
|
|
|
DisableThreadLibraryCalls(hInstDLL);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* Multimedia Streams ClassFactory
|
|
|
|
*/
|
|
|
|
typedef struct {
|
2012-08-20 12:01:24 +02:00
|
|
|
IClassFactory IClassFactory_iface;
|
2005-07-11 15:21:17 +02:00
|
|
|
LONG ref;
|
2004-03-09 02:29:56 +01:00
|
|
|
HRESULT (*pfnCreateInstance)(IUnknown *pUnkOuter, LPVOID *ppObj);
|
|
|
|
} IClassFactoryImpl;
|
|
|
|
|
2012-08-20 12:01:24 +02:00
|
|
|
static inline IClassFactoryImpl *impl_from_IClassFactory(IClassFactory *iface)
|
|
|
|
{
|
|
|
|
return CONTAINING_RECORD(iface, IClassFactoryImpl, IClassFactory_iface);
|
|
|
|
}
|
|
|
|
|
2004-03-09 02:29:56 +01:00
|
|
|
struct object_creation_info
|
|
|
|
{
|
|
|
|
const CLSID *clsid;
|
|
|
|
HRESULT (*pfnCreateInstance)(IUnknown *pUnkOuter, LPVOID *ppObj);
|
|
|
|
};
|
|
|
|
|
|
|
|
static const struct object_creation_info object_creation[] =
|
|
|
|
{
|
|
|
|
{ &CLSID_AMMultiMediaStream, AM_create },
|
2008-04-27 12:16:33 +02:00
|
|
|
{ &CLSID_AMDirectDrawStream, AM_create },
|
2012-04-03 17:51:07 +02:00
|
|
|
{ &CLSID_AMAudioData, AMAudioData_create },
|
2008-12-14 19:08:17 +01:00
|
|
|
{ &CLSID_MediaStreamFilter, MediaStreamFilter_create }
|
2004-03-09 02:29:56 +01:00
|
|
|
};
|
|
|
|
|
2012-08-20 12:01:24 +02:00
|
|
|
static HRESULT WINAPI AMCF_QueryInterface(IClassFactory *iface, REFIID riid, void **ppobj)
|
2004-03-09 02:29:56 +01:00
|
|
|
{
|
|
|
|
if (IsEqualGUID(riid, &IID_IUnknown)
|
|
|
|
|| IsEqualGUID(riid, &IID_IClassFactory))
|
|
|
|
{
|
|
|
|
IClassFactory_AddRef(iface);
|
2012-08-20 12:01:24 +02:00
|
|
|
*ppobj = iface;
|
2004-03-09 02:29:56 +01:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2012-08-20 12:01:24 +02:00
|
|
|
*ppobj = NULL;
|
|
|
|
WARN("(%p)->(%s,%p), not found\n", iface, debugstr_guid(riid), ppobj);
|
2004-03-09 02:29:56 +01:00
|
|
|
return E_NOINTERFACE;
|
|
|
|
}
|
|
|
|
|
2012-08-20 12:01:24 +02:00
|
|
|
static ULONG WINAPI AMCF_AddRef(IClassFactory *iface)
|
2004-09-28 21:19:27 +02:00
|
|
|
{
|
2012-08-20 12:01:24 +02:00
|
|
|
IClassFactoryImpl *This = impl_from_IClassFactory(iface);
|
2004-09-28 21:19:27 +02:00
|
|
|
return InterlockedIncrement(&This->ref);
|
2004-03-09 02:29:56 +01:00
|
|
|
}
|
|
|
|
|
2012-08-20 12:01:24 +02:00
|
|
|
static ULONG WINAPI AMCF_Release(IClassFactory *iface)
|
2004-09-28 21:19:27 +02:00
|
|
|
{
|
2012-08-20 12:01:24 +02:00
|
|
|
IClassFactoryImpl *This = impl_from_IClassFactory(iface);
|
2004-09-28 21:19:27 +02:00
|
|
|
ULONG ref = InterlockedDecrement(&This->ref);
|
2004-03-09 02:29:56 +01:00
|
|
|
|
|
|
|
if (ref == 0)
|
|
|
|
HeapFree(GetProcessHeap(), 0, This);
|
|
|
|
|
|
|
|
return ref;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-08-20 12:01:24 +02:00
|
|
|
static HRESULT WINAPI AMCF_CreateInstance(IClassFactory *iface, IUnknown *pOuter,
|
|
|
|
REFIID riid, void **ppobj)
|
2004-09-28 21:19:27 +02:00
|
|
|
{
|
2012-08-20 12:01:24 +02:00
|
|
|
IClassFactoryImpl *This = impl_from_IClassFactory(iface);
|
2004-03-09 02:29:56 +01:00
|
|
|
HRESULT hres;
|
2016-07-18 11:20:57 +02:00
|
|
|
IUnknown *punk;
|
|
|
|
|
2004-03-09 02:29:56 +01:00
|
|
|
TRACE("(%p)->(%p,%s,%p)\n",This,pOuter,debugstr_guid(riid),ppobj);
|
|
|
|
|
2004-09-28 21:19:27 +02:00
|
|
|
*ppobj = NULL;
|
2004-03-09 02:29:56 +01:00
|
|
|
hres = This->pfnCreateInstance(pOuter, (LPVOID *) &punk);
|
2004-09-28 21:19:27 +02:00
|
|
|
if (SUCCEEDED(hres)) {
|
|
|
|
hres = IUnknown_QueryInterface(punk, riid, ppobj);
|
|
|
|
IUnknown_Release(punk);
|
2004-03-09 02:29:56 +01:00
|
|
|
}
|
|
|
|
return hres;
|
|
|
|
}
|
|
|
|
|
2012-08-20 12:01:24 +02:00
|
|
|
static HRESULT WINAPI AMCF_LockServer(IClassFactory *iface, BOOL dolock)
|
2004-09-28 21:19:27 +02:00
|
|
|
{
|
2012-08-20 12:01:24 +02:00
|
|
|
IClassFactoryImpl *This = impl_from_IClassFactory(iface);
|
2004-03-09 02:29:56 +01:00
|
|
|
FIXME("(%p)->(%d),stub!\n",This,dolock);
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2005-05-27 22:17:35 +02:00
|
|
|
static const IClassFactoryVtbl DSCF_Vtbl =
|
2004-03-09 02:29:56 +01:00
|
|
|
{
|
|
|
|
AMCF_QueryInterface,
|
|
|
|
AMCF_AddRef,
|
|
|
|
AMCF_Release,
|
|
|
|
AMCF_CreateInstance,
|
|
|
|
AMCF_LockServer
|
|
|
|
};
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
* DllGetClassObject [AMSTREAM.@]
|
|
|
|
* Retrieves class object from a DLL object
|
|
|
|
*
|
|
|
|
* NOTES
|
|
|
|
* Docs say returns STDAPI
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*/
|
2005-08-08 19:35:28 +02:00
|
|
|
HRESULT WINAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID *ppv)
|
2004-03-09 02:29:56 +01:00
|
|
|
{
|
2007-03-17 15:13:10 +01:00
|
|
|
unsigned int i;
|
2004-03-09 02:29:56 +01:00
|
|
|
IClassFactoryImpl *factory;
|
|
|
|
|
|
|
|
TRACE("(%s,%s,%p)\n", debugstr_guid(rclsid), debugstr_guid(riid), ppv);
|
|
|
|
|
|
|
|
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 = HeapAlloc(GetProcessHeap(), 0, sizeof(*factory));
|
|
|
|
if (factory == NULL) return E_OUTOFMEMORY;
|
|
|
|
|
2012-08-20 12:01:24 +02:00
|
|
|
factory->IClassFactory_iface.lpVtbl = &DSCF_Vtbl;
|
2004-03-09 02:29:56 +01:00
|
|
|
factory->ref = 1;
|
|
|
|
|
|
|
|
factory->pfnCreateInstance = object_creation[i].pfnCreateInstance;
|
|
|
|
|
2012-08-20 12:01:24 +02:00
|
|
|
*ppv = &factory->IClassFactory_iface;
|
2004-03-09 02:29:56 +01:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* DllCanUnloadNow (AMSTREAM.@)
|
|
|
|
*/
|
2005-08-08 19:35:28 +02:00
|
|
|
HRESULT WINAPI DllCanUnloadNow(void)
|
2004-03-09 02:29:56 +01:00
|
|
|
{
|
2015-03-01 04:25:48 +01:00
|
|
|
return S_FALSE;
|
2004-03-09 02:29:56 +01:00
|
|
|
}
|
2010-12-03 11:51:35 +01:00
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* DllRegisterServer (AMSTREAM.@)
|
|
|
|
*/
|
|
|
|
HRESULT WINAPI DllRegisterServer(void)
|
|
|
|
{
|
2011-08-02 15:51:55 +02:00
|
|
|
return __wine_register_resources( instance );
|
2010-12-03 11:51:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* DllUnregisterServer (AMSTREAM.@)
|
|
|
|
*/
|
|
|
|
HRESULT WINAPI DllUnregisterServer(void)
|
|
|
|
{
|
2011-08-02 15:51:55 +02:00
|
|
|
return __wine_unregister_resources( instance );
|
2010-12-03 11:51:35 +01:00
|
|
|
}
|