Lines Matching refs:cont_process
465 bool cont_process = true; // continue processing after extraction. in extractFrame() local
494 cont_process = false; // end of input data. in extractFrame()
517 cont_process = (bool)(dataPtr < eodPtr); in extractFrame()
520 if(hasFSyncs && cont_process && (m_ex_frm_n_bytes == 0)) in extractFrame()
522 while((*((uint32_t *)(dataPtr)) == FSYNC_PATTERN) && cont_process) in extractFrame()
526 cont_process = (bool)(dataPtr < eodPtr); in extractFrame()
531 while((m_ex_frm_n_bytes < OCSD_DFRMTR_FRAME_SIZE) && cont_process) in extractFrame()
569 cont_process = (bool)(dataPtr < eodPtr); in extractFrame()
574 if(!cont_process && (m_ex_frm_n_bytes == OCSD_DFRMTR_FRAME_SIZE)) in extractFrame()
575 cont_process = true; in extractFrame()
582 if (((m_ex_frm_n_bytes == OCSD_DFRMTR_FRAME_SIZE) || !cont_process) && m_b_output_packed_raw) in extractFrame()
598 return cont_process; in extractFrame()