Lines Matching refs:ppreq_job
3052 qcamera_pp_data_t *ppreq_job = (qcamera_pp_data_t *)m_inputPPQ.peek(); in doReprocess() local
3053 if ((ppreq_job == NULL) || (ppreq_job->src_frame == NULL)) { in doReprocess()
3057 if (!validatePostProcess(ppreq_job->src_frame)) { in doReprocess()
3061 ppreq_job = (qcamera_pp_data_t *)m_inputPPQ.dequeue(); in doReprocess()
3062 if (ppreq_job == NULL || ppreq_job->src_frame == NULL || in doReprocess()
3063 ppreq_job->src_reproc_frame == NULL) { in doReprocess()
3067 mm_camera_super_buf_t *src_frame = ppreq_job->src_frame; in doReprocess()
3068 mm_camera_super_buf_t *src_reproc_frame = ppreq_job->src_reproc_frame; in doReprocess()
3069 int8_t mCurReprocCount = ppreq_job->reprocCount; in doReprocess()
3070 int8_t mCurChannelIdx = ppreq_job->ppChannelIndex; in doReprocess()
3139 ppreq_job->reprocCount = (int8_t) (mCurReprocCount + 1); in doReprocess()
3141 if ((m_parent->isRegularCapture()) || (ppreq_job->offline_buffer)) { in doReprocess()
3143 if (m_ongoingPPQ.enqueue((void *)ppreq_job)) { in doReprocess()
3152 if ((ppreq_job->offline_buffer) && in doReprocess()
3153 (ppreq_job->offline_reproc_buf)) { in doReprocess()
3155 ppreq_job->offline_reproc_buf, meta_buf); in doReprocess()
3165 if (!m_ongoingPPQ.enqueue((void *)ppreq_job)) { in doReprocess()
3187 extra_pp_job->reprocCount = ppreq_job->reprocCount; in doReprocess()
3208 releaseOngoingPPData(ppreq_job, this); in doReprocess()
3209 if (ppreq_job != NULL) { in doReprocess()
3210 free(ppreq_job); in doReprocess()
3211 ppreq_job = NULL; in doReprocess()