Home | History | Annotate | Download | only in camera

Lines Matching refs:num_areas_found

1780                                  camera_area_t *pAreas, int *num_areas_found)
1786 *num_areas_found = 0;
1821 (*num_areas_found) = index;
1862 int num_areas_found=0;
1863 if(parseCameraAreaString(str, max_num_af_areas, areas, &num_areas_found) < 0) {
1868 for(int i=0; i<num_areas_found; i++) {
1872 if(validateCameraAreas(areas, num_areas_found) == false) {
1878 num_areas_found = 1; //temp; need to change after the multi-roi is enabled
1887 //for special area string (0, 0, 0, 0, 0), set the num_areas_found to 0,
1889 if(num_areas_found == 1 && (areas[0].x1 == 0) && (areas[0].y1 == 0)
1891 num_areas_found = 0;
1908 af_roi_value.num_roi = num_areas_found;
1922 afArea.num_area = num_areas_found;
1928 for(int i=0; i<num_areas_found; i++) {
1968 int num_areas_found=0;
1969 if(parseCameraAreaString(str, max_num_mtr_areas, areas, &num_areas_found) < 0) {
1974 for(int i=0; i<num_areas_found; i++) {
1978 if(validateCameraAreas(areas, num_areas_found) == false) {
1992 num_areas_found = 1; //temp; need to change after the multi-roi is enabled
1994 //for special area string (0, 0, 0, 0, 0), set the num_areas_found to 0,
1996 if(num_areas_found == 1 && (areas[0].x1 == 0) && (areas[0].y1 == 0)
1998 num_areas_found = 0;
2012 if(num_areas_found == 1) {
2031 aecArea.num_area = num_areas_found;
2037 for(int i=0; i<num_areas_found; i++) {