如何使用 DSPack 在 delphi 7 中加载未由 .ax 文件注册的 DirectShow 过滤器?我在 C++ 中找到了一个示例,我不知道如何将其翻译成 Delphi。
问问题
481 次
1 回答
3
给你:
function LoadFilter(const Fhandle: HMODULE; clis: TGUID): IBaseFilter; overload;
Var
DllGetClassObject: Function(Const clsid, IID: TGUID; Var Obj)
: HRESULT; STDCALL;
ClassF: IClassFactory;
Begin
result := nil;
try
If Fhandle = 0 Then
exit;
// NOTE: Fhandle is typically obtained as a result of LoadLibrary API
// call loading DLL hosting the DirectShow filter
DllGetClassObject := GetProcAddress(Fhandle, 'DllGetClassObject');
DllGetClassObject(clis, IClassFactory, ClassF);
if assigned(ClassF) then
begin
if ClassF.CreateInstance(nil, IID_IBaseFilter, result) = ERROR_SUCCESS
then
exit;
end;
except
exit;
end;
end;
于 2017-05-22T08:04:29.587 回答