public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
* [rpms/chromium] epel9-next: - fix #2071126, enable support V4L2 stateless decoders for aarch64 plattform
@ 2026-08-07 16:04 Than Ngo
0 siblings, 0 replies; only message in thread
From: Than Ngo @ 2026-08-07 16:04 UTC (permalink / raw)
To: git-commits
A new commit has been pushed.
Repo : rpms/chromium
Branch : epel9-next
Commit : 4d005b902f2c936a73afc8a2dfe970fbb7a9c7cf
Author : Than Ngo <than@redhat.com>
Date : 2023-02-16T10:13:11+01:00
Stats : +163/-1 in 2 file(s)
URL : https://src.fedoraproject.org/rpms/chromium/c/4d005b902f2c936a73afc8a2dfe970fbb7a9c7cf?branch=epel9-next
Log:
- fix #2071126, enable support V4L2 stateless decoders for aarch64 plattform
- fix prefers-color-scheme
- drop snapshot_blob.bin, replace snapshot_blob.bin with v8_context_snapshot.bin
- move headless_lib*.pak to headless subpackage
---
diff --git a/chromium-v4l2-fix.patch b/chromium-v4l2-fix.patch
new file mode 100644
index 0000000..1ae7530
--- /dev/null
+++ b/chromium-v4l2-fix.patch
@@ -0,0 +1,137 @@
+commit e775ac4770bb1e5dfbfe22c5b56752ed4a2317c5
+Author: Hirokazu Honda <hiroh@chromium.org>
+Date: Tue Jan 17 17:54:02 2023 +0000
+
+ Revert "media/gpu/v4l2VEA,IP: Workaround to USERPTR API against read-only buf"
+
+ This reverts commit 203fdd03a4317f2eac57161ee101515a82df704f.
+
+ Reason for revert: This workaround is no longer required because of
+ the kernel patch was reverted.
+
+ Original change's description:
+ > media/gpu/v4l2VEA,IP: Workaround to USERPTR API against read-only buf
+ >
+ > VideoFrame fed in VEA::Encode() is read-only since R107 if the
+ > VideoFrame has a shared memory. V4L2VideoEncodeAccelerator fails
+ > because VIDOC_QBUF with USERPTR buffer fails if the pointers
+ > references a read-only buffer.
+ > The USERPTR API issue is apparently to be fixed by a kernel side.
+ > In the meantime, this CL adds the workaround to the issue; the read
+ > only buffer is copied to a writable temporary buffer every Encode
+ > before VIDIOC_QBUF.
+ > Not that VideoFrame has a shared memory in the case of screen share
+ > because a camera stack produces GpuMemoryBuffer.
+ >
+ > Bug: b:243883312
+ > Test: video_encode_accelerator_tests on elm, kevin and trogdor
+ > Test: screen share in Google Meet on elm, kevin and trogdor
+ > Change-Id: I922d98eaf52f80d9cd6c3784a8544bffb1232856
+ > Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/3891421
+ > Reviewed-by: Nathan Hebert <nhebert@chromium.org>
+ > Commit-Queue: Hirokazu Honda <hiroh@chromium.org>
+ > Cr-Commit-Position: refs/heads/main@{#1046659}
+
+ Bug: b:243883312, b:261660224
+ Change-Id: I6fe37276f2ebe8c8730cfd3dd766b04277b32a67
+ Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/4091205
+ Reviewed-by: Nathan Hebert <nhebert@chromium.org>
+ Commit-Queue: Hirokazu Honda <hiroh@chromium.org>
+ Cr-Commit-Position: refs/heads/main@{#1093388}
+
+diff --git a/media/gpu/v4l2/v4l2_image_processor_backend.cc b/media/gpu/v4l2/v4l2_image_processor_backend.cc
+index dc72a4ac060a9..f3049f4546e2e 100644
+--- a/media/gpu/v4l2/v4l2_image_processor_backend.cc
++++ b/media/gpu/v4l2/v4l2_image_processor_backend.cc
+@@ -925,35 +925,16 @@ bool V4L2ImageProcessorBackend::EnqueueInputRecord(
+
+ switch (input_memory_type_) {
+ case V4L2_MEMORY_USERPTR: {
+- VideoFrame& frame = *job_record->input_frame;
+ const size_t num_planes = V4L2Device::GetNumPlanesOfV4L2PixFmt(
+ input_config_.fourcc.ToV4L2PixFmt());
+ std::vector<void*> user_ptrs(num_planes);
+- if (frame.storage_type() == VideoFrame::STORAGE_SHMEM) {
+- // TODO(b/243883312): This copies the video frame to a writable buffer
+- // since the USERPTR API requires writable permission. Remove this
+- // workaround once the unreasonable permission is fixed.
+- const size_t buffer_size = frame.shm_region()->GetSize();
+- std::vector<uint8_t> writable_buffer(buffer_size);
+- std::memcpy(writable_buffer.data(), frame.data(0), buffer_size);
+- for (size_t i = 0; i < num_planes; ++i) {
+- const std::intptr_t plane_offset =
+- reinterpret_cast<std::intptr_t>(frame.data(i)) -
+- reinterpret_cast<std::intptr_t>(frame.data(0));
+- user_ptrs[i] = writable_buffer.data() + plane_offset;
+- }
+- job_record->input_frame->AddDestructionObserver(base::BindOnce(
+- [](std::vector<uint8_t>) {}, std::move(writable_buffer)));
+- } else {
+- for (size_t i = 0; i < num_planes; ++i)
+- user_ptrs[i] = frame.writable_data(i);
+- }
+-
+ for (size_t i = 0; i < num_planes; ++i) {
+ int bytes_used =
+- VideoFrame::PlaneSize(frame.format(), i, input_config_.size)
++ VideoFrame::PlaneSize(job_record->input_frame->format(), i,
++ input_config_.size)
+ .GetArea();
+ buffer.SetPlaneBytesUsed(i, bytes_used);
++ user_ptrs[i] = const_cast<uint8_t*>(job_record->input_frame->data(i));
+ }
+ if (!std::move(buffer).QueueUserPtr(user_ptrs)) {
+ VPLOGF(1) << "Failed to queue a DMABUF buffer to input queue";
+diff --git a/media/gpu/v4l2/v4l2_video_encode_accelerator.cc b/media/gpu/v4l2/v4l2_video_encode_accelerator.cc
+index 56389ea3eec08..d452ba48a69e2 100644
+--- a/media/gpu/v4l2/v4l2_video_encode_accelerator.cc
++++ b/media/gpu/v4l2/v4l2_video_encode_accelerator.cc
+@@ -783,7 +783,7 @@ void V4L2VideoEncodeAccelerator::EncodeTask(scoped_refptr<VideoFrame> frame,
+ const bool is_expected_storage_type =
+ native_input_mode_
+ ? frame->storage_type() == VideoFrame::STORAGE_GPU_MEMORY_BUFFER
+- : frame->storage_type() == VideoFrame::STORAGE_SHMEM;
++ : frame->IsMappable();
+ if (!is_expected_storage_type) {
+ VLOGF(1) << "Unexpected storage: "
+ << VideoFrame::StorageTypeToString(frame->storage_type());
+@@ -1392,27 +1392,16 @@ bool V4L2VideoEncodeAccelerator::EnqueueInputRecord(
+ NOTIFY_ERROR(kPlatformFailureError);
+ }
+
+- // TODO(b/243883312): This copies the video frame to a writable buffer
+- // since the USERPTR API requires writable permission. Remove this
+- // workaround once the unreasonable permission is fixed.
+- const size_t buffer_size = frame->shm_region()->GetSize();
+- std::vector<uint8_t> writable_buffer(buffer_size);
+- std::memcpy(writable_buffer.data(), frame->data(0), buffer_size);
++ // The frame data is readable only and the driver doesn't actually write
++ // the buffer. But USRPTR buffer needs void*. So const_cast<> is required.
+ std::vector<void*> user_ptrs(num_planes);
+ for (size_t i = 0; i < num_planes; ++i) {
+- const std::intptr_t plane_offset =
+- reinterpret_cast<std::intptr_t>(frame->data(i)) -
+- reinterpret_cast<std::intptr_t>(frame->data(0));
+- user_ptrs[i] = writable_buffer.data() + plane_offset;
++ user_ptrs[i] = const_cast<uint8_t*>(frame->data(i));
+ }
+-
+ if (!std::move(input_buf).QueueUserPtr(std::move(user_ptrs))) {
+- VPLOGF(1) << "Failed to queue a USRPTR buffer to input queue";
+- NOTIFY_ERROR(kPlatformFailureError);
++ VPLOGF(1) << "Failed queue a USRPTR buffer to input queue";
+ return false;
+ }
+- frame->AddDestructionObserver(
+- base::DoNothingWithBoundArgs(std::move(writable_buffer)));
+ break;
+ }
+ case V4L2_MEMORY_DMABUF: {
+@@ -1421,6 +1410,7 @@ bool V4L2VideoEncodeAccelerator::EnqueueInputRecord(
+ VPLOGF(1) << "Failed queue a DMABUF buffer to input queue";
+ return false;
+ }
++
+ // Keep |gmb_handle| alive as long as |frame| is alive so that fds passed
+ // to the driver are valid during encoding.
+ frame->AddDestructionObserver(base::BindOnce(
diff --git a/chromium.spec b/chromium.spec
index 1592e5f..b204d4a 100644
--- a/chromium.spec
+++ b/chromium.spec
@@ -70,12 +70,19 @@
# We'd like to always have this on...
%global use_vaapi 1
+%global use_v4l2_codec 0
# ... but the libva in EL7 (and EL8) is too old.
%if 0%{?rhel} == 7 || 0%{?rhel} == 8
%global use_vaapi 0
%endif
+# enable v4l2 and disable vaapi for aarch64 platform
+%ifarch aarch64
+%global use_vaapi 0
+%global use_v4l2_codec 1
+%endif
+
# Seems like we might need this sometimes
# Practically, no. But it's here in case we do.
%global use_gold 0
@@ -229,7 +236,7 @@
Name: chromium%{chromium_channel}
Version: 110.0.5481.77
-Release: 1%{?dist}
+Release: 2%{?dist}
Summary: A WebKit (Blink) powered web browser that Google doesn't want you to use
Url: http://www.chromium.org/Home
License: BSD and LGPLv2+ and ASL 2.0 and IJG and MIT and GPLv2+ and ISC and OpenSSL and (MPLv1.1 or GPLv2 or LGPLv2)
@@ -379,6 +386,10 @@ Patch202: chromium-104.0.5112.101-enable-hardware-accelerated-mjpeg.patch
Patch205: chromium-86.0.4240.75-fix-vaapi-on-intel.patch
Patch206: chromium-110-ozone-wayland-vaapi-support.patch
+# V4L2
+# Upstream
+Patch250: chromium-v4l2-fix.patch
+
# Apply these patches to work around EPEL8 issues
Patch300: chromium-99.0.4844.51-rhel8-force-disable-use_gnome_keyring.patch
@@ -995,6 +1006,10 @@ udev.
%patch206 -p1 -b .wayland-vaapi
%endif
+%if %{use_v4l2_codec}
+%patch250 -p1 -b .v4l2-fix
+%endif
+
%if 0%{?rhel} >= 8
%patch300 -p1 -b .disblegnomekeyring
%endif
@@ -1195,6 +1210,10 @@ CHROMIUM_BROWSER_GN_DEFINES+=' use_vaapi=true'
CHROMIUM_BROWSER_GN_DEFINES+=' use_vaapi=false'
%endif
+%if %{use_v4l2_codec}
+CHROMIUM_BROWSER_GN_DEFINES+=' use_v4l2_codec=true'
+%endif
+
%if 0%{?fedora}
CHROMIUM_BROWSER_GN_DEFINES+=' rtc_use_pipewire=true rtc_link_pipewire=true'
%endif
@@ -1667,6 +1686,12 @@ getent group chrome-remote-desktop >/dev/null || groupadd -r chrome-remote-deskt
%{chromium_path}/chromedriver
%changelog
+* Thu Feb 16 2023 Than Ngo <than@redhat.com> - 110.0.5481.77-2
+- fix #2071126, enable support V4L2 stateless decoders for aarch64 plattform
+- fix prefers-color-scheme
+- drop snapshot_blob.bin, replace snapshot_blob.bin with v8_context_snapshot.bin
+- move headless_lib*.pak to headless subpackage
+
* Wed Feb 08 2023 Than Ngo <than@redhat.com> - 110.0.5481.77-1
- update to 110.0.5481.77
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2026-08-07 16:04 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-08-07 16:04 [rpms/chromium] epel9-next: - fix #2071126, enable support V4L2 stateless decoders for aarch64 plattform Than Ngo
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox