diff options
author | ameerj <52414509+ameerj@users.noreply.github.com> | 2021-02-09 05:11:59 +0100 |
---|---|---|
committer | ameerj <52414509+ameerj@users.noreply.github.com> | 2021-02-09 05:11:59 +0100 |
commit | d6ebb5c1719c68002f8756de7e00c152c55948d8 (patch) | |
tree | c4cc15a15a62279799f9e4c1fc43b50fbf993359 | |
parent | Merge pull request #5880 from lat9nq/ffmpeg-external (diff) | |
download | yuzu-d6ebb5c1719c68002f8756de7e00c152c55948d8.tar yuzu-d6ebb5c1719c68002f8756de7e00c152c55948d8.tar.gz yuzu-d6ebb5c1719c68002f8756de7e00c152c55948d8.tar.bz2 yuzu-d6ebb5c1719c68002f8756de7e00c152c55948d8.tar.lz yuzu-d6ebb5c1719c68002f8756de7e00c152c55948d8.tar.xz yuzu-d6ebb5c1719c68002f8756de7e00c152c55948d8.tar.zst yuzu-d6ebb5c1719c68002f8756de7e00c152c55948d8.zip |
-rw-r--r-- | CMakeLists.txt | 2 | ||||
-rw-r--r-- | CMakeModules/CopyYuzuFFmpegDeps.cmake | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index ac7c3ce90..c45123139 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -504,7 +504,7 @@ if (YUZU_USE_BUNDLED_FFMPEG) endif() else() # WIN32 # Use yuzu FFmpeg binaries - set(FFmpeg_EXT_NAME "ffmpeg-4.3.1") + set(FFmpeg_EXT_NAME "ffmpeg-4.2.1") set(FFmpeg_PATH "${CMAKE_BINARY_DIR}/externals/${FFmpeg_EXT_NAME}") download_bundled_external("ffmpeg/" ${FFmpeg_EXT_NAME} "") set(FFmpeg_FOUND YES) diff --git a/CMakeModules/CopyYuzuFFmpegDeps.cmake b/CMakeModules/CopyYuzuFFmpegDeps.cmake index cca1eeeab..b7162cf17 100644 --- a/CMakeModules/CopyYuzuFFmpegDeps.cmake +++ b/CMakeModules/CopyYuzuFFmpegDeps.cmake @@ -1,7 +1,7 @@ function(copy_yuzu_FFmpeg_deps target_dir) include(WindowsCopyFiles) set(DLL_DEST "${CMAKE_BINARY_DIR}/bin/$<CONFIG>/") - windows_copy_files(${target_dir} ${FFMPEG_DLL_DIR} ${DLL_DEST} + windows_copy_files(${target_dir} ${FFmpeg_DLL_DIR} ${DLL_DEST} avcodec-58.dll avutil-56.dll swresample-3.dll |