断开引脚,然后重新连接
我使用 DirectShow.net 和 SlimDX 将视频纹理放在四边形上。我遇到了设备丢失的问题。我无法重置我的设备。经过几个小时的谷歌搜索,我找到了一个论坛主题,其中的解决方案是断开 vmr9 引脚,重置设备并重新连接引脚。
我知道如何断开连接:
IPin pin;
vmr9.FindPin("VMR Input0", out pin);
pin.Disconnect();
这样,重置就可以了,但是我怎样才能再次连接?
I'm using DirectShow.net and SlimDX to put a video texture on a quad. I've got a problem on device lost. I'm not able to reset my device. After hours of googling, I've find a forum topic where the solution was to disconnect the vmr9 pin, reset the device and reconnect the pin.
I know how to disconnect :
IPin pin;
vmr9.FindPin("VMR Input0", out pin);
pin.Disconnect();
and with this, reset is OK, but how can I connect again ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好的,找到了这个:
重新连接:
似乎有效。
OK, found this :
To reconnect :
Seems to work.