“标准用户”帐户上的FFDShow视频解码器上的System.InvalidCastException

时间:2016-07-18 16:27:45

标签: windows directshow directshow.net ffdshow

例外:

Unable to cast COM object of type 'System.__ComObject' to interface type 'DirectShowLib.IBaseFilter'. This operation failed because the QueryInterface call on the COM component for the interface with IID '{56A86895-0AD4-11CE-B03A-0020AF0BA770}' failed due to the following error: No such interface supported (Exception from HRESULT: 0x80004002 (E_NOINTERFACE)).

我的图表
自定义文件源(异步。) - > GDCL Mpeg-4解复用器 - > ffdshow视频解码器 - >视频渲染器

我的图表在管理员帐户上正确构建和播放。但是,在“标准用户”帐户中,它会在投射FFDShow过滤器时抛出异常。

代码:

IBaseFilter pffdshowVideoDecoder = (IBaseFilter)Activator.CreateInstance(Type.GetTypeFromCLSID(CLSID_ffdshowVideoDecoder));

仅当我尝试将其转换为标准用户帐户时,创建实例不会引发异常。

其他信息:

  • 我的程序设置为STAThread
  • 对象的创建和转换在我的主线程

0 个答案:

没有答案