mirror of
https://github.com/LibreELEC/LibreELEC.tv.git
synced 2025-07-24 11:16:51 +00:00
ffmpeg requires vdpau, or it silently fails
I got a failure when building xbmc, saying that "external ffmpeg does not support vdpau". Going through the vdpau build logs, it seems that vdpau was not installed prior to the ffmpeg build, and ffmpeg silently installed without it.
This commit is contained in:
parent
32483de7c6
commit
7b3d2e28b4
@ -39,3 +39,8 @@ if [ "$VAAPI" = yes ]; then
|
||||
PKG_BUILD_DEPENDS="$PKG_BUILD_DEPENDS libva"
|
||||
PKG_DEPENDS="$PKG_DEPENDS libva"
|
||||
fi
|
||||
|
||||
if [ "$VDPAU" = yes ]; then
|
||||
PKG_BUILD_DEPENDS="$PKG_BUILD_DEPENDS libvdpau"
|
||||
PKG_DEPENDS="$PKG_DEPENDS libvdpau"
|
||||
fi
|
||||
|
Loading…
x
Reference in New Issue
Block a user