Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 687bf8dd authored by Tapas Kumar Kundu's avatar Tapas Kumar Kundu
Browse files

msm: vidc: Remove 'I' frame handling as sync frame



Driver already has sync frame as separate flag. we don't
need to tag I frame as sync frame since this is causing
issues for AVC/HEVC codecs.

CRs-Fixed: 2298365
Change-Id: Ieaae5b4df332f959df9636f80d82ba66436fc066
Signed-off-by: default avatarTapas Kumar Kundu <tkundu@codeaurora.org>
parent a08aafd7
Loading
Loading
Loading
Loading
+0 −4
Original line number Diff line number Diff line
@@ -2683,10 +2683,6 @@ static void handle_fbd(enum hal_command_response cmd, void *data)
	if (fill_buf_done->flags1 & HAL_BUFFERFLAG_DATACORRUPT)
		mbuf->vvb.flags |= V4L2_QCOM_BUF_DATA_CORRUPT;
	switch (fill_buf_done->picture_type) {
	case HAL_PICTURE_IDR:
	case HAL_PICTURE_I:
		mbuf->vvb.flags |= V4L2_BUF_FLAG_KEYFRAME;
		break;
	case HAL_PICTURE_P:
		mbuf->vvb.flags |= V4L2_BUF_FLAG_PFRAME;
		break;