WPF MediaElement 视频播放撕裂
我正在尝试使用 WPF 中的 MediaElement 控件来播放视频。 它在 Vista 中运行得很好,但是当我在 XP 机器上运行它时,我的显示屏出现撕裂现象。 看起来好像没有使用垂直同步,只是在绘制过程中更新屏幕。
有人知道如何解决这个问题吗?
I'm trying to use the MediaElement control in WPF to play back video. It works great in Vista, but when I run it on an XP machine I get tearing in the display. It looks as if it's not using the vertical synch, and just updating the screen mid-draw.
Anyone know how to fix this problem?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
与 Vista 相比,这更多地与 XP 下 WPF 渲染到屏幕的方式有关。 在 Vista 下,应用程序渲染到屏幕外缓冲区,然后该缓冲区与已更改的其他窗口合成,并由名为 DWM.exe 的进程以适当的时间间隔呈现在屏幕上。 这可以(并且可能确实)将 WPF 的窗口更新呈现到与刷新间隔同步的视频缓冲区。
在 XP 上,WPF 使用 DirextX 直接渲染到屏幕,并在需要时更新视频缓冲区。 可能有某种方法可以让它与刷新间隔同步,但我没有研究它,因为我不再使用XP了。
This has more to do with the way WPF renders to the screen under XP compared to Vista. Under Vista, apps render to an offscreen buffer which is then composited with other windows that have changed and is presented to the screen at the appropriate intervals by a process called DWM.exe. That can (and presumably does) present WPF's window updates to the video buffer synchronized with the refresh interval.
On XP WPF uses DirextX to render straight to the screen and updates the video buffer whenever it wants to. There might be some way to get it to synchronise with the refresh interval, but I haven't looked into it because I don't use XP any more.