mirror of
https://github.com/torvalds/linux.git
synced 2026-06-02 11:33:28 +02:00
media: venus : CAPTURE Plane width/height alignment with OUT plane.
V4l2 encoder compliance set-format test cases failing as Capture plane width/height not aligned to OUT plane . Signed-off-by: Viswanath Boma <quic_vboma@quicinc.com> Signed-off-by: Vikash Garodia <quic_vgarodia@quicinc.com> Signed-off-by: Dikshita Agarwal <quic_dikshita@quicinc.com> Signed-off-by: Stanimir Varbanov <stanimir.varbanov@linaro.org> Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
This commit is contained in:
parent
096573e4c0
commit
c260bf4bd3
|
|
@ -192,10 +192,8 @@ venc_try_fmt_common(struct venus_inst *inst, struct v4l2_format *f)
|
|||
pixmp->height = clamp(pixmp->height, frame_height_min(inst),
|
||||
frame_height_max(inst));
|
||||
|
||||
if (f->type == V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE) {
|
||||
pixmp->width = ALIGN(pixmp->width, 128);
|
||||
pixmp->height = ALIGN(pixmp->height, 32);
|
||||
}
|
||||
pixmp->width = ALIGN(pixmp->width, 128);
|
||||
pixmp->height = ALIGN(pixmp->height, 32);
|
||||
|
||||
pixmp->width = ALIGN(pixmp->width, 2);
|
||||
pixmp->height = ALIGN(pixmp->height, 2);
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user