Issue #1769 - Part 1: Add vendored libjxl and highway sources.

Used old-configure to add the build option for enabling JPEG-XL support.
Highway version: 1.0.2
libjxl version: 0.7.0
This commit is contained in:
Job Bautista 2022-06-19 15:34:18 +08:00 committed by roytam1
commit 7983f5d8ba
953 changed files with 231544 additions and 0 deletions

View file

@ -2056,6 +2056,7 @@ MOZ_FEEDS=1
MOZ_AUTH_EXTENSION=1
MOZ_RAW=
MOZ_AV1=
MOZ_JXL=
MOZ_VORBIS=
MOZ_TREMOR=
MOZ_SAMPLE_TYPE_FLOAT32=
@ -2823,6 +2824,20 @@ fi
AC_SUBST(MOZ_AV1)
dnl ========================================================
dnl = Enable JPEG-XL Codec
dnl ========================================================
MOZ_ARG_ENABLE_BOOL(av1,
[ --enable-jxl Enable libjxl and highway for jxl image support],
MOZ_JXL=1,
MOZ_JXL=)
if test -n "$MOZ_JXL"; then
AC_DEFINE(MOZ_JXL)
fi
AC_SUBST(MOZ_JXL)
dnl ========================================================
dnl = Apple platform decoder support
dnl ========================================================