mirror of
https://github.com/Genymobile/scrcpy
synced 2024-12-18 13:24:40 +00:00
8d87b91f69
The project has 3 build dependencies: - SDL - FFmpeg - libusb For Windows, the release script downloaded pre-built build dependencies (either from upstream, or from the scrcpy-deps repository). Instead, download the source releases and build locally. This offers more flexibility. The official adb release is still downloaded and included as is in the release archive (it is not a build dependency). Also upgrade FFmpeg to 6.1.1 and libusb to 1.0.27. PR #4713 <https://github.com/Genymobile/scrcpy/pull/4713>
28 lines
1.0 KiB
Diff
28 lines
1.0 KiB
Diff
From 03c80197afb324da38c9b70254231e3fdcfa68fc Mon Sep 17 00:00:00 2001
|
|
From: Romain Vimont <rom@rom1v.com>
|
|
Date: Sun, 12 Nov 2023 17:58:50 +0100
|
|
Subject: [PATCH] Fix FFmpeg 6.1 build
|
|
|
|
Build failed on tag n6.1 With --enable-decoder=av1 but without
|
|
--enable-muxer=av1.
|
|
---
|
|
libavcodec/Makefile | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/libavcodec/Makefile b/libavcodec/Makefile
|
|
index 580a8d6b54..aff19b670c 100644
|
|
--- a/libavcodec/Makefile
|
|
+++ b/libavcodec/Makefile
|
|
@@ -249,7 +249,7 @@ OBJS-$(CONFIG_ATRAC3PAL_DECODER) += atrac3plusdec.o atrac3plus.o \
|
|
OBJS-$(CONFIG_ATRAC9_DECODER) += atrac9dec.o
|
|
OBJS-$(CONFIG_AURA_DECODER) += cyuv.o
|
|
OBJS-$(CONFIG_AURA2_DECODER) += aura.o
|
|
-OBJS-$(CONFIG_AV1_DECODER) += av1dec.o
|
|
+OBJS-$(CONFIG_AV1_DECODER) += av1dec.o av1_parse.o
|
|
OBJS-$(CONFIG_AV1_CUVID_DECODER) += cuviddec.o
|
|
OBJS-$(CONFIG_AV1_MEDIACODEC_DECODER) += mediacodecdec.o
|
|
OBJS-$(CONFIG_AV1_MEDIACODEC_ENCODER) += mediacodecenc.o
|
|
--
|
|
2.42.0
|
|
|