Implement the camera configuration thru out the library, tests, cam and qcam tools. Signed-off-by: Niklas Söderlund <niklas.soderlund@ragnatech.se> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
47 lines
777 B
C++
47 lines
777 B
C++
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
/*
|
|
* Copyright (C) 2019, Google Inc.
|
|
*
|
|
* libcamera Camera API tests
|
|
*/
|
|
|
|
#include <iostream>
|
|
|
|
#include "camera_test.h"
|
|
|
|
using namespace libcamera;
|
|
using namespace std;
|
|
|
|
int CameraTest::init()
|
|
{
|
|
cm_ = CameraManager::instance();
|
|
|
|
if (cm_->start()) {
|
|
cout << "Failed to start camera manager" << endl;
|
|
return TestFail;
|
|
}
|
|
|
|
camera_ = cm_->get("VIMC Sensor B");
|
|
if (!camera_) {
|
|
cout << "Can not find VIMC camera" << endl;
|
|
return TestSkip;
|
|
}
|
|
|
|
/* Sanity check that the camera has streams. */
|
|
if (camera_->streams().empty()) {
|
|
cout << "Camera has no stream" << endl;
|
|
return TestFail;
|
|
}
|
|
|
|
return TestPass;
|
|
}
|
|
|
|
void CameraTest::cleanup()
|
|
{
|
|
if (camera_) {
|
|
camera_->release();
|
|
camera_.reset();
|
|
}
|
|
|
|
cm_->stop();
|
|
};
|