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

Commit 7177eaed authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "msm: vidc: Fix buffer count issue"

parents a2005826 ec38293d
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -710,7 +710,7 @@ static int msm_vidc_queue_setup(struct vb2_queue *q,

		bufreq->buffer_count_actual = *num_buffers;
		rc = set_buffer_count(inst, bufreq->buffer_count_min_host,
			bufreq->buffer_count_min_host, HAL_BUFFER_INPUT);
			bufreq->buffer_count_actual, HAL_BUFFER_INPUT);
		}

		break;
@@ -744,7 +744,7 @@ static int msm_vidc_queue_setup(struct vb2_queue *q,

		bufreq->buffer_count_actual = *num_buffers;
		rc = set_buffer_count(inst, bufreq->buffer_count_min_host,
			bufreq->buffer_count_min_host, buffer_type);
			bufreq->buffer_count_actual, buffer_type);
		}
		break;
	default: