2 * MultiMedia Streams Base Functions (AMSTREAM.DLL)
4 * Copyright 2004 Christian Costa
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
34 #include "amstream_private.h"
36 #include "wine/debug.h"
38 WINE_DEFAULT_DEBUG_CHANNEL(amstream
);
40 static HINSTANCE instance
;
42 /* For the moment, do nothing here. */
43 BOOL WINAPI
DllMain(HINSTANCE hInstDLL
, DWORD fdwReason
, LPVOID lpv
)
46 case DLL_PROCESS_ATTACH
:
48 DisableThreadLibraryCalls(hInstDLL
);
54 /******************************************************************************
55 * Multimedia Streams ClassFactory
58 IClassFactory IClassFactory_iface
;
60 HRESULT (*pfnCreateInstance
)(IUnknown
*pUnkOuter
, LPVOID
*ppObj
);
63 static inline IClassFactoryImpl
*impl_from_IClassFactory(IClassFactory
*iface
)
65 return CONTAINING_RECORD(iface
, IClassFactoryImpl
, IClassFactory_iface
);
68 struct object_creation_info
71 HRESULT (*pfnCreateInstance
)(IUnknown
*pUnkOuter
, LPVOID
*ppObj
);
74 static const struct object_creation_info object_creation
[] =
76 { &CLSID_AMMultiMediaStream
, multimedia_stream_create
},
77 { &CLSID_AMDirectDrawStream
, ddraw_stream_create
},
78 { &CLSID_AMAudioStream
, audio_stream_create
},
79 { &CLSID_AMAudioData
, AMAudioData_create
},
80 { &CLSID_MediaStreamFilter
, filter_create
}
83 static HRESULT WINAPI
AMCF_QueryInterface(IClassFactory
*iface
, REFIID riid
, void **ppobj
)
85 if (IsEqualGUID(riid
, &IID_IUnknown
)
86 || IsEqualGUID(riid
, &IID_IClassFactory
))
88 IClassFactory_AddRef(iface
);
94 WARN("(%p)->(%s,%p), not found\n", iface
, debugstr_guid(riid
), ppobj
);
98 static ULONG WINAPI
AMCF_AddRef(IClassFactory
*iface
)
100 IClassFactoryImpl
*This
= impl_from_IClassFactory(iface
);
101 return InterlockedIncrement(&This
->ref
);
104 static ULONG WINAPI
AMCF_Release(IClassFactory
*iface
)
106 IClassFactoryImpl
*This
= impl_from_IClassFactory(iface
);
107 ULONG ref
= InterlockedDecrement(&This
->ref
);
110 HeapFree(GetProcessHeap(), 0, This
);
116 static HRESULT WINAPI
AMCF_CreateInstance(IClassFactory
*iface
, IUnknown
*pOuter
,
117 REFIID riid
, void **ppobj
)
119 IClassFactoryImpl
*This
= impl_from_IClassFactory(iface
);
123 TRACE("(%p)->(%p,%s,%p)\n",This
,pOuter
,debugstr_guid(riid
),ppobj
);
126 hres
= This
->pfnCreateInstance(pOuter
, (LPVOID
*) &punk
);
127 if (SUCCEEDED(hres
)) {
128 hres
= IUnknown_QueryInterface(punk
, riid
, ppobj
);
129 IUnknown_Release(punk
);
134 static HRESULT WINAPI
AMCF_LockServer(IClassFactory
*iface
, BOOL dolock
)
136 IClassFactoryImpl
*This
= impl_from_IClassFactory(iface
);
137 FIXME("(%p)->(%d),stub!\n",This
,dolock
);
141 static const IClassFactoryVtbl DSCF_Vtbl
=
150 /*******************************************************************************
151 * DllGetClassObject [AMSTREAM.@]
152 * Retrieves class object from a DLL object
155 * Docs say returns STDAPI
158 * rclsid [I] CLSID for the class object
159 * riid [I] Reference to identifier of interface for class object
160 * ppv [O] Address of variable to receive interface pointer for riid
164 * Failure: CLASS_E_CLASSNOTAVAILABLE, E_OUTOFMEMORY, E_INVALIDARG,
167 HRESULT WINAPI
DllGetClassObject(REFCLSID rclsid
, REFIID riid
, LPVOID
*ppv
)
170 IClassFactoryImpl
*factory
;
172 TRACE("(%s,%s,%p)\n", debugstr_guid(rclsid
), debugstr_guid(riid
), ppv
);
174 if ( !IsEqualGUID( &IID_IClassFactory
, riid
)
175 && ! IsEqualGUID( &IID_IUnknown
, riid
) )
176 return E_NOINTERFACE
;
178 for (i
= 0; i
< ARRAY_SIZE(object_creation
); i
++)
180 if (IsEqualGUID(object_creation
[i
].clsid
, rclsid
))
184 if (i
== ARRAY_SIZE(object_creation
))
186 FIXME("%s: no class found.\n", debugstr_guid(rclsid
));
187 return CLASS_E_CLASSNOTAVAILABLE
;
190 factory
= HeapAlloc(GetProcessHeap(), 0, sizeof(*factory
));
191 if (factory
== NULL
) return E_OUTOFMEMORY
;
193 factory
->IClassFactory_iface
.lpVtbl
= &DSCF_Vtbl
;
196 factory
->pfnCreateInstance
= object_creation
[i
].pfnCreateInstance
;
198 *ppv
= &factory
->IClassFactory_iface
;
202 /***********************************************************************
203 * DllCanUnloadNow (AMSTREAM.@)
205 HRESULT WINAPI
DllCanUnloadNow(void)
210 /***********************************************************************
211 * DllRegisterServer (AMSTREAM.@)
213 HRESULT WINAPI
DllRegisterServer(void)
215 return __wine_register_resources( instance
);
218 /***********************************************************************
219 * DllUnregisterServer (AMSTREAM.@)
221 HRESULT WINAPI
DllUnregisterServer(void)
223 return __wine_unregister_resources( instance
);