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:
Georgi Georgiev 2012-12-05 07:56:57 +09:00
parent 32483de7c6
commit 7b3d2e28b4

View File

@ -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