OSDN Git Service

media: venus: dynamic handling of bitrate
authorMalathi Gottam <mgottam@codeaurora.org>
Fri, 2 Nov 2018 12:41:16 +0000 (08:41 -0400)
committerMauro Carvalho Chehab <mchehab+samsung@kernel.org>
Mon, 3 Dec 2018 18:19:44 +0000 (13:19 -0500)
Any request for a change in bitrate after both planes
are streamed on is handled by setting the target bitrate
property to hardware.

Signed-off-by: Malathi Gottam <mgottam@codeaurora.org>
Acked-by: Stanimir Varbanov <stanimir.varbanov@linaro.org>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
drivers/media/platform/qcom/venus/venc_ctrls.c

index e6a43e9..89e655b 100644 (file)
@@ -79,7 +79,9 @@ static int venc_op_s_ctrl(struct v4l2_ctrl *ctrl)
 {
        struct venus_inst *inst = ctrl_to_inst(ctrl);
        struct venc_controls *ctr = &inst->controls.enc;
+       struct hfi_bitrate brate;
        u32 bframes;
+       u32 ptype;
        int ret;
 
        switch (ctrl->id) {
@@ -88,6 +90,19 @@ static int venc_op_s_ctrl(struct v4l2_ctrl *ctrl)
                break;
        case V4L2_CID_MPEG_VIDEO_BITRATE:
                ctr->bitrate = ctrl->val;
+               mutex_lock(&inst->lock);
+               if (inst->streamon_out && inst->streamon_cap) {
+                       ptype = HFI_PROPERTY_CONFIG_VENC_TARGET_BITRATE;
+                       brate.bitrate = ctr->bitrate;
+                       brate.layer_id = 0;
+
+                       ret = hfi_session_set_property(inst, ptype, &brate);
+                       if (ret) {
+                               mutex_unlock(&inst->lock);
+                               return ret;
+                       }
+               }
+               mutex_unlock(&inst->lock);
                break;
        case V4L2_CID_MPEG_VIDEO_BITRATE_PEAK:
                ctr->bitrate_peak = ctrl->val;