mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-01 10:39:45 -06:00
windows: move ffmpeg bins to submodule
udpate ffmpeg to b1cbeabf5e4b3234e895a58bafa371bfb792baf0 enable ffmpeg on arm64
This commit is contained in:
@ -485,8 +485,12 @@ if(ENABLE_EGL)
|
||||
endif()
|
||||
|
||||
if(ENCODE_FRAMEDUMPS)
|
||||
if(WIN32 AND _M_X86_64)
|
||||
set(FFMPEG_DIR Externals/ffmpeg)
|
||||
if(WIN32)
|
||||
if(_M_X86_64)
|
||||
set(FFMPEG_DIR Externals/FFmpeg-bin/x64)
|
||||
elseif(_M_ARM_64)
|
||||
set(FFMPEG_DIR Externals/FFmpeg-bin/ARM64)
|
||||
endif()
|
||||
endif()
|
||||
find_package(FFmpeg COMPONENTS avcodec avformat avutil swresample swscale)
|
||||
if(FFmpeg_FOUND)
|
||||
|
Reference in New Issue
Block a user