diff --git a/ci/install-dav1d.sh b/ci/install-dav1d.sh index 32df26d4c..6233409a9 100644 --- a/ci/install-dav1d.sh +++ b/ci/install-dav1d.sh @@ -1,6 +1,6 @@ set -e -RELEASE=1.4.1 +RELEASE=1.4.2 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 d1110f6aa..9ca7739bf 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.1 --depth 1 https://code.videolan.org/videolan/dav1d.git C:\dav1d +git clone -b 1.4.2 --depth 1 https://code.videolan.org/videolan/dav1d.git C:\dav1d if (!$?) { Write-Host "Failed to clone dav1d" Exit 1