msm: vidc: Fix mbpf calculation for active session

Fix macro block per frame calculation by not
considering sessions which have state greater
than or equal to MSM_VIDC_STOP_DONE.

Change-Id: Ie25e52e946386fcf226b0f9c073c1b022cf1ac0c
Signed-off-by: Chandrakant I Viraktamath <civirakt@codeaurora.org>
This commit is contained in:
Chandrakant I Viraktamath 2020-06-10 10:26:51 +05:30 committed by Gerrit - the friendly Code Review server
parent 5796124eca
commit 1fc8b2829c

View File

@ -5768,8 +5768,9 @@ static int msm_vidc_check_mbpf_supported(struct msm_vidc_inst *inst)
mutex_lock(&core->lock);
list_for_each_entry(temp, &core->instances, list) {
/* ignore invalid session */
if (temp->state == MSM_VIDC_CORE_INVALID)
/* ignore invalid and completed session */
if (temp->state == MSM_VIDC_CORE_INVALID ||
temp->state >= MSM_VIDC_STOP_DONE)
continue;
/* ignore thumbnail session */
if (is_thumbnail_session(temp))