WPF MediaElement 视频播放撕裂

发布于 2024-07-11 21:23:21 字数 146 浏览 7 评论 0原文

我正在尝试使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

雾里花 2024-07-18 21:23:21

与 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文