Scripts for building va-api enabled ffmpeg (with intel)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

39 lines
633 B

#!/bin/bash
export PKG_CONFIG_PATH=/app/ffmpeg/install/lib/pkgconfig:/app/ffmpeg/install/lib64/pkgconfig/
curDir="$PWD"
pkg=MediaSDK
if ! [[ -d "$pkg" ]]
then
git clone https://github.com/Intel-Media-SDK/MediaSDK.git
fi
#Unsure if still needed:
sed -i "1s/^/#include <stdint.h>\n/" ./MediaSDK/api/mfx_dispatch/linux/mfxparser.cpp
cd "$pkg"
mkdir -p build
cd build
make clean
cmake \
-DCMAKE_INSTALL_PREFIX="/app/ffmpeg/install/" \
-DENABLE_X11_DRI3=ON \
-DENABLE_WAYLAND=ON \
../
make -j8
if make
then
make install
cd "$curDir"
rm -rf "$pkg"
else
cd "$curDir"
echo "BUILD FAILED"
fi
echo "Done"