Bump aom to v3.14.1 (#15883)

* Bump aom to v3.14.1

* Remove oboe dependency in vcpkg.json
This commit is contained in:
Kino
2026-08-25 19:53:56 +08:00
committed by GitHub
parent 0d917c6fa1
commit cec4085238
9 changed files with 27 additions and 20 deletions

View File

@@ -0,0 +1,13 @@
diff --git a/build/cmake/aom_configure.cmake b/build/cmake/aom_configure.cmake
index aaef2c310..5500ad4a3 100644
--- a/build/cmake/aom_configure.cmake
+++ b/build/cmake/aom_configure.cmake
@@ -309,6 +309,8 @@ if(MSVC)
# Disable MSVC warnings that suggest making code non-portable.
add_compiler_flag_if_supported("/wd4996")
+ # Disable MSVC warnings for potentially uninitialized local pointer variable.
+ add_compiler_flag_if_supported("/wd4703")
if(ENABLE_WERROR)
add_compiler_flag_if_supported("/WX")
endif()