mirror of
https://git.yoctoproject.org/poky
synced 2026-05-31 12:49:46 +00:00
ffmpeg: upgrade 7.0.2 -> 7.1
(From OE-Core rev: 692ecec9c65ff324ceaa3fe3462b314394390df0) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
6a11ebbc9a
commit
e140ddc97c
-48
@@ -1,48 +0,0 @@
|
|||||||
From 82b5617b8197246cf5b2af98a28f2aa37b8c8aa1 Mon Sep 17 00:00:00 2001
|
|
||||||
From: Ramiro Polla <ramiro.polla@gmail.com>
|
|
||||||
Date: Thu, 29 Aug 2024 15:40:00 +0200
|
|
||||||
Subject: [PATCH] configure: improve check for POSIX ioctl
|
|
||||||
|
|
||||||
Instead of relying on system #ifdefs which may or may not be correct,
|
|
||||||
detect the POSIX ioctl signature at configure time.
|
|
||||||
|
|
||||||
Upstream-Status: Backport [https://github.com/FFmpeg/FFmpeg/commit/00b64fca55a3a009c9d0e391c85f4fd3291e5d12]
|
|
||||||
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
|
||||||
---
|
|
||||||
configure | 2 ++
|
|
||||||
libavdevice/v4l2.c | 2 +-
|
|
||||||
2 files changed, 3 insertions(+), 1 deletion(-)
|
|
||||||
|
|
||||||
diff --git a/configure b/configure
|
|
||||||
index 8642513..d70b0bb 100755
|
|
||||||
--- a/configure
|
|
||||||
+++ b/configure
|
|
||||||
@@ -2517,6 +2517,7 @@ HAVE_LIST="
|
|
||||||
opencl_videotoolbox
|
|
||||||
perl
|
|
||||||
pod2man
|
|
||||||
+ posix_ioctl
|
|
||||||
texi2html
|
|
||||||
xmllint
|
|
||||||
zlib_gzip
|
|
||||||
@@ -7131,6 +7132,7 @@ perl -v > /dev/null 2>&1 && enable perl || disable perl
|
|
||||||
pod2man --help > /dev/null 2>&1 && enable pod2man || disable pod2man
|
|
||||||
rsync --help 2> /dev/null | grep -q 'contimeout' && enable rsync_contimeout || disable rsync_contimeout
|
|
||||||
xmllint --version > /dev/null 2>&1 && enable xmllint || disable xmllint
|
|
||||||
+test_code cc sys/ioctl.h "int ioctl(int, int, ...)" && enable posix_ioctl
|
|
||||||
|
|
||||||
# check V4L2 codecs available in the API
|
|
||||||
if enabled v4l2_m2m; then
|
|
||||||
diff --git a/libavdevice/v4l2.c b/libavdevice/v4l2.c
|
|
||||||
index 50ac47e..ee01711 100644
|
|
||||||
--- a/libavdevice/v4l2.c
|
|
||||||
+++ b/libavdevice/v4l2.c
|
|
||||||
@@ -107,7 +107,7 @@ struct video_data {
|
|
||||||
int (*open_f)(const char *file, int oflag, ...);
|
|
||||||
int (*close_f)(int fd);
|
|
||||||
int (*dup_f)(int fd);
|
|
||||||
-#if defined(__sun) || defined(__BIONIC__) || defined(__musl__) /* POSIX-like */
|
|
||||||
+#if HAVE_POSIX_IOCTL
|
|
||||||
int (*ioctl_f)(int fd, int request, ...);
|
|
||||||
#else
|
|
||||||
int (*ioctl_f)(int fd, unsigned long int request, ...);
|
|
||||||
-52
@@ -1,52 +0,0 @@
|
|||||||
From e52fc2c11c3935085ccf1a5707ce50223ad62b58 Mon Sep 17 00:00:00 2001
|
|
||||||
From: Ross Burton <ross.burton@arm.com>
|
|
||||||
Date: Thu, 8 Aug 2024 18:04:17 +0100
|
|
||||||
Subject: [PATCH] libavcodec/arm/mlpdsp_armv5te: fix label format to work with
|
|
||||||
binutils 2.43
|
|
||||||
|
|
||||||
binutils 2.43 has stricter validation for labels[1] and results in errors
|
|
||||||
when building ffmpeg for armv5:
|
|
||||||
|
|
||||||
src/libavcodec/arm/mlpdsp_armv5te.S:232: Error: junk at end of line, first unrecognized character is `0'
|
|
||||||
|
|
||||||
Remove the leading zero in the "01" label to resolve this error.
|
|
||||||
|
|
||||||
[1] https://sourceware.org/git/?p=binutils-gdb.git;a=commit;h=226749d5a6ff0d5c607d6428d6c81e1e7e7a994b
|
|
||||||
|
|
||||||
Upstream-Status: Submitted [https://ffmpeg.org//pipermail/ffmpeg-devel/2024-August/332149.html]
|
|
||||||
Signed-off-by: Ross Burton <ross.burton@arm.com>
|
|
||||||
---
|
|
||||||
libavcodec/arm/mlpdsp_armv5te.S | 6 +++---
|
|
||||||
1 file changed, 3 insertions(+), 3 deletions(-)
|
|
||||||
|
|
||||||
diff --git a/libavcodec/arm/mlpdsp_armv5te.S b/libavcodec/arm/mlpdsp_armv5te.S
|
|
||||||
index 4f9aa48..d315686 100644
|
|
||||||
--- a/libavcodec/arm/mlpdsp_armv5te.S
|
|
||||||
+++ b/libavcodec/arm/mlpdsp_armv5te.S
|
|
||||||
@@ -229,7 +229,7 @@ A .endif
|
|
||||||
.endif
|
|
||||||
|
|
||||||
// Begin loop
|
|
||||||
-01:
|
|
||||||
+1:
|
|
||||||
.if TOTAL_TAPS == 0
|
|
||||||
// Things simplify a lot in this case
|
|
||||||
// In fact this could be pipelined further if it's worth it...
|
|
||||||
@@ -241,7 +241,7 @@ A .endif
|
|
||||||
str ST0, [PST, #-4]!
|
|
||||||
str ST0, [PST, #4 * (MAX_BLOCKSIZE + MAX_FIR_ORDER)]
|
|
||||||
str ST0, [PSAMP], #4 * MAX_CHANNELS
|
|
||||||
- bne 01b
|
|
||||||
+ bne 1b
|
|
||||||
.else
|
|
||||||
.if \fir_taps & 1
|
|
||||||
.set LOAD_REG, 1
|
|
||||||
@@ -333,7 +333,7 @@ T orr AC0, AC0, AC1
|
|
||||||
str ST3, [PST, #-4]!
|
|
||||||
str ST2, [PST, #4 * (MAX_BLOCKSIZE + MAX_FIR_ORDER)]
|
|
||||||
str ST3, [PSAMP], #4 * MAX_CHANNELS
|
|
||||||
- bne 01b
|
|
||||||
+ bne 1b
|
|
||||||
.endif
|
|
||||||
b 99f
|
|
||||||
|
|
||||||
+3
-6
@@ -22,13 +22,10 @@ LIC_FILES_CHKSUM = "file://COPYING.GPLv2;md5=b234ee4d69f5fce4486a80fdaf4a4263 \
|
|||||||
file://COPYING.LGPLv2.1;md5=bd7a443320af8c812e4c18d1b79df004 \
|
file://COPYING.LGPLv2.1;md5=bd7a443320af8c812e4c18d1b79df004 \
|
||||||
file://COPYING.LGPLv3;md5=e6a600fd5e1d9cbde2d983680233ad02"
|
file://COPYING.LGPLv3;md5=e6a600fd5e1d9cbde2d983680233ad02"
|
||||||
|
|
||||||
SRC_URI = " \
|
SRC_URI = "https://www.ffmpeg.org/releases/${BP}.tar.xz \
|
||||||
https://www.ffmpeg.org/releases/${BP}.tar.xz \
|
"
|
||||||
file://0001-libavcodec-arm-mlpdsp_armv5te-fix-label-format-to-wo.patch \
|
|
||||||
file://0001-configure-improve-check-for-POSIX-ioctl.patch \
|
|
||||||
"
|
|
||||||
|
|
||||||
SRC_URI[sha256sum] = "8646515b638a3ad303e23af6a3587734447cb8fc0a0c064ecdb8e95c4fd8b389"
|
SRC_URI[sha256sum] = "40973d44970dbc83ef302b0609f2e74982be2d85916dd2ee7472d30678a7abe6"
|
||||||
|
|
||||||
# https://nvd.nist.gov/vuln/detail/CVE-2023-39018
|
# https://nvd.nist.gov/vuln/detail/CVE-2023-39018
|
||||||
# https://github.com/bramp/ffmpeg-cli-wrapper/issues/291
|
# https://github.com/bramp/ffmpeg-cli-wrapper/issues/291
|
||||||
Reference in New Issue
Block a user