I made some comments about start_streaming in my review of patch 3/9, so I am not going to repeat that here. On 11/07/2016 06:33 PM, Stanimir Varbanov wrote: > This consists of video decoder implementation plus decoder > controls. > > Signed-off-by: Stanimir Varbanov <stanimir.varbanov@xxxxxxxxxx> > --- > drivers/media/platform/qcom/venus/vdec.c | 1108 ++++++++++++++++++++++++ > drivers/media/platform/qcom/venus/vdec.h | 32 + > drivers/media/platform/qcom/venus/vdec_ctrls.c | 197 +++++ > 3 files changed, 1337 insertions(+) > create mode 100644 drivers/media/platform/qcom/venus/vdec.c > create mode 100644 drivers/media/platform/qcom/venus/vdec.h > create mode 100644 drivers/media/platform/qcom/venus/vdec_ctrls.c > > diff --git a/drivers/media/platform/qcom/venus/vdec.c b/drivers/media/platform/qcom/venus/vdec.c > new file mode 100644 > index 000000000000..3f0eba7e31dc > --- /dev/null > +++ b/drivers/media/platform/qcom/venus/vdec.c <snip> > +static int > +vdec_s_selection(struct file *file, void *fh, struct v4l2_selection *s) > +{ > + struct venus_inst *inst = to_inst(file); > + > + if (s->type != V4L2_BUF_TYPE_VIDEO_CAPTURE && > + s->type != V4L2_BUF_TYPE_VIDEO_OUTPUT) > + return -EINVAL; > + > + switch (s->target) { > + case V4L2_SEL_TGT_CROP_BOUNDS: > + case V4L2_SEL_TGT_CROP_DEFAULT: > + case V4L2_SEL_TGT_CROP: > + return -EINVAL; > + case V4L2_SEL_TGT_COMPOSE_BOUNDS: > + case V4L2_SEL_TGT_COMPOSE_DEFAULT: > + case V4L2_SEL_TGT_COMPOSE_PADDED: > + return -EINVAL; > + case V4L2_SEL_TGT_COMPOSE: > + if (s->type != V4L2_BUF_TYPE_VIDEO_CAPTURE) > + return -EINVAL; > + s->r.width = inst->out_width; > + s->r.height = inst->out_height; > + break; > + default: > + return -EINVAL; > + } > + > + s->r.top = 0; > + s->r.left = 0; > + > + return 0; > +} This can be simplified to just: if (s->type != V4L2_BUF_TYPE_VIDEO_CAPTURE || s->target != V4L2_SEL_TGT_COMPOSE) return -EINVAL; // handle the remaining capture compose case > + > +static int > +vdec_reqbufs(struct file *file, void *fh, struct v4l2_requestbuffers *b) > +{ > + struct vb2_queue *queue = to_vb2q(file, b->type); > + > + if (!queue) > + return -EINVAL; > + > + return vb2_reqbufs(queue, b); > +} Is there any reason why the v4l2_m2m_ioctl_reqbufs et al helper functions can't be used? I strongly recommend that, unless there is a specific reason why that won't work. <snip> Regards, Hans -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html