diff options
author | Michał Masłowski <mtjm@mtjm.eu> | 2012-11-08 20:53:03 +0100 |
---|---|---|
committer | Michał Masłowski <mtjm@mtjm.eu> | 2012-11-08 20:53:03 +0100 |
commit | d52b041cdbe9e337426078beefbb0cada7ccf6e4 (patch) | |
tree | 73c84955d43a7a56dd2ac4c4dd9d359bd97c687f /extra | |
parent | ca63f47c4736ce7a6f6b544c50cf29d2ffe563c1 (diff) |
ffmpeg: Disable unsupported MIPS ISAs.
Diffstat (limited to 'extra')
-rw-r--r-- | extra/ffmpeg/PKGBUILD | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/extra/ffmpeg/PKGBUILD b/extra/ffmpeg/PKGBUILD index b3de5d0fe..5608e5531 100644 --- a/extra/ffmpeg/PKGBUILD +++ b/extra/ffmpeg/PKGBUILD @@ -26,7 +26,8 @@ build() { if [ "$CARCH" = "mips64el" ] ; then # Make video decoding faster and turn all pixels green. # patch -Np1 -i $srcdir/ffmpeg-loongson.patch - extraconf="--disable-runtime-cpudetect --disable-vdpau --disable-vaapi" + # Disable runtime CPU detection, video acceleration APIs our hardware doesn't support and ISAs our CPUs don't support. + extraconf="--disable-runtime-cpudetect --disable-vdpau --disable-vaapi --disable-mips32r2 --disable-mipsdspr1 --disable-mipsdspr2" else extraconf="" fi |