Utilise the VIVID capture device for testing the V4L2Device objects. Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
67 lines
1.1 KiB
C++
67 lines
1.1 KiB
C++
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
/*
|
|
* Copyright (C) 2019, Google Inc.
|
|
*
|
|
* libcamera V4L2 API tests
|
|
*/
|
|
|
|
#include <iostream>
|
|
#include <sys/stat.h>
|
|
|
|
#include "v4l2_device_test.h"
|
|
|
|
#include "device_enumerator.h"
|
|
#include "media_device.h"
|
|
|
|
using namespace std;
|
|
using namespace libcamera;
|
|
|
|
bool exists(const std::string &path)
|
|
{
|
|
struct stat sb;
|
|
|
|
if (stat(path.c_str(), &sb) == 0)
|
|
return true;
|
|
|
|
return false;
|
|
}
|
|
|
|
int V4L2DeviceTest::init()
|
|
{
|
|
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("vivid");
|
|
dm.add("vivid-000-vid-cap");
|
|
|
|
media_ = enumerator_->search(dm);
|
|
if (!media_)
|
|
return TestSkip;
|
|
|
|
media_->acquire();
|
|
|
|
MediaEntity *entity = media_->getEntityByName("vivid-000-vid-cap");
|
|
if (!entity)
|
|
return TestSkip;
|
|
|
|
dev_ = new V4L2Device(entity);
|
|
if (!dev_)
|
|
return TestFail;
|
|
|
|
return dev_->open();
|
|
}
|
|
|
|
void V4L2DeviceTest::cleanup()
|
|
{
|
|
media_->release();
|
|
|
|
delete dev_;
|
|
};
|