如何在 Ubuntu 17.10 上使用英特尔显卡芯片组启用硬件视频加速?

如何在 Ubuntu 17.10 上使用英特尔显卡芯片组启用硬件视频加速?

Ubuntu 17.10 的硬件视频加速似乎发生了一些变化。它不再能与英特尔图形芯片组一起正常工作,因为在 VLC 中播放的视频会卡顿。打开视频时,终端会显示以下内容:

$ vlc
VLC media player 2.2.6 Umbrella (revision 2.2.6-0-g1aae78981c)
[0000555baee879d8] core libvlc: VLC wird mit dem Standard-Interface ausgeführt. Benutzen Sie 'cvlc', um VLC ohne Interface zu verwenden.
Gtk-Message: GtkDialog mapped without a transient parent. This is discouraged.
[00007fcbd4008758] vdpau_avcodec generic error: unsupported codec 1211250229 or profile 1
Failed to open VDPAU backend libvdpau_i965.so: Kann die Shared-Object-Datei nicht öffnen: Datei oder Verzeichnis nicht gefunden
^CQObject::~QObject: Timers cannot be stopped from another thread

Gnome's Video(Totem)也是如此。

安装 Ubuntu 时Install third-party software已勾选有效的互联网连接。

安装libvdpau-va-gl1和重启也无济于事。我在 Xorg 上运行 Ubuntu,而不是 Wayland。

在 Ubuntu 17.04 中,安装i965-va-driver和 (可选)就足够了vainfo。现在,在 Ubuntu 17.10 中,像和这样vdpau的文件也会默认安装,尽管它们负责 Nvidia 的硬件加速。libvdpau1vdpau-driver-all

按照vainfo一切安装和检测正确:

$ vainfo
libva info: VA-API version 0.40.0
libva info: va_getDriverName() returns 0
libva info: Trying to open /usr/lib/x86_64-linux-gnu/dri/i965_drv_video.so
libva info: Found init function __vaDriverInit_0_40
libva info: va_openDriver() returns 0
vainfo: VA-API version: 0.40 (libva )
vainfo: Driver version: Intel i965 driver for Intel(R) Ivybridge Mobile - 1.8.3
vainfo: Supported profile and entrypoints
      VAProfileMPEG2Simple            : VAEntrypointVLD
      VAProfileMPEG2Simple            : VAEntrypointEncSlice
      VAProfileMPEG2Main              : VAEntrypointVLD
      VAProfileMPEG2Main              : VAEntrypointEncSlice
      VAProfileH264ConstrainedBaseline: VAEntrypointVLD
      VAProfileH264ConstrainedBaseline: VAEntrypointEncSlice
      VAProfileH264Main               : VAEntrypointVLD
      VAProfileH264Main               : VAEntrypointEncSlice
      VAProfileH264High               : VAEntrypointVLD
      VAProfileH264High               : VAEntrypointEncSlice
      VAProfileH264StereoHigh         : VAEntrypointVLD
      VAProfileVC1Simple              : VAEntrypointVLD
      VAProfileVC1Main                : VAEntrypointVLD
      VAProfileVC1Advanced            : VAEntrypointVLD
      VAProfileNone                   : VAEntrypointVideoProc
      VAProfileJPEGBaseline           : VAEntrypointVLD

硬件也很好:

$ lspci -nnk | grep -i VGA -A2
00:02.0 VGA compatible controller [0300]: Intel Corporation 3rd Gen Core processor Graphics Controller [8086:0166] (rev 09)
    Subsystem: Toshiba America Info Systems 3rd Gen Core processor Graphics Controller [1179:fb31]
    Kernel driver in use: i915

有什么想法可以解决这个问题吗?

答案1

这个问题与硬件视频加速无关,而是由系统监视器Gnome 扩展。停用它可使一切恢复顺利。

相关内容