Bug 1481513 - disable ffvpx on aarch64 windows; r=gps

There's no support for it in our local tree.
This commit is contained in:
Nathan Froyd 2018-08-28 13:44:54 -04:00
Родитель 0c5d77a181
Коммит b40f3ab975
1 изменённых файлов: 12 добавлений и 5 удалений

Просмотреть файл

@ -2933,11 +2933,18 @@ case "$CPU_ARCH" in
fi fi
;; ;;
arm*|aarch64) arm*|aarch64)
MOZ_FFVPX=1 case "$OS_TARGET" in
MOZ_FFVPX_FLACONLY=1 WINNT)
dnl Use same conditional as MOZ_LIBVPX to enable FFmpeg's ffvpx assembly decoder. dnl don't set up anything special
dnl aarch 64 FLAC decoder for now will be C only. ;;
FFVPX_ASFLAGS=$VPX_ASFLAGS *)
MOZ_FFVPX=1
MOZ_FFVPX_FLACONLY=1
dnl Use same conditional as MOZ_LIBVPX to enable FFmpeg's ffvpx assembly decoder.
dnl aarch 64 FLAC decoder for now will be C only.
FFVPX_ASFLAGS=$VPX_ASFLAGS
;;
esac
;; ;;
esac esac