mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2024-11-01 07:55:07 +01:00
b89f5278ac
* dumping/ffmpeg_backend: Add FPS filter So that the recorded video can be at 60FPS (which is supported by most encoders) while still maintaining correct speed. * dumping/ffmpeg_backend: Add HW context support Required for some HW acceled encoders. Not tested as my devices don't seem to require this. * CMake: Copy avfilter dll for MSVC * CMakeLists: Require FFmpeg 4.0 * ffmpeg: Fix dumper compile error on MSVC. * ffmpeg: Address review comments. --------- Co-authored-by: zhupengfei <zhupf321@gmail.com>
14 lines
390 B
CMake
14 lines
390 B
CMake
function(copy_citra_FFmpeg_deps target_dir)
|
|
include(WindowsCopyFiles)
|
|
set(DLL_DEST "${CMAKE_BINARY_DIR}/bin/$<CONFIG>/")
|
|
windows_copy_files(${target_dir} ${FFMPEG_DIR}/bin ${DLL_DEST}
|
|
avcodec*.dll
|
|
avfilter*.dll
|
|
avformat*.dll
|
|
avutil*.dll
|
|
postproc*.dll
|
|
swresample*.dll
|
|
swscale*.dll
|
|
)
|
|
endfunction(copy_citra_FFmpeg_deps)
|