1 /* DirectShow Base Functions (QUARTZ.DLL)
3 * Copyright 2002 Lionel Ulmer
5 * This file contains the (internal) driver registration functions,
6 * driver enumeration APIs and DirectDraw creation functions.
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
24 #include "wine/debug.h"
26 #include "quartz_private.h"
27 #include "wine/unicode.h"
29 WINE_DEFAULT_DEBUG_CHANNEL(quartz
);
31 static DWORD dll_ref
= 0;
33 /* For the moment, do nothing here. */
34 BOOL WINAPI
DllMain(HINSTANCE hInstDLL
, DWORD fdwReason
, LPVOID lpv
)
37 case DLL_PROCESS_ATTACH
:
38 DisableThreadLibraryCalls(hInstDLL
);
40 case DLL_PROCESS_DETACH
:
46 /******************************************************************************
47 * DirectShow ClassFactory
50 IClassFactory ITF_IClassFactory
;
53 HRESULT (*pfnCreateInstance
)(IUnknown
*pUnkOuter
, LPVOID
*ppObj
);
56 struct object_creation_info
59 HRESULT (*pfnCreateInstance
)(IUnknown
*pUnkOuter
, LPVOID
*ppObj
);
62 static const struct object_creation_info object_creation
[] =
64 { &CLSID_SeekingPassThru
, SeekingPassThru_create
},
65 { &CLSID_FilterGraph
, FilterGraph_create
},
66 { &CLSID_FilterGraphNoThread
, FilterGraphNoThread_create
},
67 { &CLSID_FilterMapper
, FilterMapper_create
},
68 { &CLSID_FilterMapper2
, FilterMapper2_create
},
69 { &CLSID_AsyncReader
, AsyncReader_create
},
70 { &CLSID_MemoryAllocator
, StdMemAllocator_create
},
71 { &CLSID_AviSplitter
, AVISplitter_create
},
72 { &CLSID_MPEG1Splitter
, MPEGSplitter_create
},
73 { &CLSID_VideoRenderer
, VideoRenderer_create
},
74 { &CLSID_NullRenderer
, NullRenderer_create
},
75 { &CLSID_VideoRendererDefault
, VideoRendererDefault_create
},
76 { &CLSID_DSoundRender
, DSoundRender_create
},
77 { &CLSID_AudioRender
, DSoundRender_create
},
78 { &CLSID_AVIDec
, AVIDec_create
},
79 { &CLSID_SystemClock
, QUARTZ_CreateSystemClock
},
80 { &CLSID_ACMWrapper
, ACMWrapper_create
},
81 { &CLSID_WAVEParser
, WAVEParser_create
}
85 DSCF_QueryInterface(LPCLASSFACTORY iface
,REFIID riid
,LPVOID
*ppobj
)
87 IClassFactoryImpl
*This
= (IClassFactoryImpl
*)iface
;
89 if (IsEqualGUID(riid
, &IID_IUnknown
)
90 || IsEqualGUID(riid
, &IID_IClassFactory
))
92 IClassFactory_AddRef(iface
);
98 WARN("(%p)->(%s,%p),not found\n",This
,debugstr_guid(riid
),ppobj
);
102 static ULONG WINAPI
DSCF_AddRef(LPCLASSFACTORY iface
)
104 IClassFactoryImpl
*This
= (IClassFactoryImpl
*)iface
;
105 return InterlockedIncrement(&This
->ref
);
108 static ULONG WINAPI
DSCF_Release(LPCLASSFACTORY iface
)
110 IClassFactoryImpl
*This
= (IClassFactoryImpl
*)iface
;
112 ULONG ref
= InterlockedDecrement(&This
->ref
);
121 static HRESULT WINAPI
DSCF_CreateInstance(LPCLASSFACTORY iface
, LPUNKNOWN pOuter
,
122 REFIID riid
, LPVOID
*ppobj
)
124 IClassFactoryImpl
*This
= (IClassFactoryImpl
*)iface
;
128 TRACE("(%p)->(%p,%s,%p)\n",This
,pOuter
,debugstr_guid(riid
),ppobj
);
131 hres
= This
->pfnCreateInstance(pOuter
, (LPVOID
*) &punk
);
132 if (SUCCEEDED(hres
)) {
133 hres
= IUnknown_QueryInterface(punk
, riid
, ppobj
);
134 IUnknown_Release(punk
);
139 static HRESULT WINAPI
DSCF_LockServer(LPCLASSFACTORY iface
,BOOL dolock
)
141 IClassFactoryImpl
*This
= (IClassFactoryImpl
*)iface
;
142 FIXME("(%p)->(%d),stub!\n",This
,dolock
);
146 static const IClassFactoryVtbl DSCF_Vtbl
=
155 /*******************************************************************************
156 * DllGetClassObject [QUARTZ.@]
157 * Retrieves class object from a DLL object
160 * Docs say returns STDAPI
163 * rclsid [I] CLSID for the class object
164 * riid [I] Reference to identifier of interface for class object
165 * ppv [O] Address of variable to receive interface pointer for riid
169 * Failure: CLASS_E_CLASSNOTAVAILABLE, E_OUTOFMEMORY, E_INVALIDARG,
172 HRESULT WINAPI
DllGetClassObject(REFCLSID rclsid
, REFIID riid
, LPVOID
*ppv
)
175 IClassFactoryImpl
*factory
;
177 TRACE("(%s,%s,%p)\n", debugstr_guid(rclsid
), debugstr_guid(riid
), ppv
);
179 if ( !IsEqualGUID( &IID_IClassFactory
, riid
)
180 && ! IsEqualGUID( &IID_IUnknown
, riid
) )
181 return E_NOINTERFACE
;
183 for (i
=0; i
< sizeof(object_creation
)/sizeof(object_creation
[0]); i
++)
185 if (IsEqualGUID(object_creation
[i
].clsid
, rclsid
))
189 if (i
== sizeof(object_creation
)/sizeof(object_creation
[0]))
191 FIXME("%s: no class found.\n", debugstr_guid(rclsid
));
192 return CLASS_E_CLASSNOTAVAILABLE
;
195 factory
= CoTaskMemAlloc(sizeof(*factory
));
196 if (factory
== NULL
) return E_OUTOFMEMORY
;
198 factory
->ITF_IClassFactory
.lpVtbl
= &DSCF_Vtbl
;
201 factory
->pfnCreateInstance
= object_creation
[i
].pfnCreateInstance
;
203 *ppv
= &(factory
->ITF_IClassFactory
);
207 /***********************************************************************
208 * DllCanUnloadNow (QUARTZ.@)
210 HRESULT WINAPI
DllCanUnloadNow(void)
212 return dll_ref
!= 0 ? S_FALSE
: S_OK
;
216 #define OUR_GUID_ENTRY(name, l, w1, w2, b1, b2, b3, b4, b5, b6, b7, b8) \
217 { { l, w1, w2, { b1, b2, b3, b4, b5, b6, b7, b8 } } , #name },
219 static const struct {
225 { { 0, 0, 0, {0, 0, 0, 0, 0, 0, 0, 0} }, NULL
}
228 /***********************************************************************
229 * qzdebugstr_guid (internal)
231 * Gives a text version of DirectShow GUIDs
233 const char * qzdebugstr_guid( const GUID
* id
)
238 for (i
=0;InterfaceDesc
[i
].name
&& !name
;i
++) {
239 if (IsEqualGUID(&InterfaceDesc
[i
].riid
, id
)) return InterfaceDesc
[i
].name
;
241 return debugstr_guid(id
);
244 /***********************************************************************
245 * qzdebugstr_State (internal)
247 * Gives a text version of the FILTER_STATE enumeration
249 const char * qzdebugstr_State(FILTER_STATE state
)
254 return "State_Stopped";
256 return "State_Running";
258 return "State_Paused";
260 return "State_Unknown";
264 LONG WINAPI
AmpFactorToDB(LONG ampfactor
)
266 FIXME("(%d) Stub!\n", ampfactor
);
270 LONG WINAPI
DBToAmpFactor(LONG db
)
272 FIXME("(%d) Stub!\n", db
);
273 /* Avoid divide by zero (probably during range computation) in Windows Media Player 6.4 */
279 /***********************************************************************
280 * AMGetErrorTextA (QUARTZ.@)
282 DWORD WINAPI
AMGetErrorTextA(HRESULT hr
, LPSTR buffer
, DWORD maxlen
)
285 static const char format
[] = "Error: 0x%x";
286 char error
[MAX_ERROR_TEXT_LEN
];
288 FIXME("(%x,%p,%d) stub\n", hr
, buffer
, maxlen
);
290 if (!buffer
) return 0;
291 wsprintfA(error
, format
, hr
);
292 if ((len
= strlen(error
)) >= maxlen
) return 0;
293 lstrcpyA(buffer
, error
);
297 /***********************************************************************
298 * AMGetErrorTextW (QUARTZ.@)
300 DWORD WINAPI
AMGetErrorTextW(HRESULT hr
, LPWSTR buffer
, DWORD maxlen
)
303 static const WCHAR format
[] = {'E','r','r','o','r',':',' ','0','x','%','l','x',0};
304 WCHAR error
[MAX_ERROR_TEXT_LEN
];
306 FIXME("(%x,%p,%d) stub\n", hr
, buffer
, maxlen
);
308 if (!buffer
) return 0;
309 wsprintfW(error
, format
, hr
);
310 if ((len
= strlenW(error
)) >= maxlen
) return 0;
311 lstrcpyW(buffer
, error
);