ffmpegx: does not build with libx264 on aarch64

This commit is contained in:
jc 2016-08-24 09:11:35 +02:00
parent d1369bb366
commit 567a71d5dd

View File

@ -47,6 +47,11 @@ pre_configure_target() {
FFMPEG_RPI_HADE="--enable-mmal --enable-omx-rpi" FFMPEG_RPI_HADE="--enable-mmal --enable-omx-rpi"
fi fi
# ffmpeg does not build with libx264 on aarch64
if [ "$TARGET_ARCH" != "aarch64" ]; then
FFMPEG_X264="--enable-libx264"
fi
if [ "$TARGET_ARCH" == "arm" ]; then if [ "$TARGET_ARCH" == "arm" ]; then
FFMPEG_ARM_AO="--enable-hardcoded-tables" FFMPEG_ARM_AO="--enable-hardcoded-tables"
fi fi
@ -66,7 +71,7 @@ configure_target() {
\ \
`#External library support` \ `#External library support` \
--enable-libmp3lame \ --enable-libmp3lame \
--enable-libx264 \ $FFMPEG_X264 \
--enable-openssl \ --enable-openssl \
\ \
`#Toolchain options` \ `#Toolchain options` \