Skip to content

Commit 4a608b4

Browse files
author
Markus Perl
committed
svtav1 2.3.0
1 parent e1d4e3e commit 4a608b4

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ ENV DEBIAN_FRONTEND noninteractive
44

55
RUN apt-get update \
66
&& apt-get -y --no-install-recommends install build-essential curl ca-certificates libva-dev \
7-
python3 python-is-python3 ninja-build meson \
7+
python3 python-is-python3 ninja-build meson git \
88
&& apt-get clean; rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* /usr/share/doc/* \
99
&& update-ca-certificates
1010

build-ffmpeg

+1-2
Original file line numberDiff line numberDiff line change
@@ -535,15 +535,14 @@ if command_exists "python3"; then
535535
fi
536536
fi
537537

538-
if build "svtav1" "2.1.0"; then
538+
if build "svtav1" "2.3.0"; then
539539
# Last known working commit which passed CI Tests from HEAD branch
540540
download "https://gitlab.com/AOMediaCodec/SVT-AV1/-/archive/v$CURRENT_PACKAGE_VERSION/SVT-AV1-v$CURRENT_PACKAGE_VERSION.tar.gz" "svtav1-$CURRENT_PACKAGE_VERSION.tar.gz"
541541
cd "${PACKAGES}"/svtav1-$CURRENT_PACKAGE_VERSION//Build/linux || exit
542542
execute cmake -DCMAKE_INSTALL_PREFIX="${WORKSPACE}" -DENABLE_SHARED=off -DBUILD_SHARED_LIBS=OFF ../.. -G"Unix Makefiles" -DCMAKE_BUILD_TYPE=Release
543543
execute make -j $MJOBS
544544
execute make install
545545
execute cp SvtAv1Enc.pc "${WORKSPACE}/lib/pkgconfig/"
546-
execute cp SvtAv1Dec.pc "${WORKSPACE}/lib/pkgconfig/"
547546
build_done "svtav1" $CURRENT_PACKAGE_VERSION
548547
fi
549548
CONFIGURE_OPTIONS+=("--enable-libsvtav1")

full-static.dockerfile

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ ENV NVIDIA_VISIBLE_DEVICES=all
55
ENV NVIDIA_DRIVER_CAPABILITIES=compute,utility,video
66

77
RUN apt-get update \
8-
&& apt-get -y --no-install-recommends install build-essential curl ca-certificates python3 python-is-python3 ninja-build meson \
8+
&& apt-get -y --no-install-recommends install build-essential curl ca-certificates python3 \
9+
python-is-python3 ninja-build meson git \
910
&& apt-get clean; rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* /usr/share/doc/* \
1011
&& update-ca-certificates
1112

0 commit comments

Comments
 (0)