From: Alexander Kanavin <alex.kanavin@gmail.com>
To: openembedded-core@lists.openembedded.org
Cc: Alexander Kanavin <alex@linutronix.de>
Subject: [PATCH 10/15] x264: upgrade to latest revision
Date: Mon, 22 Dec 2025 21:44:28 +0100 [thread overview]
Message-ID: <20251222204455.2284529-10-alex.kanavin@gmail.com> (raw)
In-Reply-To: <20251222204455.2284529-1-alex.kanavin@gmail.com>
From: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
---
...b801191522961102d4bea292cdb61068d0dd.patch | 39 -------------------
meta/recipes-multimedia/x264/x264_git.bb | 5 +--
2 files changed, 2 insertions(+), 42 deletions(-)
delete mode 100644 meta/recipes-multimedia/x264/x264/32c3b801191522961102d4bea292cdb61068d0dd.patch
diff --git a/meta/recipes-multimedia/x264/x264/32c3b801191522961102d4bea292cdb61068d0dd.patch b/meta/recipes-multimedia/x264/x264/32c3b801191522961102d4bea292cdb61068d0dd.patch
deleted file mode 100644
index fb0f313cdb..0000000000
--- a/meta/recipes-multimedia/x264/x264/32c3b801191522961102d4bea292cdb61068d0dd.patch
+++ /dev/null
@@ -1,39 +0,0 @@
-From 32c3b801191522961102d4bea292cdb61068d0dd Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Martin=20Storsj=C3=B6?= <martin@martin.st>
-Date: Fri, 4 Apr 2025 16:59:34 +0300
-Subject: [PATCH] lavf: Update the code to work with the latest libavutil API
-
-Upstream-Status: Backport [https://code.videolan.org/videolan/x264/-/commit/32c3b801191522961102d4bea292cdb61068d0dd]
----
- input/lavf.c | 6 ++++++
- 1 file changed, 6 insertions(+)
-
-diff --git a/input/lavf.c b/input/lavf.c
-index 90f4cec5..e2489963 100644
---- a/input/lavf.c
-+++ b/input/lavf.c
-@@ -33,6 +33,7 @@
- #include <libavutil/error.h>
- #include <libavutil/mem.h>
- #include <libavutil/pixdesc.h>
-+#include <libavutil/version.h>
-
- #define FAIL_IF_ERROR( cond, ... ) FAIL_IF_ERR( cond, "lavf", __VA_ARGS__ )
-
-@@ -141,8 +142,13 @@ static int read_frame_internal( cli_pic_t *p_pic, lavf_hnd_t *h, int i_frame, vi
- if( info )
- {
- info->fullrange = is_fullrange;
-+#if LIBAVUTIL_VERSION_MAJOR < 60
- info->interlaced = h->frame->interlaced_frame;
- info->tff = h->frame->top_field_first;
-+#else
-+ info->interlaced = !!(h->frame->flags & AV_FRAME_FLAG_INTERLACED);
-+ info->tff = !!(h->frame->flags & AV_FRAME_FLAG_TOP_FIELD_FIRST);
-+#endif
- }
-
- if( h->vfr_input )
---
-GitLab
-
diff --git a/meta/recipes-multimedia/x264/x264_git.bb b/meta/recipes-multimedia/x264/x264_git.bb
index eb72ba006a..b3d1cfd695 100644
--- a/meta/recipes-multimedia/x264/x264_git.bb
+++ b/meta/recipes-multimedia/x264/x264_git.bb
@@ -8,12 +8,11 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f"
DEPENDS = "nasm-native"
-SRC_URI = "git://code.videolan.org/videolan/x264.git;branch=stable;protocol=https \
- file://32c3b801191522961102d4bea292cdb61068d0dd.patch \
+SRC_URI = "git://code.videolan.org/videolan/x264.git;branch=master;protocol=https \
"
UPSTREAM_CHECK_COMMITS = "1"
-SRCREV = "31e19f92f00c7003fa115047ce50978bc98c3a0d"
+SRCREV = "0480cb05fa188d37ae87e8f4fd8f1aea3711f7ee"
PV = "r3039+git"
--
2.47.3
next prev parent reply other threads:[~2025-12-22 20:45 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-12-22 20:44 [PATCH 01/15] sysstat: upgrade 12.7.8 -> 12.7.9 Alexander Kanavin
2025-12-22 20:44 ` [PATCH 02/15] util-linux: upgrade 2.41.2 -> 2.41.3 Alexander Kanavin
2025-12-22 20:44 ` [PATCH 03/15] virglrenderer: upgrade 1.1.1 -> 1.2.0 Alexander Kanavin
2025-12-22 20:44 ` [PATCH 04/15] vte: upgrade 0.82.1 -> 0.82.2 Alexander Kanavin
2025-12-22 20:44 ` [PATCH 05/15] vulkan: upgrade 1.4.328.1 -> 1.4.335.0 Alexander Kanavin
2025-12-22 20:44 ` [PATCH 06/15] vulkan-samples: upgrade to latest revision Alexander Kanavin
2025-12-22 20:44 ` [PATCH 07/15] wayland-protocols: upgrade 1.45 -> 1.47 Alexander Kanavin
2025-12-22 20:44 ` [PATCH 08/15] wayland-utils: upgrade 1.2.0 -> 1.3.0 Alexander Kanavin
2025-12-22 20:44 ` [PATCH 09/15] wpebackend-fdo: upgrade 1.16.0 -> 1.16.1 Alexander Kanavin
2025-12-22 20:44 ` Alexander Kanavin [this message]
2025-12-22 20:44 ` [PATCH 11/15] xcb-util-cursor: upgrade 0.1.5 -> 0.1.6 Alexander Kanavin
2025-12-22 20:44 ` [PATCH 12/15] xkbcomp: upgrade 1.4.7 -> 1.5.0 Alexander Kanavin
2025-12-22 20:44 ` [PATCH 13/15] xkeyboard-config: upgrade 2.45 -> 2.46 Alexander Kanavin
2025-12-22 20:44 ` [PATCH 14/15] xserver-xorg: upgrade 21.1.18 -> 21.1.21 Alexander Kanavin
2025-12-22 20:44 ` [PATCH 15/15] xwayland: upgrade 24.1.8 -> 24.1.9 Alexander Kanavin
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20251222204455.2284529-10-alex.kanavin@gmail.com \
--to=alex.kanavin@gmail.com \
--cc=alex@linutronix.de \
--cc=openembedded-core@lists.openembedded.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox