Merge "msm: vidc: Fix mbpf calculation for active session"

This commit is contained in:
qctecmdr 2020-12-11 05:41:15 -08:00 committed by Gerrit - the friendly Code Review server
commit 9fa40378bf

View File

@ -5765,8 +5765,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))