1 /* DirectShow Editing Services (qedit.dll)
3 * Copyright 2008 Google (Lei Zhang)
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
20 #include "qedit_private.h"
22 #include "wine/debug.h"
24 WINE_DEFAULT_DEBUG_CHANNEL(qedit
);
26 static HINSTANCE instance
;
28 BOOL WINAPI
DllMain(HINSTANCE hInstDLL
, DWORD fdwReason
, LPVOID lpv
)
31 case DLL_PROCESS_ATTACH
:
33 DisableThreadLibraryCalls(hInstDLL
);
39 /******************************************************************************
40 * DirectShow ClassFactory
43 IClassFactory IClassFactory_iface
;
45 HRESULT (*pfnCreateInstance
)(IUnknown
*pUnkOuter
, LPVOID
*ppObj
);
48 static inline IClassFactoryImpl
*impl_from_IClassFactory(IClassFactory
*iface
)
50 return CONTAINING_RECORD(iface
, IClassFactoryImpl
, IClassFactory_iface
);
53 struct object_creation_info
56 HRESULT (*pfnCreateInstance
)(IUnknown
*pUnkOuter
, LPVOID
*ppObj
);
59 static const struct object_creation_info object_creation
[] =
61 { &CLSID_MediaDet
, MediaDet_create
},
62 { &CLSID_SampleGrabber
, SampleGrabber_create
},
65 static HRESULT WINAPI
DSCF_QueryInterface(IClassFactory
*iface
, REFIID riid
, void **ppobj
)
67 if (IsEqualGUID(riid
, &IID_IUnknown
)
68 || IsEqualGUID(riid
, &IID_IClassFactory
))
70 IClassFactory_AddRef(iface
);
76 WARN("(%p)->(%s,%p), not found\n", iface
, debugstr_guid(riid
), ppobj
);
80 static ULONG WINAPI
DSCF_AddRef(IClassFactory
*iface
)
82 IClassFactoryImpl
*This
= impl_from_IClassFactory(iface
);
83 return InterlockedIncrement(&This
->ref
);
86 static ULONG WINAPI
DSCF_Release(IClassFactory
*iface
)
88 IClassFactoryImpl
*This
= impl_from_IClassFactory(iface
);
89 ULONG ref
= InterlockedDecrement(&This
->ref
);
97 static HRESULT WINAPI
DSCF_CreateInstance(IClassFactory
*iface
, IUnknown
*pOuter
, REFIID riid
,
100 IClassFactoryImpl
*This
= impl_from_IClassFactory(iface
);
104 TRACE("(%p)->(%p,%s,%p)\n",This
,pOuter
,debugstr_guid(riid
),ppobj
);
107 if (pOuter
&& !IsEqualGUID(&IID_IUnknown
, riid
))
110 hres
= This
->pfnCreateInstance(pOuter
, (LPVOID
*) &punk
);
111 if (SUCCEEDED(hres
)) {
112 hres
= IUnknown_QueryInterface(punk
, riid
, ppobj
);
113 IUnknown_Release(punk
);
118 static HRESULT WINAPI
DSCF_LockServer(IClassFactory
*iface
, BOOL dolock
)
120 IClassFactoryImpl
*This
= impl_from_IClassFactory(iface
);
121 FIXME("(%p)->(%d),stub!\n",This
,dolock
);
125 static const IClassFactoryVtbl DSCF_Vtbl
=
135 /***********************************************************************
136 * DllCanUnloadNow (QEDIT.@)
138 HRESULT WINAPI
DllCanUnloadNow(void)
143 /*******************************************************************************
144 * DllGetClassObject [QEDIT.@]
145 * Retrieves class object from a DLL object
148 * rclsid [I] CLSID for the class object
149 * riid [I] Reference to identifier of interface for class object
150 * ppv [O] Address of variable to receive interface pointer for riid
154 * Failure: CLASS_E_CLASSNOTAVAILABLE, E_OUTOFMEMORY, E_INVALIDARG,
155 * E_UNEXPECTED, E_NOINTERFACE
158 HRESULT WINAPI
DllGetClassObject(REFCLSID rclsid
, REFIID riid
, LPVOID
*ppv
)
161 IClassFactoryImpl
*factory
;
163 TRACE("(%s,%s,%p)\n", debugstr_guid(rclsid
), debugstr_guid(riid
), ppv
);
165 if ( !IsEqualGUID( &IID_IClassFactory
, riid
)
166 && ! IsEqualGUID( &IID_IUnknown
, riid
) )
167 return E_NOINTERFACE
;
169 for (i
=0; i
< sizeof(object_creation
)/sizeof(object_creation
[0]); i
++)
171 if (IsEqualGUID(object_creation
[i
].clsid
, rclsid
))
175 if (i
== sizeof(object_creation
)/sizeof(object_creation
[0]))
177 FIXME("%s: no class found.\n", debugstr_guid(rclsid
));
178 return CLASS_E_CLASSNOTAVAILABLE
;
181 factory
= CoTaskMemAlloc(sizeof(*factory
));
182 if (factory
== NULL
) return E_OUTOFMEMORY
;
184 factory
->IClassFactory_iface
.lpVtbl
= &DSCF_Vtbl
;
187 factory
->pfnCreateInstance
= object_creation
[i
].pfnCreateInstance
;
189 *ppv
= &factory
->IClassFactory_iface
;
193 /***********************************************************************
194 * DllRegisterServer (QEDIT.@)
196 HRESULT WINAPI
DllRegisterServer(void)
198 return __wine_register_resources( instance
);
201 /***********************************************************************
202 * DllUnregisterServer (QEDIT.@)
204 HRESULT WINAPI
DllUnregisterServer(void)
206 return __wine_unregister_resources( instance
);