msm: vidc: Fix static analysis issues

Fix uninitialized access issue with a few variables.

Change-Id: Ib79186e0b837ce1d020546c8a3436745c5d50532
CRs-Fixed: 2729628
Signed-off-by: Amit Shekhar <ashekhar@codeaurora.org>
This commit is contained in:
Amit Shekhar 2020-07-15 22:56:39 -07:00
parent 911dc56174
commit 209b06e403

View File

@ -2456,8 +2456,13 @@ int msm_venc_set_intra_period(struct msm_vidc_inst *inst)
struct v4l2_ctrl *bframes = NULL;
struct v4l2_ctrl *max_layer = NULL;
struct v4l2_ctrl *frame_t = NULL;
struct hfi_intra_period intra_period;
struct hfi_adaptive_p_b_intra_period adaptive_p_b_intra_period;
struct hfi_intra_period intra_period = {
.pframes = 0,
.bframes = 0
};
struct hfi_adaptive_p_b_intra_period adaptive_p_b_intra_period = {
.nframes = 0
};
u32 codec;
bool adaptive_bframes = false;