Skip to content

Commit

Permalink
Upgraded libvpx to build with MSVC2022.
Browse files Browse the repository at this point in the history
  • Loading branch information
ggarra13 committed Dec 12, 2024
1 parent f45e0d8 commit d261fbf
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 10 deletions.
15 changes: 8 additions & 7 deletions .github/workflows/full_win64.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@

name: Win64

on: [push]
Expand All @@ -9,7 +10,7 @@ jobs:
# #
###################################
windows-full-build:
runs-on: windows-2019
runs-on: windows-2022

defaults:
run:
Expand All @@ -24,12 +25,12 @@ jobs:
- name: Setup environment
uses: ilammy/msvc-dev-cmd@v1

- name: Install Visual C++ Redistributable 2019
run: |
$vc_redist_url = "https://aka.ms/vs/16/release/vc_redist.x64.exe"
Invoke-WebRequest -Uri $vc_redist_url -OutFile vc_redist.x64.exe
Start-Process vc_redist.x64.exe -ArgumentList "/install", "/quiet", "/norestart" -Wait
shell: powershell
# - name: Install Visual C++ Redistributable 2019
# run: |
# $vc_redist_url = "https://aka.ms/vs/16/release/vc_redist.x64.exe"
# Invoke-WebRequest -Uri $vc_redist_url -OutFile vc_redist.x64.exe
# Start-Process vc_redist.x64.exe -ArgumentList "/install", "/quiet", "/norestart" -Wait
# shell: powershell

- name: Install Visual C++ Redistributable 2022
run: |
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ superbuild script. For a list of non-system libraries that mrv2 depends on
and their licenses, please refer to src/docs/Legal.

The only special requirement is installing a new copy of cmake than the
one that ships with MSVC19.
one that ships with MSVC2022.
If building the NSIS installer, you need to place the root of mrv2 in a path
that has less than 20 characters, like:

Expand Down
4 changes: 2 additions & 2 deletions bin/compile/compile_ffmpeg_deps_windows.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ fi
#
# Latest TAGS of all libraries
#
LIBVPX_TAG=v1.14.1
LIBVPX_TAG=6f0c446c7b88d384a1c09caf33ec132e7ee24aea
DAV1D_TAG=1.3.0
SVTAV1_TAG=v2.1.2
X264_TAG=stable
Expand Down Expand Up @@ -199,7 +199,7 @@ if [[ $TLRENDER_VPX == ON || $TLRENDER_VPX == 1 ]]; then
# latest MSVC on github Actions.
#
./configure --prefix=$INSTALL_DIR \
--target=x86_64-win64-vs16 \
--target=x86_64-win64-vs17 \
--enable-vp9-highbitdepth \
--disable-unit-tests \
--disable-examples \
Expand Down

0 comments on commit d261fbf

Please sign in to comment.