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>
26 lines
754 B
Diff
26 lines
754 B
Diff
From 625e183efb5a59434c14b008696e54224014adda Mon Sep 17 00:00:00 2001
|
|
From: tiopex <tiopxyz@gmail.com>
|
|
Date: Fri, 20 Jun 2025 23:41:18 +0200
|
|
Subject: [PATCH] omxvideodec: remove resolution check with goto in fill_buffer
|
|
|
|
---
|
|
omx/gstomxvideodec.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/omx/gstomxvideodec.c b/omx/gstomxvideodec.c
|
|
index e044c78..e441cd4 100755
|
|
--- a/omx/gstomxvideodec.c
|
|
+++ b/omx/gstomxvideodec.c
|
|
@@ -544,7 +544,7 @@ gst_omx_video_dec_fill_buffer (GstOMXVideoDec * self,
|
|
(guint) port_def->format.video.nFrameWidth,
|
|
(guint) port_def->format.video.nFrameHeight,
|
|
vinfo->width, vinfo->height);
|
|
- goto done;
|
|
+ //goto done;
|
|
}
|
|
|
|
/* Same strides and everything */
|
|
--
|
|
2.34.1
|
|
|