]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
media: amphion: Add a frame flush mode for decoder
authorMing Qian <ming.qian@oss.nxp.com>
Mon, 5 Jan 2026 21:05:30 +0000 (16:05 -0500)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 8 Jan 2026 09:15:05 +0000 (10:15 +0100)
[ Upstream commit 9ea16ba6eaf93f25f61855751f71e2e701709ddf ]

By default the amphion decoder will pre-parse 3 frames before starting
to decode the first frame. Alternatively, a block of flush padding data
can be appended to the frame, which will ensure that the decoder can
start decoding immediately after parsing the flush padding data, thus
potentially reducing decoding latency.

This mode was previously only enabled, when the display delay was set to
0. Allow the user to manually toggle the use of that mode via a module
parameter called low_latency, which enables the mode without
changing the display order.

Signed-off-by: Ming Qian <ming.qian@oss.nxp.com>
Reviewed-by: Nicolas Dufresne <nicolas.dufresne@collabora.com>
Signed-off-by: Sebastian Fricke <sebastian.fricke@collabora.com>
Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
Stable-dep-of: 634c2cd17bd0 ("media: amphion: Remove vpu_vb_is_codecconfig")
Signed-off-by: Sasha Levin <sashal@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/media/platform/amphion/vpu_malone.c

index 4769c053c6c29f62d6350b717db86653b12a90c6..ba63eeb18e696a9a52f36ae2db9dc47c2d4b8da2 100644 (file)
 #include "vpu_imx8q.h"
 #include "vpu_malone.h"
 
+static bool low_latency;
+module_param(low_latency, bool, 0644);
+MODULE_PARM_DESC(low_latency, "Set low latency frame flush mode: 0 (disable) or 1 (enable)");
+
 #define CMD_SIZE                       25600
 #define MSG_SIZE                       25600
 #define CODEC_SIZE                     0x1000
@@ -1562,7 +1566,15 @@ static int vpu_malone_input_frame_data(struct vpu_malone_str_buffer __iomem *str
 
        vpu_malone_update_wptr(str_buf, wptr);
 
-       if (disp_imm && !vpu_vb_is_codecconfig(vbuf)) {
+       /*
+        * Enable the low latency flush mode if display delay is set to 0
+        * or the low latency frame flush mode if it is set to 1.
+        * The low latency flush mode requires some padding data to be appended to each frame,
+        * but there must not be any padding data between the sequence header and the frame.
+        * This module is currently only supported for the H264 and HEVC formats,
+        * for other formats, vpu_malone_add_scode() will return 0.
+        */
+       if ((disp_imm || low_latency) && !vpu_vb_is_codecconfig(vbuf)) {
                ret = vpu_malone_add_scode(inst->core->iface,
                                           inst->id,
                                           &inst->stream_buffer,