Searched refs:sync_latency (Results 1 – 12 of 12) sorted by relevance
/cts/apps/CameraITS/tests/scene1/ |
D | test_capture_result.py | 74 sync_latency = its.caps.sync_latency(props) 76 lsc_map_auto = test_auto(cam, props, sync_latency) 78 test_manual(cam, lsc_map_auto, props, sync_latency) 80 test_auto(cam, props, sync_latency) 116 def test_auto(cam, props, sync_latency): argument 123 cap = its.device.do_capture_with_latency(cam, auto_req, sync_latency) 173 def test_manual(cam, lsc_map_auto, props, sync_latency): argument 174 cap = its.device.do_capture_with_latency(cam, manual_req, sync_latency)
|
D | test_jpeg.py | 35 sync_latency = its.caps.sync_latency(props) 44 cam, req, sync_latency, out_surface) 54 cam, req, sync_latency, out_surface)
|
D | test_black_white.py | 37 sync_latency = its.caps.sync_latency(props) 53 cap = its.device.do_capture_with_latency(cam, req, sync_latency, fmt) 72 cap = its.device.do_capture_with_latency(cam, req, sync_latency, fmt)
|
D | test_channel_saturation.py | 35 sync_latency = its.caps.sync_latency(props) 50 cap = its.device.do_capture_with_latency(cam, req, sync_latency, fmt)
|
D | test_param_flash_mode.py | 35 sync_latency = its.caps.sync_latency(props) 60 cam, req, sync_latency, fmt)
|
D | test_param_sensitivity.py | 41 sync_latency = its.caps.sync_latency(props) 60 cam, req, sync_latency, fmt)
|
D | test_param_exposure_time.py | 40 sync_latency = its.caps.sync_latency(props) 55 cam, req, sync_latency, fmt)
|
D | test_param_color_correction.py | 44 sync_latency = its.caps.sync_latency(props) 85 cam, req, sync_latency, fmt)
|
D | test_linearity.py | 50 sync_latency = its.caps.sync_latency(props) 82 cam, req, sync_latency, fmt)
|
D | test_exposure.py | 69 sync_latency = its.caps.sync_latency(props) 93 cam, req, sync_latency, fmt) 128 cam, req, sync_latency, fmt_raw)
|
/cts/apps/CameraITS/pymodules/its/ |
D | caps.py | 527 def sync_latency(props): function 535 sync_latency = props['android.sync.maxLatency'] 536 if sync_latency < 0: 537 sync_latency = 8 538 return sync_latency
|
D | device.py | 943 def do_capture_with_latency(cam, req, sync_latency, fmt=None): argument 954 caps = cam.do_capture([req]*(sync_latency+1), fmt)
|