/* SPDX-License-Identifier: GPL-2.0-or-later */ /* * Copyright (C) 2019, Google Inc. * * media_device_test.h - libcamera media device test base class */ #ifndef __LIBCAMERA_MEDIADEVICE_TEST_H__ #define __LIBCAMERA_MEDIADEVICE_TEST_H__ #include #include "libcamera/internal/device_enumerator.h" #include "libcamera/internal/media_device.h" #include "test.h" using namespace libcamera; class MediaDeviceTest : public Test { public: MediaDeviceTest() : media_(nullptr), enumerator_(nullptr) {} protected: int init(); std::shared_ptr media_; private: std::unique_ptr enumerator_; }; #endif /* __LIBCAMERA_MEDIADEVICE_TEST_H__ */