2015-02-04 06:32:04 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2015 Austin English
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*/
|
2017-09-20 12:03:37 +00:00
|
|
|
|
|
|
|
#define COBJMACROS
|
|
|
|
|
2015-02-04 06:32:04 +00:00
|
|
|
#include <stdarg.h>
|
|
|
|
|
|
|
|
#include "windef.h"
|
|
|
|
#include "winbase.h"
|
|
|
|
|
2017-09-20 12:03:37 +00:00
|
|
|
#include "ole2.h"
|
|
|
|
#include "rpcproxy.h"
|
2021-08-02 10:00:08 +00:00
|
|
|
#include "d3d9.h"
|
2017-09-20 12:03:37 +00:00
|
|
|
|
2017-09-20 12:03:38 +00:00
|
|
|
#include "evr_private.h"
|
|
|
|
|
2017-09-20 12:03:37 +00:00
|
|
|
#include "wine/debug.h"
|
|
|
|
|
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(evr);
|
|
|
|
|
2015-02-04 06:32:04 +00:00
|
|
|
BOOL WINAPI DllMain(HINSTANCE instance, DWORD reason, LPVOID reserved)
|
|
|
|
{
|
2021-02-26 09:22:16 +00:00
|
|
|
switch (reason)
|
2015-02-04 06:32:04 +00:00
|
|
|
{
|
2021-02-26 09:22:16 +00:00
|
|
|
case DLL_PROCESS_ATTACH:
|
2020-06-07 22:23:32 +00:00
|
|
|
DisableThreadLibraryCalls(instance);
|
2021-02-26 09:22:16 +00:00
|
|
|
break;
|
|
|
|
case DLL_PROCESS_DETACH:
|
|
|
|
if (reserved) break;
|
2020-06-07 22:23:32 +00:00
|
|
|
strmbase_release_typelibs();
|
2021-02-26 09:22:16 +00:00
|
|
|
break;
|
2015-02-04 06:32:04 +00:00
|
|
|
}
|
|
|
|
return TRUE;
|
|
|
|
}
|
2017-09-20 12:03:37 +00:00
|
|
|
|
2022-04-08 06:50:39 +00:00
|
|
|
struct class_factory
|
|
|
|
{
|
2017-09-20 12:03:37 +00:00
|
|
|
IClassFactory IClassFactory_iface;
|
2022-04-08 06:50:39 +00:00
|
|
|
LONG refcount;
|
2017-09-20 12:03:37 +00:00
|
|
|
HRESULT (*pfnCreateInstance)(IUnknown *unk_outer, void **ppobj);
|
2022-04-08 06:50:39 +00:00
|
|
|
};
|
2017-09-20 12:03:37 +00:00
|
|
|
|
2022-04-08 06:50:39 +00:00
|
|
|
static inline struct class_factory *impl_from_IClassFactory(IClassFactory *iface)
|
2017-09-20 12:03:37 +00:00
|
|
|
{
|
2022-04-08 06:50:39 +00:00
|
|
|
return CONTAINING_RECORD(iface, struct class_factory, IClassFactory_iface);
|
2017-09-20 12:03:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
struct object_creation_info
|
|
|
|
{
|
|
|
|
const CLSID *clsid;
|
|
|
|
HRESULT (*pfnCreateInstance)(IUnknown *unk_outer, void **ppobj);
|
|
|
|
};
|
|
|
|
|
|
|
|
static const struct object_creation_info object_creation[] =
|
|
|
|
{
|
2017-09-20 12:03:38 +00:00
|
|
|
{ &CLSID_EnhancedVideoRenderer, evr_filter_create },
|
2020-06-17 11:59:33 +00:00
|
|
|
{ &CLSID_MFVideoMixer9, evr_mixer_create },
|
2020-06-30 13:34:00 +00:00
|
|
|
{ &CLSID_MFVideoPresenter9, evr_presenter_create },
|
2017-09-20 12:03:37 +00:00
|
|
|
};
|
|
|
|
|
2022-04-08 06:50:39 +00:00
|
|
|
static HRESULT WINAPI classfactory_QueryInterface(IClassFactory *iface, REFIID riid, void **out)
|
2017-09-20 12:03:37 +00:00
|
|
|
{
|
2022-04-08 06:50:39 +00:00
|
|
|
struct class_factory *factory = impl_from_IClassFactory(iface);
|
2017-09-20 12:03:37 +00:00
|
|
|
|
|
|
|
if (IsEqualGUID(riid, &IID_IUnknown)
|
|
|
|
|| IsEqualGUID(riid, &IID_IClassFactory))
|
|
|
|
{
|
|
|
|
IClassFactory_AddRef(iface);
|
2022-04-08 06:50:39 +00:00
|
|
|
*out = &factory->IClassFactory_iface;
|
2017-09-20 12:03:37 +00:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2022-04-08 06:50:39 +00:00
|
|
|
WARN("Unimplemented interface %s.\n", debugstr_guid(riid));
|
2017-09-20 12:03:37 +00:00
|
|
|
return E_NOINTERFACE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI classfactory_AddRef(IClassFactory *iface)
|
|
|
|
{
|
2022-04-08 06:50:39 +00:00
|
|
|
struct class_factory *factory = impl_from_IClassFactory(iface);
|
|
|
|
return InterlockedIncrement(&factory->refcount);
|
2017-09-20 12:03:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI classfactory_Release(IClassFactory *iface)
|
|
|
|
{
|
2022-04-08 06:50:39 +00:00
|
|
|
struct class_factory *factory = impl_from_IClassFactory(iface);
|
|
|
|
ULONG refcount = InterlockedDecrement(&factory->refcount);
|
2017-09-20 12:03:37 +00:00
|
|
|
|
2022-04-08 06:50:39 +00:00
|
|
|
if (!refcount)
|
|
|
|
free(factory);
|
2017-09-20 12:03:37 +00:00
|
|
|
|
2022-04-08 06:50:39 +00:00
|
|
|
return refcount;
|
2017-09-20 12:03:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI classfactory_CreateInstance(IClassFactory *iface, IUnknown *outer_unk, REFIID riid, void **ppobj)
|
|
|
|
{
|
2022-04-08 06:50:39 +00:00
|
|
|
struct class_factory *factory = impl_from_IClassFactory(iface);
|
2017-09-20 12:03:37 +00:00
|
|
|
IUnknown *unk;
|
2022-04-08 06:50:39 +00:00
|
|
|
HRESULT hr;
|
2017-09-20 12:03:37 +00:00
|
|
|
|
2022-04-08 06:50:39 +00:00
|
|
|
TRACE("%p, %p, %s, %p.\n", iface, outer_unk, debugstr_guid(riid), ppobj);
|
2017-09-20 12:03:37 +00:00
|
|
|
|
|
|
|
*ppobj = NULL;
|
2019-06-04 22:54:27 +00:00
|
|
|
|
|
|
|
if (outer_unk && !IsEqualGUID(riid, &IID_IUnknown))
|
|
|
|
return E_NOINTERFACE;
|
|
|
|
|
2022-04-08 06:50:39 +00:00
|
|
|
hr = factory->pfnCreateInstance(outer_unk, (void **) &unk);
|
|
|
|
if (SUCCEEDED(hr))
|
2017-09-20 12:03:37 +00:00
|
|
|
{
|
2022-04-08 06:50:39 +00:00
|
|
|
hr = IUnknown_QueryInterface(unk, riid, ppobj);
|
2017-09-20 12:03:37 +00:00
|
|
|
IUnknown_Release(unk);
|
|
|
|
}
|
2022-04-08 06:50:39 +00:00
|
|
|
return hr;
|
2017-09-20 12:03:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI classfactory_LockServer(IClassFactory *iface, BOOL dolock)
|
|
|
|
{
|
2022-04-08 06:50:39 +00:00
|
|
|
FIXME("%p, %d stub!\n", iface, dolock);
|
|
|
|
|
2017-09-20 12:03:37 +00:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const IClassFactoryVtbl classfactory_Vtbl =
|
|
|
|
{
|
|
|
|
classfactory_QueryInterface,
|
|
|
|
classfactory_AddRef,
|
|
|
|
classfactory_Release,
|
|
|
|
classfactory_CreateInstance,
|
|
|
|
classfactory_LockServer
|
|
|
|
};
|
|
|
|
|
2022-04-08 06:50:39 +00:00
|
|
|
HRESULT WINAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, void **out)
|
2017-09-20 12:03:37 +00:00
|
|
|
{
|
2022-04-08 06:50:39 +00:00
|
|
|
struct class_factory *factory;
|
2017-09-20 12:03:37 +00:00
|
|
|
unsigned int i;
|
|
|
|
|
2022-04-08 06:50:39 +00:00
|
|
|
TRACE("%s, %s, %p.\n", debugstr_guid(rclsid), debugstr_guid(riid), out);
|
2017-09-20 12:03:37 +00:00
|
|
|
|
|
|
|
if (!IsEqualGUID(&IID_IClassFactory, riid)
|
|
|
|
&& !IsEqualGUID( &IID_IUnknown, riid))
|
|
|
|
return E_NOINTERFACE;
|
|
|
|
|
2018-07-20 19:45:51 +00:00
|
|
|
for (i = 0; i < ARRAY_SIZE(object_creation); i++)
|
2017-09-20 12:03:37 +00:00
|
|
|
{
|
|
|
|
if (IsEqualGUID(object_creation[i].clsid, rclsid))
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2018-07-20 19:45:51 +00:00
|
|
|
if (i == ARRAY_SIZE(object_creation))
|
2017-09-20 12:03:37 +00:00
|
|
|
{
|
|
|
|
FIXME("%s: no class found.\n", debugstr_guid(rclsid));
|
|
|
|
return CLASS_E_CLASSNOTAVAILABLE;
|
|
|
|
}
|
|
|
|
|
2022-04-08 06:50:39 +00:00
|
|
|
if (!(factory = malloc(sizeof(*factory))))
|
2017-09-20 12:03:37 +00:00
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
|
|
|
|
factory->IClassFactory_iface.lpVtbl = &classfactory_Vtbl;
|
2022-04-08 06:50:39 +00:00
|
|
|
factory->refcount = 1;
|
2017-09-20 12:03:37 +00:00
|
|
|
|
|
|
|
factory->pfnCreateInstance = object_creation[i].pfnCreateInstance;
|
|
|
|
|
2022-04-08 06:50:39 +00:00
|
|
|
*out = &factory->IClassFactory_iface;
|
|
|
|
|
2017-09-20 12:03:37 +00:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2020-07-01 12:55:46 +00:00
|
|
|
HRESULT WINAPI MFCreateVideoMixerAndPresenter(IUnknown *mixer_outer, IUnknown *presenter_outer,
|
|
|
|
REFIID riid_mixer, void **mixer, REFIID riid_presenter, void **presenter)
|
|
|
|
{
|
|
|
|
HRESULT hr;
|
|
|
|
|
|
|
|
TRACE("%p, %p, %s, %p, %s, %p.\n", mixer_outer, presenter_outer, debugstr_guid(riid_mixer), mixer,
|
|
|
|
debugstr_guid(riid_presenter), presenter);
|
|
|
|
|
|
|
|
if (!mixer || !presenter)
|
|
|
|
return E_POINTER;
|
|
|
|
|
|
|
|
*mixer = *presenter = NULL;
|
|
|
|
|
|
|
|
if (SUCCEEDED(hr = CoCreateInstance(&CLSID_MFVideoMixer9, mixer_outer, CLSCTX_INPROC_SERVER, riid_mixer, mixer)))
|
|
|
|
hr = CoCreateInstance(&CLSID_MFVideoPresenter9, presenter_outer, CLSCTX_INPROC_SERVER, riid_presenter, presenter);
|
|
|
|
|
|
|
|
if (FAILED(hr))
|
|
|
|
{
|
|
|
|
if (*mixer)
|
|
|
|
IUnknown_Release((IUnknown *)*mixer);
|
|
|
|
if (*presenter)
|
|
|
|
IUnknown_Release((IUnknown *)*presenter);
|
|
|
|
*mixer = *presenter = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return hr;
|
|
|
|
}
|
2021-08-02 10:00:08 +00:00
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* MFIsFormatYUV (evr.@)
|
|
|
|
*/
|
|
|
|
BOOL WINAPI MFIsFormatYUV(DWORD format)
|
|
|
|
{
|
|
|
|
TRACE("%s.\n", debugstr_an((char *)&format, 4));
|
|
|
|
|
|
|
|
switch (format)
|
|
|
|
{
|
|
|
|
case D3DFMT_UYVY:
|
|
|
|
case D3DFMT_YUY2:
|
|
|
|
case MAKEFOURCC('A','Y','U','V'):
|
|
|
|
case MAKEFOURCC('I','M','C','1'):
|
|
|
|
case MAKEFOURCC('I','M','C','2'):
|
|
|
|
case MAKEFOURCC('Y','V','1','2'):
|
|
|
|
case MAKEFOURCC('N','V','1','1'):
|
|
|
|
case MAKEFOURCC('N','V','1','2'):
|
|
|
|
case MAKEFOURCC('Y','2','1','0'):
|
|
|
|
case MAKEFOURCC('Y','2','1','6'):
|
|
|
|
return TRUE;
|
|
|
|
default:
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
}
|