summaryrefslogtreecommitdiff
path: root/src/ipa/raspberrypi/controller/rpi/focus.hpp
diff options
context:
space:
mode:
authorLaurent Pinchart <laurent.pinchart@ideasonboard.com>2021-07-05 07:04:28 +0300
committerLaurent Pinchart <laurent.pinchart@ideasonboard.com>2021-07-22 17:13:42 +0300
commit011b3ff288826460b76c59a5899c92ecd8226643 (patch)
tree7d78978d1642f3f6e52b5fdb2c4d79e44074c053 /src/ipa/raspberrypi/controller/rpi/focus.hpp
parent453583e189e01bbef321b9a50c0c435cc05fef63 (diff)
cam: Move event loop exit from CameraSession to CamApp
Make exiting the event loop the responsibility of the application, not the camera session, to prepare for support of multiple camera sessions. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
Diffstat (limited to 'src/ipa/raspberrypi/controller/rpi/focus.hpp')
0 files changed, 0 insertions, 0 deletions
Enumerator>(DeviceEnumerator::create()); if (!enumerator_) { cerr << "Failed to create device enumerator" << endl; return TestFail; } if (enumerator_->enumerate()) { cerr << "Failed to enumerate media devices" << endl; return TestFail; } DeviceMatch dm("vimc"); media_ = enumerator_->search(dm); if (!media_) { cerr << "No VIMC media device found: skip test" << endl; return TestSkip; } return TestPass; }