Home | History | Annotate | Download | only in HAL

Lines Matching refs:crop

482     cam_rect_t crop;
483 memset(&crop, 0, sizeof(cam_rect_t));
484 main_stream->getCropInfo(crop);
492 if (hdr_output_crop && crop.height) {
493 dst_dim.height = crop.height;
497 if (hdr_output_crop && crop.width) {
498 dst_dim.width = crop.width;
617 // crop is the same if frame is the same
619 memset(&crop, 0, sizeof(cam_rect_t));
620 thumb_stream->getCropInfo(crop);
630 encode_parm.thumb_dim.crop = crop;
2091 cam_rect_t crop;
2254 LOGH("Crop needed %d", img_feature_enabled);
2255 crop.left = 0;
2256 crop.top = 0;
2257 crop.height = src_dim.height;
2258 crop.width = src_dim.width;
2264 crop = param.outputCrop.crop_info[i].crop;
2265 main_stream->setCropInfo(crop);
2273 main_stream->setCropInfo(imgProp.crop);
2274 crop = imgProp.crop;
2313 if (hdr_output_crop && crop.height) {
2314 dst_dim.height = crop.height;
2318 if (hdr_output_crop && crop.width) {
2319 dst_dim.width = crop.width;
2327 jpg_job.encode_job.main_dim.crop = crop;
2378 // crop is the same if frame is the same
2380 crop.left = 0;
2381 crop.top = 0;
2382 crop.height = src_dim.height;
2383 crop.width = src_dim.width;
2389 crop = param.outputCrop.crop_info[i].crop;
2390 thumb_stream->setCropInfo(crop);
2396 jpg_job.encode_job.thumb_dim.crop = crop;