summaryrefslogtreecommitdiff
path: root/src/qcam/assets/feathericons/folder.svg
blob: 134458b9889164be296c2cdab9a8e5fe88d04bd9 (plain)
1
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-folder"><path d="M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h5l2 3h9a2 2 0 0 1 /* SPDX-License-Identifier: GPL-2.0-or-later */
ce #include <memory> #include <libcamera/framebuffer.h> #include "libcamera/internal/camera_sensor.h" #include "libcamera/internal/device_enumerator.h" #include "libcamera/internal/media_device.h" #include "libcamera/internal/v4l2_subdevice.h" #include "libcamera/internal/v4l2_videodevice.h" #include "test.h" class V4L2VideoDeviceTest : public Test { public: V4L2VideoDeviceTest(const char *driver, const char *entity) : driver_(driver), entity_(entity), sensor_(nullptr), debayer_(nullptr), capture_(nullptr) { } protected: int init(); void cleanup(); std::string driver_; std::string entity_; std::unique_ptr<libcamera::DeviceEnumerator> enumerator_; std::shared_ptr<libcamera::MediaDevice> media_;