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

Commit 671ed1c5 authored by qctecmdr's avatar qctecmdr Committed by Gerrit - the friendly Code Review server
Browse files

Merge "msm: vidc: fix ts reorder for heif"

parents 8a3082af e2f86b09
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -169,8 +169,8 @@ static inline bool is_ts_reorder_allowed(struct msm_vidc_inst *inst)
	if (inst->session_type != MSM_VIDC_DECODER)
		return true;

	if (!is_heif_decoder(inst))
		return true;
	if (is_heif_decoder(inst))
		return false;

	ctrl = get_ctrl(inst,
		V4L2_CID_MPEG_VIDC_VIDEO_DISABLE_TIMESTAMP_REORDER);