mirror of
https://git.libcamera.org/libcamera/libcamera.git
synced 2025-07-25 01:25:08 +03:00
qcam: Pass camera manager to MainWindow class
Pass the CameraManager instance from the main() function to the MainWindow class instead of accessing it through CameraManager::instance(). This prepares for the removal of the CameraManager::instance() method. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Jacopo Mondi <jacopo@jmondi.org>
This commit is contained in:
parent
749dbd576f
commit
af49b18c81
3 changed files with 7 additions and 7 deletions
|
@ -21,7 +21,7 @@
|
|||
|
||||
using namespace libcamera;
|
||||
|
||||
MainWindow::MainWindow(const OptionsParser::Options &options)
|
||||
MainWindow::MainWindow(CameraManager *cm, const OptionsParser::Options &options)
|
||||
: options_(options), isCapturing_(false)
|
||||
{
|
||||
int ret;
|
||||
|
@ -35,7 +35,7 @@ MainWindow::MainWindow(const OptionsParser::Options &options)
|
|||
viewfinder_->setFixedSize(500, 500);
|
||||
adjustSize();
|
||||
|
||||
ret = openCamera();
|
||||
ret = openCamera(cm);
|
||||
if (!ret)
|
||||
ret = startCapture();
|
||||
|
||||
|
@ -66,9 +66,8 @@ void MainWindow::updateTitle()
|
|||
setWindowTitle(title_ + " : " + QString::number(fps, 'f', 2) + " fps");
|
||||
}
|
||||
|
||||
int MainWindow::openCamera()
|
||||
int MainWindow::openCamera(CameraManager *cm)
|
||||
{
|
||||
CameraManager *cm = CameraManager::instance();
|
||||
std::string cameraName;
|
||||
|
||||
if (!options_.isSet(OptCamera)) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue