From d9ebcc5889b26af383f24ea7a8a5552af2aaa09c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Mon, 20 Feb 2023 09:57:19 +0200 Subject: [PATCH] ci: windows: Update to dav1d 1.1.0 Part-of: --- ci/windows-docker/install_dav1d.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/windows-docker/install_dav1d.ps1 b/ci/windows-docker/install_dav1d.ps1 index ebf47b641..89eac341b 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.0.0 --depth 1 https://code.videolan.org/videolan/dav1d.git C:\dav1d +git clone -b 1.1.0 --depth 1 https://code.videolan.org/videolan/dav1d.git C:\dav1d if (!$?) { Write-Host "Failed to clone dav1d" Exit 1