[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20200124155631.7063-1-mjourdan@baylibre.com>
Date: Fri, 24 Jan 2020 16:56:31 +0100
From: Maxime Jourdan <mjourdan@...libre.com>
To: mchehab@...nel.org, hans.verkuil@...co.com
Cc: Maxime Jourdan <mjourdan@...libre.com>,
Neil Armstrong <narmstrong@...libre.com>,
linux-media@...r.kernel.org, linux-amlogic@...ts.infradead.org,
linux-arm-kernel@...ts.infradead.org, linux-kernel@...r.kernel.org
Subject: [PATCH] media: meson: vdec: don't resume instantly if not streaming capture
In case userspace configured the capture queue before the source change
event, do not resume decoding instantly if it wasn't streamed on yet.
Signed-off-by: Maxime Jourdan <mjourdan@...libre.com>
---
Note: this patch is based off Neil's series:
[v4,0/4] media: meson: vdec: Add compliant H264 support
drivers/staging/media/meson/vdec/vdec_helpers.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/drivers/staging/media/meson/vdec/vdec_helpers.c b/drivers/staging/media/meson/vdec/vdec_helpers.c
index ff4333074197..a4970ec1bf2e 100644
--- a/drivers/staging/media/meson/vdec/vdec_helpers.c
+++ b/drivers/staging/media/meson/vdec/vdec_helpers.c
@@ -417,7 +417,8 @@ void amvdec_src_change(struct amvdec_session *sess, u32 width,
* Check if the capture queue is already configured well for our
* usecase. If so, keep decoding with it and do not send the event
*/
- if (sess->width == width &&
+ if (sess->streamon_cap &&
+ sess->width == width &&
sess->height == height &&
dpb_size <= sess->num_dst_bufs) {
sess->fmt_out->codec_ops->resume(sess);
--
2.20.1
Powered by blists - more mailing lists