msm: venc: modify log messages for vbvdelay

Modify log messages for vbvdelay.

Change-Id: I3f1b9458d73dbd2a1f18d1f8d8896e51cd513a07
Signed-off-by: Darshana Patil <darshana@codeaurora.org>
This commit is contained in:
Darshana Patil 2019-10-23 15:35:59 -07:00 committed by Gerrit - the friendly Code Review server
parent 16e264d6fa
commit 84b5664f36

View File

@ -1900,11 +1900,11 @@ int msm_venc_s_ctrl(struct msm_vidc_inst *inst, struct v4l2_ctrl *ctrl)
case V4L2_CID_MPEG_VIDEO_VBV_DELAY:
case V4L2_CID_MPEG_VIDC_VENC_BITRATE_SAVINGS:
case V4L2_CID_MPEG_VIDC_SUPERFRAME:
s_vpr_h(sid, "Control set: ID : %x Val : %d\n",
s_vpr_h(sid, "Control set: ID : 0x%x Val : %d\n",
ctrl->id, ctrl->val);
break;
default:
s_vpr_e(sid, "Unsupported index: %x\n", ctrl->id);
s_vpr_e(sid, "Unsupported index: 0x%x\n", ctrl->id);
rc = -ENOTSUPP;
break;
}
@ -2588,15 +2588,13 @@ int msm_venc_set_vbv_delay(struct msm_vidc_inst *inst)
set_vbv_delay:
inst->clk_data.is_legacy_cbr = is_legacy_cbr;
hrd_buf_size.vbv_hrd_buf_size = buf_size;
s_vpr_h(inst->sid,
"Set hrd_buf_size %d", hrd_buf_size.vbv_hrd_buf_size);
s_vpr_h(inst->sid, "%s: %d\n", __func__, hrd_buf_size.vbv_hrd_buf_size);
rc = call_hfi_op(hdev, session_set_property,
(void *)inst->session,
HFI_PROPERTY_CONFIG_VENC_VBV_HRD_BUF_SIZE,
(void *)&hrd_buf_size, sizeof(hrd_buf_size));
if (rc) {
s_vpr_e(inst->sid, "%s: set HRD_BUF_SIZE %u failed\n",
__func__, hrd_buf_size.vbv_hrd_buf_size);
s_vpr_e(inst->sid, "%s: set property failed\n", __func__);
}
return rc;
}