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:
parent
5796124eca
commit
1fc8b2829c
@ -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))
|
||||
|
Loading…
Reference in New Issue
Block a user