linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: dikshita@codeaurora.org
To: linux-media@vger.kernel.org, stanimir.varbanov@linaro.org
Cc: linux-kernel@vger.kernel.org, linux-arm-msm@vger.kernel.org,
	vgarodia@codeaurora.org
Subject: Re: [PATCH 1/2] venus: venc: update output format based on capture format.
Date: Wed, 16 Dec 2020 11:44:14 +0530	[thread overview]
Message-ID: <8e467d9434768f6c9ec93885719a1987@codeaurora.org> (raw)
In-Reply-To: <1600968674-11559-2-git-send-email-dikshita@codeaurora.org>

Hi All,

Kindly ignore this patch.
https://patchwork.linuxtv.org/project/linux-media/list/?series=3790 
replaces this.

Thanks,
Dikshita

On 2020-09-24 23:01, Dikshita Agarwal wrote:
> update output format parameters when s_fmt is called on
> capture port as recommended in encoder spec.
> 
> Signed-off-by: Dikshita Agarwal <dikshita@codeaurora.org>
> ---
>  drivers/media/platform/qcom/venus/venc.c | 28 
> +++++++++++++++-------------
>  1 file changed, 15 insertions(+), 13 deletions(-)
> 
> diff --git a/drivers/media/platform/qcom/venus/venc.c
> b/drivers/media/platform/qcom/venus/venc.c
> index c591d00..7d2aaa8 100644
> --- a/drivers/media/platform/qcom/venus/venc.c
> +++ b/drivers/media/platform/qcom/venus/venc.c
> @@ -382,31 +382,33 @@ static int venc_s_fmt(struct file *file, void
> *fh, struct v4l2_format *f)
> 
>  	memset(&format, 0, sizeof(format));
> 
> -	format.type = V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE;
> -	format.fmt.pix_mp.pixelformat = pixfmt_out;
> +	format.type = V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE;
> +	format.fmt.pix_mp.pixelformat = pixfmt_cap;
>  	format.fmt.pix_mp.width = orig_pixmp.width;
>  	format.fmt.pix_mp.height = orig_pixmp.height;
>  	venc_try_fmt_common(inst, &format);
> 
> -	if (f->type == V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE) {
> -		inst->out_width = format.fmt.pix_mp.width;
> -		inst->out_height = format.fmt.pix_mp.height;
> -		inst->colorspace = pixmp->colorspace;
> -		inst->ycbcr_enc = pixmp->ycbcr_enc;
> -		inst->quantization = pixmp->quantization;
> -		inst->xfer_func = pixmp->xfer_func;
> +	if (f->type == V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE) {
> +		inst->width = format.fmt.pix_mp.width;
> +		inst->height = format.fmt.pix_mp.height;
>  	}
> 
>  	memset(&format, 0, sizeof(format));
> 
> -	format.type = V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE;
> -	format.fmt.pix_mp.pixelformat = pixfmt_cap;
> +	format.type = V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE;
> +	format.fmt.pix_mp.pixelformat = pixfmt_out;
>  	format.fmt.pix_mp.width = orig_pixmp.width;
>  	format.fmt.pix_mp.height = orig_pixmp.height;
>  	venc_try_fmt_common(inst, &format);
> 
> -	inst->width = format.fmt.pix_mp.width;
> -	inst->height = format.fmt.pix_mp.height;
> +	inst->out_width = format.fmt.pix_mp.width;
> +	inst->out_height = format.fmt.pix_mp.height;
> +	if (f->type == V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE) {
> +		inst->colorspace = pixmp->colorspace;
> +		inst->ycbcr_enc = pixmp->ycbcr_enc;
> +		inst->quantization = pixmp->quantization;
> +		inst->xfer_func = pixmp->xfer_func;
> +	}
> 
>  	if (f->type == V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE)
>  		inst->fmt_out = fmt;

  reply	other threads:[~2020-12-16  6:15 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-09-24 17:31 [PATCH 0/2] Venus: fix handling of crop and s_fmt Dikshita Agarwal
2020-09-24 17:31 ` [PATCH 1/2] venus: venc: update output format based on capture format Dikshita Agarwal
2020-12-16  6:14   ` dikshita [this message]
2020-09-24 17:31 ` [PATCH 2/2] venus: venc: fix handlig of S_SELECTION and G_SELECTION Dikshita Agarwal
2020-09-24 23:09   ` Stanimir Varbanov
2020-09-25 20:55   ` Tomasz Figa
2020-10-01  1:32     ` Stanimir Varbanov
2020-10-01 15:17       ` Tomasz Figa
2020-10-07 19:33         ` vgarodia
2020-10-08 14:21           ` Tomasz Figa
2020-10-13  9:26             ` vgarodia
2020-10-13 13:39               ` Tomasz Figa
2020-10-22  4:37                 ` vgarodia
2020-10-22 23:08                   ` Tomasz Figa
2020-10-27 15:02                     ` vgarodia
2020-11-03 17:02                       ` dikshita

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=8e467d9434768f6c9ec93885719a1987@codeaurora.org \
    --to=dikshita@codeaurora.org \
    --cc=linux-arm-msm@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-media@vger.kernel.org \
    --cc=stanimir.varbanov@linaro.org \
    --cc=vgarodia@codeaurora.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).