The libvdpau-va-gl package contains the VDPAU driver for hardware that supports VAAPI.
This package is known to build and work properly using an LFS-7.6 systemd platform.
Download (HTTP): https://github.com/i-rinat/libvdpau-va-gl/archive/v0.3.4.tar.gz
Download MD5 sum: 09ceb2f75eafccc9b002d35ede0de6a5
Download size: 100 KB
Estimated disk space required: 4.0 MB
Estimated build time: less than 0.1 SBU
The tarball name for libvdpau-va-gl does not include the package name, although it does expand to libvdpau-va-gl-0.3.4. The file should be renamed after downloading:
mv v0.3.4.tar.gz libvdpau-va-gl-0.3.4.tar.gz
CMake-3.0.1, FFmpeg-2.3.3, GLU-9.0.0, libva-1.3.1, and libvdpau-0.8
User Notes: http://wiki.linuxfromscratch.org/blfs/wiki/libvdpau-va-gl
Install libvdpau-va-gl by running the following commands:
cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release && make
To test the results, issue: make check from an X terminal.
Now, as the root
user:
make install
-DCMAKE_BUILD_TYPE=Release
:
This switch is used to apply higher level of the compiler
optimizations.
To use this driver with VDPAU apps, you need to set the
VDPAU_DRIVER
environment variable to
va_gl
.
You can permanently set the environment variable by expanding the
system wide configuration. Run the following command as the
root
user:
cat > /etc/profile.d/libvdpau-va-gl.sh << "EOF"
# Begin /etc/profile.d/libvdpau-va-gl.sh
export VDPAU_DRIVER=va_gl
# End /etc/profile.d/libvdpau-va-gl.sh
EOF
Last updated on 2014-08-24 06:24:04 -0700