-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #15834 from lazka/blender-ffmpg4.4
blender: build with ffmpeg4.4
- Loading branch information
Showing
2 changed files
with
38 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
--- blender-2.93.14/build_files/cmake/platform/platform_win32_mingw64.cmake.orig 2023-02-22 19:42:08.991589800 +0100 | ||
+++ blender-2.93.14/build_files/cmake/platform/platform_win32_mingw64.cmake 2023-02-22 19:55:59.658475000 +0100 | ||
@@ -205,13 +205,13 @@ | ||
mark_as_advanced(FFMPEG) | ||
|
||
# lame, but until we have proper find module for ffmpeg | ||
- if(EXISTS "${FFMPEG}/include/ffmpeg/") | ||
- list(APPEND FFMPEG_INCLUDE_DIRS "${FFMPEG}/include/ffmpeg") | ||
+ if(EXISTS "${FFMPEG}/include/ffmpeg4.4/") | ||
+ list(APPEND FFMPEG_INCLUDE_DIRS "${FFMPEG}/include/ffmpeg4.4") | ||
endif() | ||
# end lameness | ||
|
||
mark_as_advanced(FFMPEG_LIBRARIES) | ||
- set(FFMPEG_LIBPATH ${FFMPEG}/lib) | ||
+ set(FFMPEG_LIBPATH ${FFMPEG}/lib/ffmpeg4.4) | ||
endif() | ||
|
||
if(WITH_FFTW3) | ||
@@ -414,6 +414,10 @@ | ||
endif() | ||
endif() | ||
|
||
+if(WITH_CPU_SIMD AND SUPPORT_NEON_BUILD) | ||
+ find_package_wrapper(sse2neon) | ||
+endif() | ||
+ | ||
if(WITH_LLVM) | ||
find_package_wrapper(LLVM) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters