Loading msm/vidc/msm_vidc_common.c +3 −2 Original line number Diff line number Diff line Loading @@ -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)) Loading Loading
msm/vidc/msm_vidc_common.c +3 −2 Original line number Diff line number Diff line Loading @@ -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)) Loading