update libvpx & libwebp to latest releases (#629)

* update libvpx & libwebp to latest releases

libvpx: 1.13.1
libwebp: 1.3.2

* Dockerfile: update libwebp libraries

libwebpmux is required for libwebp_anim_encoder. libsharpyuv is required
by libwebp since 1.3.0.
This commit is contained in:
James Zern
2023-12-24 23:02:32 -08:00
committed by GitHub
parent e6988f4a1a
commit e0d4c62a22
2 changed files with 6 additions and 4 deletions

View File

@@ -36,7 +36,7 @@ RUN bash -x /src/build.sh
# Build libvpx
FROM emsdk-base AS libvpx-builder
ENV LIBVPX_BRANCH=v1.9.0
ENV LIBVPX_BRANCH=v1.13.1
ADD https://github.com/ffmpegwasm/libvpx.git#$LIBVPX_BRANCH /src
COPY build/libvpx.sh /src/build.sh
RUN bash -x /src/build.sh
@@ -88,7 +88,7 @@ RUN bash -x /src/build.sh
# Build libwebp
FROM emsdk-base AS libwebp-builder
COPY --from=zlib-builder $INSTALL_DIR $INSTALL_DIR
ENV LIBWEBP_BRANCH=v1.1.0
ENV LIBWEBP_BRANCH=v1.3.2
ADD https://github.com/ffmpegwasm/libwebp.git#$LIBWEBP_BRANCH /src
COPY build/libwebp.sh /src/build.sh
RUN bash -x /src/build.sh
@@ -184,7 +184,9 @@ ENV FFMPEG_LIBS \
-lvorbisfile \
-lopus \
-lz \
-lwebpmux \
-lwebp \
-lsharpyuv \
-lfreetype \
-lfribidi \
-lharfbuzz \