mirror of
https://github.com/Genymobile/scrcpy
synced 2024-11-11 01:10:32 +00:00
b3ff1f6b3b
Use FFmpeg win64 binaries from gyan.dev (referenced from ffmpeg.org): - https://www.gyan.dev/ffmpeg/builds/ - https://ffmpeg.org/download.html#build-windows Keep the old FFmpeg prebuilt binaries (4.3.1) for win32 builds. Fixes #1753 <https://github.com/Genymobile/scrcpy/issues/1753> Refs #1838 <https://github.com/Genymobile/scrcpy/pull/1838> Refs #2583 <https://github.com/Genymobile/scrcpy/pull/2583> PR #2952 <https://github.com/Genymobile/scrcpy/pull/2952> Co-authored-by: Yu-Chen Lin <npes87184@gmail.com> Co-authored-by: nkh0472 <nkh0472@hotmail.com> Signed-off-by: Romain Vimont <rom@rom1v.com>
34 lines
1.4 KiB
Makefile
34 lines
1.4 KiB
Makefile
.PHONY: prepare-win32 prepare-win64 \
|
|
prepare-ffmpeg-win32 \
|
|
prepare-ffmpeg-win64 \
|
|
prepare-sdl2 \
|
|
prepare-adb
|
|
|
|
prepare-win32: prepare-sdl2 prepare-ffmpeg-win32 prepare-adb
|
|
prepare-win64: prepare-sdl2 prepare-ffmpeg-win64 prepare-adb
|
|
|
|
# Use old FFmpeg version for win32, there are no new prebuilts
|
|
prepare-ffmpeg-win32:
|
|
@./prepare-dep https://github.com/Genymobile/scrcpy/releases/download/v1.16/ffmpeg-4.3.1-win32-shared.zip \
|
|
357af9901a456f4dcbacd107e83a934d344c9cb07ddad8aaf80612eeab7d26d2 \
|
|
ffmpeg-4.3.1-win32-shared
|
|
@./prepare-dep https://github.com/Genymobile/scrcpy/releases/download/v1.16/ffmpeg-4.3.1-win32-dev.zip \
|
|
230efb08e9bcf225bd474da29676c70e591fc94d8790a740ca801408fddcb78b \
|
|
ffmpeg-4.3.1-win32-dev
|
|
ln -sf ../ffmpeg-4.3.1-win32-dev/include ffmpeg-4.3.1-win32-shared/
|
|
|
|
prepare-ffmpeg-win64:
|
|
@./prepare-dep https://github.com/GyanD/codexffmpeg/releases/download/5.0/ffmpeg-5.0-full_build-shared.7z \
|
|
e5900f6cecd4c438d398bd2fc308736c10b857cd8dd61c11bcfb05bff5d1211a \
|
|
ffmpeg-5.0-full_build-shared
|
|
|
|
prepare-sdl2:
|
|
@./prepare-dep https://libsdl.org/release/SDL2-devel-2.0.18-mingw.tar.gz \
|
|
bbad7c6947f6ca3e05292f065852ed8b62f319fc5533047e7708769c4dbae394 \
|
|
SDL2-2.0.18
|
|
|
|
prepare-adb:
|
|
@./prepare-dep https://dl.google.com/android/repository/platform-tools_r31.0.3-windows.zip \
|
|
0f4b8fdd26af2c3733539d6eebb3c2ed499ea1d4bb1f4e0ecc2d6016961a6e24 \
|
|
platform-tools
|