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

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

Merge "msm: vidc: Add log to indicate image session"

parents f3359b66 804e918c
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -3429,7 +3429,7 @@ static void msm_vidc_print_running_insts(struct msm_vidc_core *core)
		inp_f = &temp->fmts[INPUT_PORT].v4l2_fmt;
		if (temp->state >= MSM_VIDC_OPEN_DONE &&
				temp->state < MSM_VIDC_STOP_DONE) {
			char properties[4] = "";
			char properties[5] = "";

			if (is_thumbnail_session(temp))
				strlcat(properties, "N", sizeof(properties));
@@ -3440,6 +3440,9 @@ static void msm_vidc_print_running_insts(struct msm_vidc_core *core)
			if (is_realtime_session(temp))
				strlcat(properties, "R", sizeof(properties));

			if (is_grid_session(temp))
				strlcat(properties, "I", sizeof(properties));

			if (temp->clk_data.operating_rate)
				op_rate = temp->clk_data.operating_rate >> 16;
			else