We don't even use ffmpeg's software image scalar, but the directory and some of its contents need to be present to build ffmpeg. The version is tied to mplayer rather than to ffmpeg so grab an arbitrary version that allows ffmpeg to compile.

This commit is contained in:
Steve Checkoway
2008-05-27 05:51:34 +00:00
parent e067a0a836
commit 1fedb46955
+4 -1
View File
@@ -102,10 +102,13 @@ done
revision=8448
repository=svn://svn.mplayerhq.hu/ffmpeg/trunk/
ffmpeg=ffmpeg-r$revision
swscale_rev=26201
swscale_repo=svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
if [ ! -d $ffmpeg ]; then
message 'Downloading ffmpeg'
if which svn &>/dev/null; then
call svn co -r $revision $repository $ffmpeg
call svn co --ignore-externals -r $revision $repository $ffmpeg
call svn co -r $swscale_rev $swscale_repo $ffmpeg/libswscale
else
failure 'Install subversion.'
fi