Commit 9b38ff96 authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

mfsrcsnk: Add WAVE sink class factory.

parent cf9b3830
......@@ -5,4 +5,7 @@ IMPORTS = ole32 mfplat mfuuid uuid
EXTRADLLFLAGS = -Wb,--prefer-native
C_SRCS = \
factory.c \
wave.c
IDL_SRCS = mfsrcsnk.idl
/*
* Copyright 2022 Nikolay Sivov for CodeWeavers
*
* 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
*/
#define COBJMACROS
#include "mfidl.h"
#include "wine/mfinternal.h"
#include "mfsrcsnk_private.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL(mfplat);
struct class_factory
{
IClassFactory IClassFactory_iface;
HRESULT (*create_instance)(REFIID riid, void **out);
};
static inline struct class_factory *impl_from_IClassFactory(IClassFactory *iface)
{
return CONTAINING_RECORD(iface, struct class_factory, IClassFactory_iface);
}
static HRESULT WINAPI class_factory_QueryInterface(IClassFactory *iface, REFIID riid, void **out)
{
if (IsEqualGUID(riid, &IID_IClassFactory) ||
IsEqualGUID(riid, &IID_IUnknown))
{
IClassFactory_AddRef(iface);
*out = iface;
return S_OK;
}
*out = NULL;
WARN("Interface %s is not supported.\n", debugstr_guid(riid));
return E_NOINTERFACE;
}
static ULONG WINAPI class_factory_AddRef(IClassFactory *iface)
{
return 2;
}
static ULONG WINAPI class_factory_Release(IClassFactory *iface)
{
return 1;
}
static HRESULT WINAPI class_factory_CreateInstance(IClassFactory *iface, IUnknown *outer,
REFIID riid, void **out)
{
struct class_factory *factory = impl_from_IClassFactory(iface);
TRACE("%p, %s, %p.\n", outer, debugstr_guid(riid), out);
*out = NULL;
if (outer)
return CLASS_E_NOAGGREGATION;
return factory->create_instance(riid, out);
}
static HRESULT WINAPI class_factory_LockServer(IClassFactory *iface, BOOL dolock)
{
FIXME("%p, %d.\n", iface, dolock);
return S_OK;
}
static const IClassFactoryVtbl class_factory_vtbl =
{
class_factory_QueryInterface,
class_factory_AddRef,
class_factory_Release,
class_factory_CreateInstance,
class_factory_LockServer,
};
static struct class_factory wave_sink_factory = { { &class_factory_vtbl }, wave_sink_factory_create };
/***********************************************************************
* DllGetClassObject (mfsrcsnk.@)
*/
HRESULT WINAPI DllGetClassObject(REFCLSID clsid, REFIID riid, void **out)
{
*out = NULL;
if (IsEqualGUID(clsid, &CLSID_MFWAVESinkClassFactory))
{
return IClassFactory_QueryInterface(&wave_sink_factory.IClassFactory_iface, riid, out);
}
else
{
FIXME("Unknown clsid %s.\n", debugstr_guid(clsid));
return CLASS_E_CLASSNOTAVAILABLE;
}
}
/*
* Copyright 2022 Nikolay Sivov for CodeWeavers
*
* 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
*/
#pragma makedep register
[
helpstring("MF WAVE Sink Factory"),
threading(both),
uuid(36f99745-23c9-4c9c-8dd5-cc31ce964390)
]
coclass MFWAVESinkClassFactory { }
@ stdcall -private DllRegisterServer()
@ stdcall -private DllUnregisterServer()
@ stdcall MFCreateWAVEMediaSink(ptr ptr ptr)
/*
* Copyright 2022 Nikolay Sivov for CodeWeavers
*
* 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 "wine/mfinternal.h"
extern HRESULT wave_sink_factory_create(REFIID riid, void **out) DECLSPEC_HIDDEN;
......@@ -22,6 +22,8 @@
#include "mfidl.h"
#include "mferror.h"
#include "mfsrcsnk_private.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL(mfplat);
......@@ -889,3 +891,50 @@ failed:
return hr;
}
static HRESULT WINAPI sink_class_factory_QueryInterface(IMFSinkClassFactory *iface, REFIID riid, void **out)
{
if (IsEqualIID(riid, &IID_IMFSinkClassFactory)
|| IsEqualIID(riid, &IID_IUnknown))
{
*out = iface;
IMFSinkClassFactory_AddRef(iface);
return S_OK;
}
*out = NULL;
return E_NOINTERFACE;
}
static ULONG WINAPI sink_class_factory_AddRef(IMFSinkClassFactory *iface)
{
return 2;
}
static ULONG WINAPI sink_class_factory_Release(IMFSinkClassFactory *iface)
{
return 1;
}
static HRESULT WINAPI sink_class_factory_CreateMediaSink(IMFSinkClassFactory *iface, IMFByteStream *stream,
IMFMediaType *video_type, IMFMediaType *audio_type, IMFMediaSink **sink)
{
TRACE("%p, %p, %p, %p.\n", stream, video_type, audio_type, sink);
return MFCreateWAVEMediaSink(stream, audio_type, sink);
}
static const IMFSinkClassFactoryVtbl wave_sink_factory_vtbl =
{
sink_class_factory_QueryInterface,
sink_class_factory_AddRef,
sink_class_factory_Release,
sink_class_factory_CreateMediaSink,
};
static IMFSinkClassFactory wave_sink_factory = { &wave_sink_factory_vtbl };
HRESULT wave_sink_factory_create(REFIID riid, void **out)
{
return IMFSinkClassFactory_QueryInterface(&wave_sink_factory, riid, out);
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment