mtk-jpegenc: add stop cmd interface for jpgenc
authorkyrie wu <kyrie.wu@mediatek.com>
Thu, 29 Sep 2022 09:08:09 +0000 (17:08 +0800)
committerHans Verkuil <hverkuil-cisco@xs4all.nl>
Fri, 30 Sep 2022 14:39:28 +0000 (16:39 +0200)
Add stop cmd interface for jpgenc to stop stream

Signed-off-by: kyrie wu <kyrie.wu@mediatek.com>
Signed-off-by: irui wang <irui.wang@mediatek.com>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
drivers/media/platform/mediatek/jpeg/mtk_jpeg_core.c

index 9a99460ec1e2fc8a9f161a060e6b2dd9f461706d..debee9b8215807937dbfd4a1e645f0d903b02758 100644 (file)
@@ -611,6 +611,9 @@ static const struct v4l2_ioctl_ops mtk_jpeg_enc_ioctl_ops = {
        .vidioc_streamoff               = v4l2_m2m_ioctl_streamoff,
 
        .vidioc_unsubscribe_event       = v4l2_event_unsubscribe,
+
+       .vidioc_encoder_cmd             = v4l2_m2m_ioctl_encoder_cmd,
+       .vidioc_try_encoder_cmd         = v4l2_m2m_ioctl_try_encoder_cmd,
 };
 
 static const struct v4l2_ioctl_ops mtk_jpeg_dec_ioctl_ops = {
@@ -1389,6 +1392,7 @@ static int mtk_jpeg_open(struct file *file)
        } else {
                v4l2_ctrl_handler_init(&ctx->ctrl_hdl, 0);
        }
+
        mtk_jpeg_set_default_params(ctx);
        mutex_unlock(&jpeg->lock);
        return 0;