Briefly, this is the VDPAU driver with VA-API/OpenGL backend.
There are applications exists that can use VDPAU. Amongst them Adobe Flash Player and Mplayer. They both can use VDPAU, but since there is no VDPAU available on Intel chips, they fall back to different drawing techniques. And while Mplayer can use XVideo extension to offload scaling to GPU, Flash Player can not and does all scaling in software. If there was VDPAU available, CPU usage could be significantly lower.
VDPAU is not vendor-locked technology. Even official documentation mentions
possibility of other drivers. They should be named as libvdpau_drivername.so.1 and
placed where linker could find them. /usr/lib usually works fine.
Which driver to use determined by X server default settings or VDPAU_DRIVER
environment variable.
Here is one. Named libvdpau_va_gl.so.1, it uses OpenGL under the hood to accelerate drawing and scaling and VA-API (if available) to accelerate video decoding. For now VA-API available on some Intel chips, and on some AMD video adapters with help of xvba-va-driver. OpenGL available, you know, on systems with OpenGL available.
sudo apt-get install libvdpau-dev libva-dev libglib2.0-dev libswscale-dev libgl1-mesa-dev libglu1-mesa-devmkdir build; cd buildcmake -DCMAKE_BUILD_TYPE=Release ..sudo make install- Add
VDPAU_DRIVER=va_glto your environment
Besides VDPAU_DRIVER variable which selects which driver to use there are other
variables that control runtime behavior of va_gl driver.
VDPAU_LOG enables or disables tracing. 0 disables, 1 enables.
VDPAU_QUIRKS contains comma-separated list of enabled quirks. Here is the list:
XCloseDisplayDisables calling of XCloseDisplay which may segfault on systems with some AMD cardsShowWatermarkEnables displaying string "va_gl" in bottom-right corner of windowLogThreadIdAdds thread id to trace outputLogCallDurationAdds call duration to trace outputAvoidVAMakes libvdpau-va-gl NOT use VA-API
Parameters of VDPAU_QUIRKS are actually case-insensetive.
libvdpau-va-gl is distributed under the terms of the LGPLv3. See files COPYING, COPYING.GPLv3, and COPYING.LGPLv3 for details.
Author can be reached at email
ibragimovrinat-at-mail.ru or at github: https://github.com/i-rinat/