diff options
author | Alexander Kanavin <alex.kanavin@gmail.com> | 2020-06-26 09:18:18 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-06-28 08:35:59 +0100 |
commit | 51b40610485d6eb40238a48a8f0d07a17ca28d0a (patch) | |
tree | 89d3d51455d536b4420ad1cdadce9ae5460d3b42 | |
parent | f235636647c8290b644a12d1199dd00c6bb5f582 (diff) | |
download | poky-51b40610485d6eb40238a48a8f0d07a17ca28d0a.tar.gz |
ffmpeg: disable altivec on ppc by default
Since 4.3 ffmpeg uses vsx-specific instructions, which aren't
available on older ppc machines (including qemuppc):
https://github.com/FFmpeg/FFmpeg/commit/3a557c5d88b7b15b5954ba2743febb055549b536
This disables using the instructions with an option to re-enable them
for vsx-capable targets.
(From OE-Core rev: 2e9d7d31622c5bc45511f82df40d592ef165d7d9)
Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-multimedia/ffmpeg/ffmpeg_4.3.bb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/recipes-multimedia/ffmpeg/ffmpeg_4.3.bb b/meta/recipes-multimedia/ffmpeg/ffmpeg_4.3.bb index 2b0c38d782..b4cf278cb2 100644 --- a/meta/recipes-multimedia/ffmpeg/ffmpeg_4.3.bb +++ b/meta/recipes-multimedia/ffmpeg/ffmpeg_4.3.bb | |||
@@ -57,6 +57,7 @@ PACKAGECONFIG[avresample] = "--enable-avresample,--disable-avresample" | |||
57 | 57 | ||
58 | # features to support | 58 | # features to support |
59 | PACKAGECONFIG[alsa] = "--enable-alsa,--disable-alsa,alsa-lib" | 59 | PACKAGECONFIG[alsa] = "--enable-alsa,--disable-alsa,alsa-lib" |
60 | PACKAGECONFIG[altivec] = "--enable-altivec,--disable-altivec," | ||
60 | PACKAGECONFIG[bzlib] = "--enable-bzlib,--disable-bzlib,bzip2" | 61 | PACKAGECONFIG[bzlib] = "--enable-bzlib,--disable-bzlib,bzip2" |
61 | PACKAGECONFIG[fdk-aac] = "--enable-libfdk-aac --enable-nonfree,--disable-libfdk-aac,fdk-aac" | 62 | PACKAGECONFIG[fdk-aac] = "--enable-libfdk-aac --enable-nonfree,--disable-libfdk-aac,fdk-aac" |
62 | PACKAGECONFIG[gpl] = "--enable-gpl,--disable-gpl" | 63 | PACKAGECONFIG[gpl] = "--enable-gpl,--disable-gpl" |