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_AMTimeline
, AMTimeline_create
},
62 { &CLSID_MediaDet
, MediaDet_create
},
63 { &CLSID_SampleGrabber
, SampleGrabber_create
},
66 static HRESULT WINAPI
DSCF_QueryInterface(IClassFactory
*iface
, REFIID riid
, void **ppobj
)
68 if (IsEqualGUID(riid
, &IID_IUnknown
)
69 || IsEqualGUID(riid
, &IID_IClassFactory
))
71 IClassFactory_AddRef(iface
);
77 WARN("(%p)->(%s,%p), not found\n", iface
, debugstr_guid(riid
), ppobj
);
81 static ULONG WINAPI
DSCF_AddRef(IClassFactory
*iface
)
83 IClassFactoryImpl
*This
= impl_from_IClassFactory(iface
);
84 return InterlockedIncrement(&This
->ref
);
87 static ULONG WINAPI
DSCF_Release(IClassFactory
*iface
)
89 IClassFactoryImpl
*This
= impl_from_IClassFactory(iface
);
90 ULONG ref
= InterlockedDecrement(&This
->ref
);
98 static HRESULT WINAPI
DSCF_CreateInstance(IClassFactory
*iface
, IUnknown
*pOuter
, REFIID riid
,
101 IClassFactoryImpl
*This
= impl_from_IClassFactory(iface
);
105 TRACE("(%p)->(%p,%s,%p)\n",This
,pOuter
,debugstr_guid(riid
),ppobj
);
108 if (pOuter
&& !IsEqualGUID(&IID_IUnknown
, riid
))
111 hres
= This
->pfnCreateInstance(pOuter
, (LPVOID
*) &punk
);
112 if (SUCCEEDED(hres
)) {
113 hres
= IUnknown_QueryInterface(punk
, riid
, ppobj
);
114 IUnknown_Release(punk
);
119 static HRESULT WINAPI
DSCF_LockServer(IClassFactory
*iface
, BOOL dolock
)
121 IClassFactoryImpl
*This
= impl_from_IClassFactory(iface
);
122 FIXME("(%p)->(%d),stub!\n",This
,dolock
);
126 static const IClassFactoryVtbl DSCF_Vtbl
=
136 /***********************************************************************
137 * DllCanUnloadNow (QEDIT.@)
139 HRESULT WINAPI
DllCanUnloadNow(void)
144 /*******************************************************************************
145 * DllGetClassObject [QEDIT.@]
146 * Retrieves class object from a DLL object
149 * rclsid [I] CLSID for the class object
150 * riid [I] Reference to identifier of interface for class object
151 * ppv [O] Address of variable to receive interface pointer for riid
155 * Failure: CLASS_E_CLASSNOTAVAILABLE, E_OUTOFMEMORY, E_INVALIDARG,
156 * E_UNEXPECTED, E_NOINTERFACE
159 HRESULT WINAPI
DllGetClassObject(REFCLSID rclsid
, REFIID riid
, LPVOID
*ppv
)
162 IClassFactoryImpl
*factory
;
164 TRACE("(%s,%s,%p)\n", debugstr_guid(rclsid
), debugstr_guid(riid
), ppv
);
166 if ( !IsEqualGUID( &IID_IClassFactory
, riid
)
167 && ! IsEqualGUID( &IID_IUnknown
, riid
) )
168 return E_NOINTERFACE
;
170 for (i
= 0; i
< ARRAY_SIZE(object_creation
); i
++)
172 if (IsEqualGUID(object_creation
[i
].clsid
, rclsid
))
176 if (i
== ARRAY_SIZE(object_creation
))
178 FIXME("%s: no class found.\n", debugstr_guid(rclsid
));
179 return CLASS_E_CLASSNOTAVAILABLE
;
182 factory
= CoTaskMemAlloc(sizeof(*factory
));
183 if (factory
== NULL
) return E_OUTOFMEMORY
;
185 factory
->IClassFactory_iface
.lpVtbl
= &DSCF_Vtbl
;
188 factory
->pfnCreateInstance
= object_creation
[i
].pfnCreateInstance
;
190 *ppv
= &factory
->IClassFactory_iface
;
194 /***********************************************************************
195 * DllRegisterServer (QEDIT.@)
197 HRESULT WINAPI
DllRegisterServer(void)
199 return __wine_register_resources( instance
);
202 /***********************************************************************
203 * DllUnregisterServer (QEDIT.@)
205 HRESULT WINAPI
DllUnregisterServer(void)
207 return __wine_unregister_resources( instance
);