From 20f9ba8728bd52ab33bb2697b346e30cc31ccf87 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Fri, 29 Nov 2024 09:49:20 +0200 Subject: [PATCH] ci: Update to dav1d 1.5.0 Part-of: --- ci/install-dav1d.sh | 2 +- ci/windows-docker/install_dav1d.ps1 | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/install-dav1d.sh b/ci/install-dav1d.sh index 33b80dc89..8dfe495d4 100644 --- a/ci/install-dav1d.sh +++ b/ci/install-dav1d.sh @@ -1,6 +1,6 @@ set -e -RELEASE=1.4.3 +RELEASE=1.5.0 git clone https://code.videolan.org/videolan/dav1d.git --branch $RELEASE cd dav1d diff --git a/ci/windows-docker/install_dav1d.ps1 b/ci/windows-docker/install_dav1d.ps1 index 72abb63c9..c849c6eff 100644 --- a/ci/windows-docker/install_dav1d.ps1 +++ b/ci/windows-docker/install_dav1d.ps1 @@ -1,7 +1,7 @@ [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; # Download gstreamer and all its subprojects -git clone -b 1.4.3 --depth 1 https://code.videolan.org/videolan/dav1d.git C:\dav1d +git clone -b 1.5.0 --depth 1 https://code.videolan.org/videolan/dav1d.git C:\dav1d if (!$?) { Write-Host "Failed to clone dav1d" Exit 1