From patchwork Tue Apr 19 05:06:41 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Dikshita Agarwal X-Patchwork-Id: 12817383 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 87778C4332F for ; Tue, 19 Apr 2022 05:07:25 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1345361AbiDSFKE (ORCPT ); Tue, 19 Apr 2022 01:10:04 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:35276 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S238277AbiDSFKC (ORCPT ); Tue, 19 Apr 2022 01:10:02 -0400 Received: from alexa-out.qualcomm.com (alexa-out.qualcomm.com [129.46.98.28]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 366DB20190; Mon, 18 Apr 2022 22:07:21 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=quicinc.com; i=@quicinc.com; q=dns/txt; s=qcdkim; t=1650344841; x=1681880841; h=from:to:cc:subject:date:message-id; bh=GdTiCrZbPfX19PSnyI6txSuLTMmt+h3YnRZA1pn6xpo=; b=s+XWdRNYeSSFV8ErztHPsulc9O2/QtTo8ggu3Rk2MlcLNJFjxNblXl5+ q1WGCLw7otFFU+o2VrdCMEwCDQpo6JL/5W+TwVMDmwJOZwhHgsbIQ/G34 yFcBQQJ9pfaBVxjlhbPWerUIsx6OLaCLSjyxdSfmQohGnVqyWsxsyEcZ1 0=; Received: from ironmsg-lv-alpha.qualcomm.com ([10.47.202.13]) by alexa-out.qualcomm.com with ESMTP; 18 Apr 2022 22:07:21 -0700 X-QCInternal: smtphost Received: from ironmsg01-blr.qualcomm.com ([10.86.208.130]) by ironmsg-lv-alpha.qualcomm.com with ESMTP/TLS/AES256-SHA; 18 Apr 2022 22:07:19 -0700 X-QCInternal: smtphost Received: from hu-dikshita-hyd.qualcomm.com (HELO hu-sgudaval-hyd.qualcomm.com) ([10.213.110.13]) by ironmsg01-blr.qualcomm.com with ESMTP; 19 Apr 2022 10:37:03 +0530 Received: by hu-sgudaval-hyd.qualcomm.com (Postfix, from userid 347544) id 7F22F434D; Tue, 19 Apr 2022 10:37:02 +0530 (+0530) From: Dikshita Agarwal To: linux-media@vger.kernel.org, linux-kernel@vger.kernel.org, hverkuil-cisco@xs4all.nl Cc: linux-arm-msm@vger.kernel.org, ezequiel@collabora.com, stanimir.varbanov@linaro.org, quic_vgarodia@quicinc.com, quic_majja@quicinc.com, quic_jdas@quicinc.com, Dikshita Agarwal Subject: [PATCH v5 0/2] Introduce Intra-refresh type control Date: Tue, 19 Apr 2022 10:36:41 +0530 Message-Id: <1650344803-6884-1-git-send-email-quic_dikshita@quicinc.com> X-Mailer: git-send-email 2.7.4 Precedence: bulk List-ID: X-Mailing-List: linux-arm-msm@vger.kernel.org Hi, This series add a new intra-refresh type control for encoders. this can be used to specify which intra refresh to be enabled, random, cyclic or none. Change since v0: Dropped INTRA_REFRESH_TYPE_NONE as it was not needed. Intra refresh period value as zero will disable the intra refresh. Change since v1: Updated the control name for better undestanding. Also updated the documentation accordingly. Change since v2: Updated the venus driver implementation as well to use the correct control name. Missed in v2. Change since v3: Addressed comments from Hans in v4l2 patch. Enabled the support for cyclic intra refresh in venus driver. Change since v4: fixed typos in v4l2 patch. fix mask value in venus driver patch (Hans). Thanks, Dikshita Dikshita Agarwal (2): media: v4l2-ctrls: Add intra-refresh type control venus: venc: Add support for intra-refresh mode .../userspace-api/media/v4l/ext-ctrls-codec.rst | 22 ++++++++++++++++++++++ drivers/media/platform/qcom/venus/core.h | 1 + drivers/media/platform/qcom/venus/venc.c | 6 +++++- drivers/media/platform/qcom/venus/venc_ctrls.c | 8 ++++++++ drivers/media/v4l2-core/v4l2-ctrls-defs.c | 9 +++++++++ include/uapi/linux/v4l2-controls.h | 5 +++++ 6 files changed, 50 insertions(+), 1 deletion(-)