mirror of
https://github.com/archr-linux/Arch-R.git
synced 2026-03-31 14:41:55 -07: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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user