1 /* DirectShow Base Functions (QUARTZ.DLL)
3 * Copyright 2002 Lionel Ulmer
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
21 #include "wine/debug.h"
23 #include "quartz_private.h"
24 #include "wine/unicode.h"
26 WINE_DEFAULT_DEBUG_CHANNEL(quartz
);
28 extern HRESULT WINAPI
QUARTZ_DllGetClassObject(REFCLSID
, REFIID
, LPVOID
*) DECLSPEC_HIDDEN
;
29 extern HRESULT WINAPI
QUARTZ_DllCanUnloadNow(void) DECLSPEC_HIDDEN
;
30 extern BOOL WINAPI
QUARTZ_DllMain(HINSTANCE
, DWORD
, LPVOID
) DECLSPEC_HIDDEN
;
32 static DWORD dll_ref
= 0;
34 /* For the moment, do nothing here. */
35 BOOL WINAPI
DllMain(HINSTANCE hInstDLL
, DWORD fdwReason
, LPVOID lpv
)
37 if (fdwReason
== DLL_PROCESS_DETACH
)
38 video_unregister_windowclass();
39 return QUARTZ_DllMain( hInstDLL
, fdwReason
, lpv
);
42 /******************************************************************************
43 * DirectShow ClassFactory
46 IClassFactory ITF_IClassFactory
;
49 HRESULT (*pfnCreateInstance
)(IUnknown
*pUnkOuter
, LPVOID
*ppObj
);
52 struct object_creation_info
55 HRESULT (*pfnCreateInstance
)(IUnknown
*pUnkOuter
, LPVOID
*ppObj
);
58 static const struct object_creation_info object_creation
[] =
60 { &CLSID_SeekingPassThru
, SeekingPassThru_create
},
61 { &CLSID_FilterGraph
, FilterGraph_create
},
62 { &CLSID_FilterGraphNoThread
, FilterGraphNoThread_create
},
63 { &CLSID_FilterMapper
, FilterMapper_create
},
64 { &CLSID_FilterMapper2
, FilterMapper2_create
},
65 { &CLSID_AsyncReader
, AsyncReader_create
},
66 { &CLSID_MemoryAllocator
, StdMemAllocator_create
},
67 { &CLSID_AviSplitter
, AVISplitter_create
},
68 { &CLSID_MPEG1Splitter
, MPEGSplitter_create
},
69 { &CLSID_VideoRenderer
, VideoRenderer_create
},
70 { &CLSID_NullRenderer
, NullRenderer_create
},
71 { &CLSID_VideoRendererDefault
, VideoRendererDefault_create
},
72 { &CLSID_DSoundRender
, DSoundRender_create
},
73 { &CLSID_AudioRender
, DSoundRender_create
},
74 { &CLSID_AVIDec
, AVIDec_create
},
75 { &CLSID_SystemClock
, QUARTZ_CreateSystemClock
},
76 { &CLSID_ACMWrapper
, ACMWrapper_create
},
77 { &CLSID_WAVEParser
, WAVEParser_create
}
81 DSCF_QueryInterface(LPCLASSFACTORY iface
,REFIID riid
,LPVOID
*ppobj
)
83 IClassFactoryImpl
*This
= (IClassFactoryImpl
*)iface
;
85 if (IsEqualGUID(riid
, &IID_IUnknown
)
86 || IsEqualGUID(riid
, &IID_IClassFactory
))
88 IClassFactory_AddRef(iface
);
94 WARN("(%p)->(%s,%p),not found\n",This
,debugstr_guid(riid
),ppobj
);
98 static ULONG WINAPI
DSCF_AddRef(LPCLASSFACTORY iface
)
100 IClassFactoryImpl
*This
= (IClassFactoryImpl
*)iface
;
101 return InterlockedIncrement(&This
->ref
);
104 static ULONG WINAPI
DSCF_Release(LPCLASSFACTORY iface
)
106 IClassFactoryImpl
*This
= (IClassFactoryImpl
*)iface
;
108 ULONG ref
= InterlockedDecrement(&This
->ref
);
117 static HRESULT WINAPI
DSCF_CreateInstance(LPCLASSFACTORY iface
, LPUNKNOWN pOuter
,
118 REFIID riid
, LPVOID
*ppobj
)
120 IClassFactoryImpl
*This
= (IClassFactoryImpl
*)iface
;
124 TRACE("(%p)->(%p,%s,%p)\n",This
,pOuter
,debugstr_guid(riid
),ppobj
);
127 hres
= This
->pfnCreateInstance(pOuter
, (LPVOID
*) &punk
);
128 if (SUCCEEDED(hres
)) {
129 hres
= IUnknown_QueryInterface(punk
, riid
, ppobj
);
130 IUnknown_Release(punk
);
135 static HRESULT WINAPI
DSCF_LockServer(LPCLASSFACTORY iface
,BOOL dolock
)
137 IClassFactoryImpl
*This
= (IClassFactoryImpl
*)iface
;
138 FIXME("(%p)->(%d),stub!\n",This
,dolock
);
142 static const IClassFactoryVtbl DSCF_Vtbl
=
151 /*******************************************************************************
152 * DllGetClassObject [QUARTZ.@]
153 * Retrieves class object from a DLL object
156 * Docs say returns STDAPI
159 * rclsid [I] CLSID for the class object
160 * riid [I] Reference to identifier of interface for class object
161 * ppv [O] Address of variable to receive interface pointer for riid
165 * Failure: CLASS_E_CLASSNOTAVAILABLE, E_OUTOFMEMORY, E_INVALIDARG,
168 HRESULT WINAPI
DllGetClassObject(REFCLSID rclsid
, REFIID riid
, LPVOID
*ppv
)
172 TRACE("(%s,%s,%p)\n", debugstr_guid(rclsid
), debugstr_guid(riid
), ppv
);
174 if (IsEqualGUID( &IID_IClassFactory
, riid
) || IsEqualGUID( &IID_IUnknown
, riid
))
176 for (i
=0; i
< sizeof(object_creation
)/sizeof(object_creation
[0]); i
++)
178 if (IsEqualGUID(object_creation
[i
].clsid
, rclsid
))
180 IClassFactoryImpl
*factory
= CoTaskMemAlloc(sizeof(*factory
));
181 if (factory
== NULL
) return E_OUTOFMEMORY
;
183 factory
->ITF_IClassFactory
.lpVtbl
= &DSCF_Vtbl
;
186 factory
->pfnCreateInstance
= object_creation
[i
].pfnCreateInstance
;
188 *ppv
= &factory
->ITF_IClassFactory
;
193 return QUARTZ_DllGetClassObject( rclsid
, riid
, ppv
);
196 /***********************************************************************
197 * DllCanUnloadNow (QUARTZ.@)
199 HRESULT WINAPI
DllCanUnloadNow(void)
201 if (dll_ref
) return S_FALSE
;
202 return QUARTZ_DllCanUnloadNow();
206 #define OUR_GUID_ENTRY(name, l, w1, w2, b1, b2, b3, b4, b5, b6, b7, b8) \
207 { { l, w1, w2, { b1, b2, b3, b4, b5, b6, b7, b8 } } , #name },
209 static const struct {
215 { { 0, 0, 0, {0, 0, 0, 0, 0, 0, 0, 0} }, NULL
}
218 /***********************************************************************
221 HRESULT CALLBACK
ICaptureGraphBuilder_FindInterface_Proxy( ICaptureGraphBuilder
*This
,
222 const GUID
*pCategory
,
227 return ICaptureGraphBuilder_RemoteFindInterface_Proxy( This
, pCategory
, pf
,
228 riid
, (IUnknown
**)ppint
);
231 HRESULT __RPC_STUB
ICaptureGraphBuilder_FindInterface_Stub( ICaptureGraphBuilder
*This
,
232 const GUID
*pCategory
,
237 return ICaptureGraphBuilder_FindInterface( This
, pCategory
, pf
, riid
, (void **)ppint
);
240 HRESULT CALLBACK
ICaptureGraphBuilder2_FindInterface_Proxy( ICaptureGraphBuilder2
*This
,
241 const GUID
*pCategory
,
247 return ICaptureGraphBuilder2_RemoteFindInterface_Proxy( This
, pCategory
, pType
,
248 pf
, riid
, (IUnknown
**)ppint
);
251 HRESULT __RPC_STUB
ICaptureGraphBuilder2_FindInterface_Stub( ICaptureGraphBuilder2
*This
,
252 const GUID
*pCategory
,
258 return ICaptureGraphBuilder2_FindInterface( This
, pCategory
, pType
, pf
, riid
, (void **)ppint
);
261 /***********************************************************************
262 * qzdebugstr_guid (internal)
264 * Gives a text version of DirectShow GUIDs
266 const char * qzdebugstr_guid( const GUID
* id
)
271 for (i
=0;InterfaceDesc
[i
].name
&& !name
;i
++) {
272 if (IsEqualGUID(&InterfaceDesc
[i
].riid
, id
)) return InterfaceDesc
[i
].name
;
274 return debugstr_guid(id
);
277 LONG WINAPI
AmpFactorToDB(LONG ampfactor
)
279 FIXME("(%d) Stub!\n", ampfactor
);
283 LONG WINAPI
DBToAmpFactor(LONG db
)
285 FIXME("(%d) Stub!\n", db
);
286 /* Avoid divide by zero (probably during range computation) in Windows Media Player 6.4 */
292 /***********************************************************************
293 * AMGetErrorTextA (QUARTZ.@)
295 DWORD WINAPI
AMGetErrorTextA(HRESULT hr
, LPSTR buffer
, DWORD maxlen
)
298 WCHAR errorW
[MAX_ERROR_TEXT_LEN
];
300 TRACE("(%x,%p,%d)\n", hr
, buffer
, maxlen
);
304 res
= AMGetErrorTextW(hr
, errorW
, sizeof(errorW
)/sizeof(*errorW
));
305 return WideCharToMultiByte(CP_ACP
, 0, errorW
, res
, buffer
, maxlen
, 0, 0);
308 /***********************************************************************
309 * AMGetErrorTextW (QUARTZ.@)
311 DWORD WINAPI
AMGetErrorTextW(HRESULT hr
, LPWSTR buffer
, DWORD maxlen
)
314 static const WCHAR format
[] = {'E','r','r','o','r',':',' ','0','x','%','l','x',0};
315 WCHAR error
[MAX_ERROR_TEXT_LEN
];
317 FIXME("(%x,%p,%d) stub\n", hr
, buffer
, maxlen
);
319 if (!buffer
) return 0;
320 wsprintfW(error
, format
, hr
);
321 if ((len
= strlenW(error
)) >= maxlen
) return 0;
322 lstrcpyW(buffer
, error
);