Last active
May 10, 2019 15:40
-
-
Save jackersson/7a0e2dc5693e43d929b0de558472ce6b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# *************** Installation ********************** | |
git clone https://github.com/intel/libva.git | |
./autogen.sh | |
make -j8 | |
sudo make install | |
git clone https://github.com/intel/intel-vaapi-driver.git | |
./autogen.sh | |
make -j8 | |
sudo make install | |
git clone https://github.com/intel/libva-utils.git | |
./autogen.sh | |
make -j8 | |
sudo make install | |
# *************** Exports ****************** | |
export LIBVA_DRIVERS_PATH=~/intel-vaapi-driver/src/.libs | |
export LIBVA_DRIVER_NAME=i365 | |
# **************** Check **************** | |
vainfo | |
> | |
libva info: VA-API version 1.5.0 | |
libva info: va_getDriverName() returns 0 | |
libva info: User requested driver 'i365' | |
libva info: Trying to open ~/intel-vaapi-driver/src/.libs/i365_drv_video.so | |
libva info: va_openDriver() returns -1 | |
vaInitialize failed with error code -1 (unknown libva error),exit | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment