mirror of
https://github.com/MiyooCFW/buildroot.git
synced 2025-09-27 22:24:19 +03:00
* Add Cedar HW video decoder support * Add sunxifbsink gstreamer plugin * sunxifbsink: remove warning log gst-omx: remove resolution check after crop * Add gstreamer scripts * review comments fixes * ffmpeg: enable h264_omx encoder * add missing hashes and use defined git commit for libcedar * mv miyoo specific patches to board * make `gst-omx.mk` less platform specfic * Add header python interpreter to gst-raw.py * Add videoscale with nearest-neighbour to play video with higher resolutions fluently * Use HW scaler * libcedarc: fix crash when playing 640x480 video * kernel: Add patch to increase VRAM * Add fast gstreamer player * fix gst-play hangs * Add matroska plugin * remove target --------- Co-authored-by: Apaczer <94932128+Apaczer@users.noreply.github.com>
29 lines
1.0 KiB
Diff
29 lines
1.0 KiB
Diff
From 6b5a236aeaac29afa607ac84246c9f840a61f24a Mon Sep 17 00:00:00 2001
|
|
From: tiopex <tiopxyz@gmail.com>
|
|
Date: Fri, 20 Jun 2025 23:48:05 +0200
|
|
Subject: [PATCH] framebuffersink: remove log for unexpected system memory
|
|
overlay
|
|
|
|
---
|
|
src/gstframebuffersink.c | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/src/gstframebuffersink.c b/src/gstframebuffersink.c
|
|
index 934e6eb..a967cdb 100644
|
|
--- a/src/gstframebuffersink.c
|
|
+++ b/src/gstframebuffersink.c
|
|
@@ -2299,8 +2299,8 @@ GstBuffer * buf)
|
|
overlay frame from system memory (which shouldn't normally happen)
|
|
poses a bit of problem. We need to allocate a temporary video memory
|
|
area to store the overlay frame and show it. */
|
|
- GST_FRAMEBUFFERSINK_MESSAGE_OBJECT (framebuffersink,
|
|
- "Unexpected system memory overlay in buffer pool mode");
|
|
+// GST_FRAMEBUFFERSINK_MESSAGE_OBJECT (framebuffersink,
|
|
+// "Unexpected system memory overlay in buffer pool mode");
|
|
|
|
GstMemory *vmem;
|
|
vmem = gst_allocator_alloc(
|
|
--
|
|
2.34.1
|
|
|